gnulib-common: prefer _GL_UNUSED over _UNUSED_PARAMETER_
[gnulib.git] / ChangeLog
1 2009-12-23  Eric Blake  <ebb9@byu.net>
2
3         gnulib-common: prefer _GL_UNUSED over _UNUSED_PARAMETER_
4         * m4/gnulib-common.m4 (gl_COMMON): Create a more-appropriately
5         named alias for __attribute__((__unused__)).
6         * lib/chown.c: Update client.
7         * lib/fchmodat.c: Likewise.
8         * lib/fts.c: Likewise.
9         * lib/getdate.y: Likewise.
10         * lib/getgroups.c: Likewise.
11         * lib/getopt.c: Likewise.
12         * lib/getugroups.c: Likewise.
13         * lib/mkdir.c: Likewise.
14         * lib/mkfifo.c: Likewise.
15         * lib/mkfifoat.c: Likewise.
16         * lib/mknod.c: Likewise.
17         * lib/mknodat.c: Likewise.
18         * lib/readlink.c: Likewise.
19         * lib/se-context.in.h: Likewise.
20         * lib/se-selinux.in.h: Likewise.
21         * lib/sockets.c: Likewise.
22         * lib/symlink.c: Likewise.
23         * lib/symlinkat.c: Likewise.
24         * lib/unicodeio.c: Likewise.
25         * lib/unistr.h: Likewise.
26         * tests/test-areadlink.c: Likewise.
27         * tests/test-areadlinkat.c: Likewise.
28         * tests/test-filenamecat.c: Likewise.
29         * tests/test-fseeko.c: Likewise.
30         * tests/test-ftello.c: Likewise.
31         * tests/test-getdate.c: Likewise.
32         * tests/test-getgroups.c: Likewise.
33         * tests/test-gethostname.c: Likewise.
34         * tests/test-quotearg.c: Likewise.
35         * tests/test-version-etc.c: Likewise.
36         * tests/test-xalloc-die.c: Likewise.
37         * tests/test-xfprintf-posix.c: Likewise.
38         * tests/test-xprintf-posix.c: Likewise.
39         * tests/test-xvasprintf.c: Likewise.
40
41         tests: avoid compiler warnings
42         * tests/test-fcntl.c (main): Delete unused parameters.
43         * tests/test-freopen-safer.c (main): Likewise.
44         * tests/test-xalloc-die.c (main): Mark unused parameters.
45         * tests/test-fseeko.c (main): Likewise.
46         * tests/test-ftello.c (main): Likewise.
47         * tests/test-nanosleep.c (main): Avoid declaration warning.
48         * tests/test-sleep.c (main): Likewise.
49         * tests/test-unsetenv.c (main): Silence warning about string
50         literal.
51         * m4/setenv.m4 (gl_FUNC_UNSETENV): Likewise.
52
53 2009-12-23  Bruno Haible  <bruno@clisp.org>
54
55         * tests/test-localename.c (test_locale_name): New function, extracted
56         from main. Also test mixed situations.
57         (test_locale_name_posix, test_locale_name_environ,
58         test_locale_name_default): New functions.
59         (main): Invoke them all.
60         * modules/localename-tests (configure.ac): Test for newlocale.
61
62 2009-12-23  Bruno Haible  <bruno@clisp.org>
63
64         unistd: Ensure getcwd gets declared before being overridden.
65         * lib/unistd.in.h: Conditionally include <io.h>.
66
67 2009-12-22  Bruno Haible  <bruno@clisp.org>
68
69         wchar: Diagnose broken combination of glibc and gcc versions and flags.
70         * m4/wchar.m4 (gl_WCHAR_H_INLINE_OK): New macro.
71         (gl_WCHAR_H): Invoke it.
72         * m4/btowc.m4 (gl_FUNC_BTOWC): Require it.
73         * doc/posix-headers/wchar.texi: Mention the interoperability problem.
74         Reported by Karl Berry <karl@freefriends.org>.
75
76 2009-12-22  Eric Blake  <ebb9@byu.net>
77
78         math, unistd: avoid redundant includes
79         * lib/math.in.h (isnan): No need to re-include <math.h>.
80         * lib/unistd.in.h (getcwd): Likewise, for <stdlib.h>.
81
82         getsubopt: work around cygwin bug
83         * lib/stdlib.in.h (includes): Move unistd inclusion sooner, to
84         avoid conflicting with system getsubopt.
85         * doc/posix-functions/getsubopt.texi (getsubopt): Document the
86         bug.
87
88         getopt: synchronize from glibc
89         * lib/getopt.c (_getopt_initialize, _getopt_internal_r): Swap
90         parameter order.  Adjust all callers.
91         (_getopt_internal_r, main): Adjust quoting in error messages.
92         Drop considerations for outdated POSIX 1003.2 error message.
93         * lib/getopt1.c (_getopt_long_r, _getopt_long_only_r): Adjust
94         callers.
95         * lib/getopt_int.h (_getopt_internal_r): Adjust prototype.
96
97         test-getopt: test stderr behavior
98         * modules/getopt-posix-tests (Depends-on): Add dup2.
99         * tests/test-getopt.c (ASSERT): Avoid stderr.
100         (main): Move stderr to a temporary file.
101         * tests/test-getopt.h (getopt_loop): No longer manipulate opterr.
102         Instead, add parameter to inform caller if output occurred.
103         (test_getopt): Adjust all existing tests to expect silence, and
104         add new tests of leading ":".
105         * doc/glibc-functions/getopt_long.texi (getopt_long): Document
106         glibc shortcomings with leading "-:" or "+:" in optstring.
107         * doc/glibc-functions/getopt_long_only.texi (getopt_long_only):
108         Likewise.
109         * doc/posix-functions/getopt.texi (getopt): Likewise.
110
111         test-getopt: enhance test
112         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Require that getopt_long
113         supports optind=0.
114         * tests/test-getopt.c (OPTIND_MIN): Move...
115         * tests/test-getopt.h (OPTIND_MIN): ...here.
116         * tests/test-getopt_long.h (test_getopt_long): Add more coverage.
117         Require that optind=0 works, since modern BSD supports it in
118         addition to optreset, and since coreutils expects it.
119         (test_getopt_long_only): New test.
120         * doc/glibc-functions/getopt_long.texi (getopt_long): Document
121         glibc shortcomings with 'W;', and enforcement of optind=0.
122         * doc/glibc-functions/getopt_long_only.texi (getopt_long_only):
123         Likewise.
124
125 2009-12-21  Bruno Haible  <bruno@clisp.org>
126
127         localename: Improvements for MacOS X and Cygwin.
128         * lib/localename.h (gl_locale_name_environ): New declaration.
129         * lib/localename.c (gl_locale_name_environ): New function, extracted from
130         gl_locale_name_posix. Ignore dummy LANG values on MacOS X and Cygwin.
131         (gl_locale_name_posix): Invoke it.
132         (gl_locale_name_default): Add comments. Use Windows native API also on
133         Cygwin.
134
135 2009-12-21  Bruno Haible  <bruno@clisp.org>
136
137         Update list of Win32 locale ids.
138         * lib/localename.c (LANG_ROMANSH): Renamed from LANG_RHAETO_ROMANCE.
139         (LANG_SAMI): Renamed from LANG_SAAMI.
140         (LANG_BASHKIR, LANG_LUXEMBOURGISH, LANG_GREENLANDIC,
141         LANG_MAPUDUNGUN, LANG_MOHAWK, LANG_BRETON, LANG_OCCITAN, LANG_CORSICAN,
142         LANG_ALSATIAN, LANG_YAKUT, LANG_KICHE, LANG_KINYARWANDA, LANG_WOLOF,
143         LANG_DARI, LANG_SCOTTISH_GAELIC): New macros.
144         (SUBLANG_AFRIKAANS_SOUTH_AFRICA, SUBLANG_ALBANIAN_ALBANIA,
145         SUBLANG_ALSATIAN_FRANCE, SUBLANG_AMHARIC_ETHIOPIA,
146         SUBLANG_ARMENIAN_ARMENIA, SUBLANG_ASSAMESE_INDIA,
147         SUBLANG_BASHKIR_RUSSIA, SUBLANG_BASQUE_BASQUE,
148         SUBLANG_BELARUSIAN_BELARUS, SUBLANG_BRETON_FRANCE,
149         SUBLANG_BULGARIAN_BULGARIA, SUBLANG_CAMBODIAN_CAMBODIA,
150         SUBLANG_CATALAN_SPAIN, SUBLANG_CORSICAN_FRANCE,
151         SUBLANG_CZECH_CZECH_REPUBLIC, SUBLANG_DANISH_DENMARK,
152         SUBLANG_DARI_AFGHANISTAN, SUBLANG_DIVEHI_MALDIVES,
153         SUBLANG_DUTCH_SURINAM, SUBLANG_ESTONIAN_ESTONIA,
154         SUBLANG_FAEROESE_FAROE_ISLANDS, SUBLANG_FARSI_IRAN,
155         SUBLANG_FINNISH_FINLAND, SUBLANG_FRISIAN_NETHERLANDS,
156         SUBLANG_GALICIAN_SPAIN, SUBLANG_GEORGIAN_GEORGIA,
157         SUBLANG_GREEK_GREECE, SUBLANG_GREENLANDIC_GREENLAND,
158         SUBLANG_GUJARATI_INDIA, SUBLANG_HAUSA_NIGERIA_LATIN,
159         SUBLANG_HEBREW_ISRAEL, SUBLANG_HINDI_INDIA, SUBLANG_HUNGARIAN_HUNGARY,
160         SUBLANG_ICELANDIC_ICELAND, SUBLANG_IGBO_NIGERIA,
161         SUBLANG_INDONESIAN_INDONESIA, SUBLANG_INUKTITUT_CANADA,
162         SUBLANG_INUKTITUT_CANADA_LATIN, SUBLANG_IRISH_IRELAND,
163         SUBLANG_JAPANESE_JAPAN, SUBLANG_KANNADA_INDIA,
164         SUBLANG_KAZAK_KAZAKHSTAN, SUBLANG_KICHE_GUATEMALA,
165         SUBLANG_KINYARWANDA_RWANDA, SUBLANG_KONKANI_INDIA,
166         SUBLANG_KYRGYZ_KYRGYZSTAN, SUBLANG_LAO_LAOS, SUBLANG_LATVIAN_LATVIA,
167         SUBLANG_LITHUANIAN_LITHUANIA, SUBLANG_LOWER_SORBIAN_GERMANY,
168         SUBLANG_LUXEMBOURGISH_LUXEMBOURG, SUBLANG_MACEDONIAN_MACEDONIA,
169         SUBLANG_MALAYALAM_INDIA, SUBLANG_MALTESE_MALTA,
170         SUBLANG_MAORI_NEW_ZEALAND, SUBLANG_MAPUDUNGUN_CHILE,
171         SUBLANG_MARATHI_INDIA, SUBLANG_MOHAWK_CANADA, SUBLANG_NEPALI_NEPAL,
172         SUBLANG_OCCITAN_FRANCE, SUBLANG_ORIYA_INDIA,
173         SUBLANG_PASHTO_AFGHANISTAN, SUBLANG_POLISH_POLAND,
174         SUBLANG_ROMANSH_SWITZERLAND, SUBLANG_SAMI_NORTHERN_NORWAY,
175         SUBLANG_SAMI_NORTHERN_SWEDEN, SUBLANG_SAMI_NORTHERN_FINLAND,
176         SUBLANG_SAMI_LULE_NORWAY, SUBLANG_SAMI_LULE_SWEDEN,
177         SUBLANG_SAMI_SOUTHERN_NORWAY, SUBLANG_SAMI_SOUTHERN_SWEDEN,
178         SUBLANG_SAMI_SKOLT_FINLAND, SUBLANG_SAMI_INARI_FINLAND,
179         SUBLANG_SANSKRIT_INDIA, SUBLANG_SINHALESE_SRI_LANKA,
180         SUBLANG_SLOVAK_SLOVAKIA, SUBLANG_SLOVENIAN_SLOVENIA,
181         SUBLANG_SOTHO_SOUTH_AFRICA, SUBLANG_SWAHILI_KENYA,
182         SUBLANG_SWEDISH_SWEDEN, SUBLANG_SYRIAC_SYRIA,
183         SUBLANG_TAGALOG_PHILIPPINES, SUBLANG_TAJIK_TAJIKISTAN,
184         SUBLANG_TAMIL_INDIA, SUBLANG_TATAR_RUSSIA, SUBLANG_TELUGU_INDIA,
185         SUBLANG_THAI_THAILAND, SUBLANG_TSWANA_SOUTH_AFRICA,
186         SUBLANG_TURKISH_TURKEY, SUBLANG_TURKMEN_TURKMENISTAN,
187         SUBLANG_UKRAINIAN_UKRAINE, SUBLANG_UPPER_SORBIAN_GERMANY,
188         SUBLANG_VIETNAMESE_VIETNAM, SUBLANG_WELSH_UNITED_KINGDOM,
189         SUBLANG_WOLOF_SENEGAL, SUBLANG_XHOSA_SOUTH_AFRICA,
190         SUBLANG_YAKUT_RUSSIA, SUBLANG_YI_PRC, SUBLANG_YORUBA_NIGERIA,
191         SUBLANG_ZULU_SOUTH_AFRICA): New macros.
192         (gl_locale_name_from_win32_LANGID): Handle also the territory neutral
193         locale ids. Add support for Alsatian, Bashkir, Breton, Corsican, Dari,
194         Greenlandic, K'iche', Kinyarwanda, Luxembourgish, Mapudungun, Mohawk,
195         Occitan, Scottish Gaelic, Wolof, Yakut. Change language code for Yi.
196         Add more languages and countries for Sami, Sorbian. Add more countries
197         for Serbian, Dutch. Add more scripts for Inuktitut. Be more precise
198         for Pashto. Change country for Syriac, Tswana.
199
200 2009-12-21  Eric Blake  <ebb9@byu.net>
201
202         test-utimens: avoid spurious failure
203         * tests/test-chown.h (nap): Factor...
204         * tests/nap.h: ...into new file.
205         * tests/test-lchown.h (nap): Avoid duplication.
206         * tests/test-utimens-common.h (nap): Use shared implementation,
207         necessary on file systems with 1-second resolution.
208         * modules/chown-tests (Files): Include new file.
209         * modules/fdutimensat-tests (Files): Likewise.
210         * modules/futimens-tests (Files): Likewise.
211         * modules/lchown-tests (Files): Likewise.
212         * modules/openat-tests (Files): Likewise.
213         * modules/utimens-tests (Files): Likewise.
214         * modules/utimensat-tests (Files): Likewise.
215
216 2009-12-19  Eric Blake  <ebb9@byu.net>
217
218         futimens, utimensat: work around Linux bug
219         * m4/futimens.m4 (gl_FUNC_FUTIMENS): Detect ctime bug.
220         * m4/utimensat.m4 (gl_FUNC_UTIMENSAT): Likewise.
221         * lib/utimensat.c (rpl_utimensat): Work around it.
222         * lib/futimens.c (rpl_futimens): Adjust comment.
223
224         utimens: work around Linux ctime bug
225         * lib/utimens.c (detect_ctime_bug): New helper function.
226         (update_timespec): Differentiate between workaround needed for
227         this bug vs. what is needed for systems that lack utimensat.
228         (fdutimens, lutimens): Work around bug.
229
230         utimens: check for ctime update
231         * tests/test-utimens-common.h (check_ctime): Define.
232         * tests/test-utimens.h (test_utimens): Expose the Linux bug.
233         * tests/test-futimens.h (test_futimens): Likewise.
234         * tests/test-lutimens.h (test_lutimens): Likewise.
235         * doc/posix-functions/futimens.texi (futimens): Document the bug.
236         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
237
238 2009-12-19  Bruno Haible  <bruno@clisp.org>
239
240         dprintf-posix: Check against memory leak fixed on 2009-12-15.
241         * tests/test-dprintf-posix2.sh: New file.
242         * tests/test-dprintf-posix2.c: New file.
243         * modules/dprintf-posix-tests (Files): Add them.
244         (configure.ac): Check for getrlimit and setrlimit.
245         (Makefile.am): Augment TESTS and CHECK_PROGRAMS.
246
247 2009-12-19  Bruno Haible  <bruno@clisp.org>
248
249         fprintf-posix: Check against memory leak fixed on 2009-12-15.
250         * tests/test-fprintf-posix3.sh: New file.
251         * tests/test-fprintf-posix3.c: New file.
252         * modules/fprintf-posix-tests (Files): Add them.
253         (Makefile.am): Augment TESTS and CHECK_PROGRAMS.
254
255 2009-12-19  Eric Blake  <ebb9@byu.net>
256
257         dirfd: fix prototype
258         * lib/dirent.in.h (dirfd): Argument is not const, per POSIX.
259         * lib/dirfd.c (dirfd): Likewise.
260
261         canonicalize: reduce memory usage
262         * lib/canonicalize.c (canonicalize_filename_mode): Trim the
263         allocation to size.
264         Reported by Solar Designer <solar@openwall.com>.
265
266 2009-12-19  Bruno Haible  <bruno@clisp.org>
267
268         New module attribute 'Applicability'.
269         * modules/TEMPLATE-EXTENDED: New field 'Applicability'.
270         * gnulib-tool: New option --extract-applicability.
271         (func_usage): Document it.
272         (sed_extract_prog): Recognize it.
273         (func_get_applicability): New function.
274         (func_import): Generalize handling of 'link-warning' module.
275         * modules/link-warning (Applicability): New section.
276         * modules/arg-nonnull (Applicability): New section.
277         Repoted by Simon Josefsson <simon@josefsson.org>.
278
279 2009-12-19  Bruno Haible  <bruno@clisp.org>
280
281         fflush: tweak
282         * lib/fflush.c (update_fpos_cache): Don't use fpos_t on Cygwin.
283         * lib/fseeko.c (rpl_fseeko): Likewise.
284
285 2009-12-16  José E. Marchesi  <jemarch@gnu.org>  (tiny change)
286
287         * lib/gl_list.h: Fix typo in comment.
288
289 2009-12-16  Eric Blake  <ebb9@byu.net>
290
291         fcntl: use to simplify other modules
292         * modules/cloexec (Depends-on): Add fcntl.
293         * modules/fchdir (Depends-on): Likewise.
294         * modules/fd-safer-flag (Depends-on): Likewise.
295         * modules/unistd-safer (Depends-on): Likewise.
296         * modules/dup3 (configure.ac): Set module indicator.
297         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Replace fcntl if fchdir is
298         missing.
299         * lib/fchdir.c (_gl_register_dup): Fix comment.
300         * lib/cloexec.c (dup_cloexec): Simplify, by relying on fcntl.
301         * lib/dup-safer.c (dup_safer): Likewise.
302         * lib/dup-safer-flag.c (dup_safer_flag): Likewise.
303         * lib/dup3.c (dup3): Likewise.
304         * tests/test-fchdir.c (main): Enhance test.
305         Fixes a dup_cloexec bug reported by OndÅ™ej Vašík.
306
307         fcntl: port portions of fcntl to mingw
308         * m4/fcntl.m4 (gl_FUNC_FCNTL): Also build fcntl.c on mingw.
309         * lib/fcntl.c (fcntl) <F_DUPFD, F_DUPFD_CLOEXEC, F_GETFD>: Provide
310         replacement for mingw.
311         * modules/fcntl (Description): Update.
312         (Depends-on): Add dup2.
313         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Add witness.
314         * modules/fcntl-h (Makefile.am): Substitute it.
315         * lib/fcntl.in.h (fcntl): Update declaration.
316         (F_DUPFD, F_GETFD): New macros, when needed.
317         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
318         * doc/posix-functions/fcntl.texi (fcntl): Likewise.
319         * tests/test-fcntl.c (check_flags, main): Enhance test for items
320         we now guarantee.
321
322         fcntl: work around cygwin bug in F_DUPFD
323         * m4/fcntl.m4 (gl_REPLACE_FCNTL): New macro.
324         (gl_FUNC_FCNTL): Use it.  Test for F_DUPFD bug.
325         * lib/fcntl.c (rpl_fcntl) <F_DUPFD>: Work around it.
326         <F_DUPFD_CLOEXEC>: Reduce calls to _gl_register_dup.
327         * doc/posix-functions/fcntl.texi (fcntl): Document it.
328
329         fcntl: support F_DUPFD_CLOEXEC on systems with fcntl
330         * modules/fcntl (Files): List new files.
331         (configure.ac): Run a test.
332         * m4/fcntl.m4 (gl_FUNC_FCNTL): New file.
333         * lib/fcntl.c (rpl_fcntl): Likewise.
334         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Add witness defaults.
335         (gl_FCNTL_H): Always replace fcntl.h.
336         * modules/fcntl-h (Makefile.am): Substitute witnesses.
337         * lib/fcntl.in.h (fcntl): Declare replacement.
338         (F_DUPFD_CLOEXEC, GNULIB_defined_F_DUPFD_CLOEXEC): New macro when
339         needed, plus a witness.
340         * doc/posix-functions/fcntl.texi (fcntl): Document this.
341         * doc/posix-headers/fcntl.texi (fcntl.h): Likewise.
342         * tests/test-fcntl.c: New file.
343         * modules/fcntl-tests: Likewise.
344
345         binary-io: avoid potential compilation warning
346         * lib/binary-io.h [__DJGPP__]: Avoid null preprocessor
347         directives.
348
349         fflush: avoid compilation error on NetBSD
350         * lib/fflush.c (update_fpos_cache): Use a union to safely convert
351         between off_t and fpos_t, since the latter is sometimes a struct.
352         * lib/fseeko.c (rpl_fseeko): Likewise.
353         Reported by Alexander Nasonov <alnsn@yandex.ru>.
354
355 2009-12-15  Eric Blake  <ebb9@byu.net>
356
357         fcntl-h, stdio, sys_ioctl: fix declarations
358         * lib/stdio.in.h (dprintf): Use of link warning on a variadic
359         function must not take arguments.
360         * lib/sys_ioctl.in.h (ioctl): Likewise.
361         * lib/fcntl.in.h (openat): Likewise.  Declare extern.
362         (open): Add a link warning.
363
364 2009-12-15  Jim Meyering  <meyering@redhat.com>
365
366         areadlink, areadlink-with-size: relax license to LGPLv2+
367         * modules/areadlink (License): Relax to LGPLv2+.
368         * modules/areadlink-with-size (License): Likewise.
369
370 2009-12-15  Joel E. Denny  <jdenny@clemson.edu>
371             Bruno Haible  <bruno@clisp.org>
372
373         *printf: Fix memory leak.
374         * lib/fprintf.c (fprintf): Free memory allocated by vasnprintf.
375         * lib/vfprintf.c (vfprintf): Likewise.
376         * lib/dprintf.c (dprintf): Likewise.
377         * lib/vdprintf.c (vdprintf): Likewise.
378
379 2009-12-14  Eric Blake  <ebb9@byu.net>
380
381         accept4: adjust module dependencies
382         * modules/accept4 (Depends-on): Use fcntl-h, not fcntl.
383
384         utimens: one more try at avoiding compiler warning
385         * lib/utimens.c (lutimens): Lower scope of result.
386
387 2009-12-13  Bruno Haible  <bruno@clisp.org>
388
389         Move the malloc checking from module 'list' to new module 'xlist'.
390         * modules/xlist: New file.
391         * lib/gl_xlist.h: New file.
392         * lib/gl_xlist.c: New file.
393         * lib/gl_list.h (gl_list_create_empty, gl_list_create,
394         gl_list_node_set_value, gl_list_set_at, gl_list_add_first,
395         gl_list_add_last, gl_list_add_before, gl_list_add_after,
396         gl_list_nx_add_at, gl_sortedlist_add): Disable declarations.
397         (gl_list_nx_create_empty, gl_list_nx_create, gl_list_node_nx_set_value,
398         gl_list_nx_set_at, gl_list_nx_add_first, gl_list_nx_add_last,
399         gl_list_nx_add_before, gl_list_nx_add_after, gl_list_nx_add_at,
400         gl_sortedlist_nx_add): New declarations.
401         (struct gl_list_implementation): Rename and change methods accordingly.
402         (gl_list_nx_create_empty): Renamed from gl_list_create_empty.
403         (gl_list_nx_create): Renamed from gl_list_create.
404         (gl_list_node_nx_set_value): Renamed from gl_list_node_set_value.
405         (gl_list_nx_set_at): Renamed from gl_list_set_at.
406         (gl_list_nx_add_first): Renamed from gl_list_add_first.
407         (gl_list_nx_add_last): Renamed from gl_list_add_last.
408         (gl_list_nx_add_before): Renamed from gl_list_add_before.
409         (gl_list_nx_add_after): Renamed from gl_list_add_after.
410         (gl_list_nx_add_at): Renamed from gl_list_add_at.
411         (gl_sortedlist_nx_add): Renamed from gl_sortedlist_add.
412         * lib/gl_list.c (gl_list_nx_create_empty): Renamed from
413         gl_list_create_empty.
414         (gl_list_nx_create): Renamed from gl_list_create.
415         (gl_list_node_nx_set_value): Renamed from gl_list_node_set_value.
416         (gl_list_nx_set_at): Renamed from gl_list_set_at.
417         (gl_list_nx_add_first): Renamed from gl_list_add_first.
418         (gl_list_nx_add_last): Renamed from gl_list_add_last.
419         (gl_list_nx_add_before): Renamed from gl_list_add_before.
420         (gl_list_nx_add_after): Renamed from gl_list_add_after.
421         (gl_list_nx_add_at): Renamed from gl_list_add_at.
422         (gl_sortedlist_nx_add): Renamed from gl_sortedlist_add.
423         * lib/gl_array_list.c: Don't include xalloc.h.
424         (gl_array_nx_create_empty): Renamed from gl_array_create_empty. Return
425         NULL upon out-of-memory.
426         (gl_array_nx_create): Renamed from gl_array_create. Return NULL upon
427         out-of-memory.
428         (gl_array_node_nx_set_value): Renamed from gl_array_node_set_value.
429         Change return type to 'int'.
430         (gl_array_nx_set_at): Renamed from gl_array_set_at.
431         (grow): Change return type to 'int'. Return -1 upon out-of-memory.
432         (gl_array_nx_add_first): Renamed from gl_array_add_first. Return NULL
433         upon out-of-memory.
434         (gl_array_nx_add_last): Renamed from gl_array_add_last. Return NULL
435         upon out-of-memory.
436         (gl_array_nx_add_before): Renamed from gl_array_add_before. Return NULL
437         upon out-of-memory.
438         (gl_array_nx_add_after): Renamed from gl_array_add_after. Return NULL
439         upon out-of-memory.
440         (gl_array_nx_add_at): Renamed from gl_array_add_at. Return NULL upon
441         out-of-memory.
442         (gl_array_sortedlist_nx_add): Renamed from gl_array_sortedlist_add.
443         Update.
444         (gl_array_list_implementation): Update.
445         * lib/gl_carray_list.c: Don't include xalloc.h.
446         (gl_carray_nx_create_empty): Renamed from gl_carray_create_empty.
447         Return NULL upon out-of-memory.
448         (gl_carray_nx_create): Renamed from gl_carray_create. Return NULL upon
449         out-of-memory.
450         (gl_carray_node_nx_set_value): Renamed from gl_carray_node_set_value.
451         Change return type to 'int'.
452         (gl_carray_nx_set_at): Renamed from gl_carray_set_at.
453         (grow): Change return type to 'int'. Return -1 upon out-of-memory.
454         (gl_carray_nx_add_first): Renamed from gl_carray_add_first. Return NULL
455         upon out-of-memory.
456         (gl_carray_nx_add_last): Renamed from gl_carray_add_last. Return NULL
457         upon out-of-memory.
458         (gl_carray_nx_add_at): Renamed from gl_carray_add_at. Return NULL upon
459         out-of-memory.
460         (gl_carray_nx_add_before): Renamed from gl_carray_add_before. Update.
461         (gl_carray_nx_add_after): Renamed from gl_carray_add_after. Update.
462         (gl_carray_sortedlist_nx_add): Renamed from gl_carray_sortedlist_add.
463         Update.
464         (gl_carray_list_implementation): Update.
465         * lib/gl_anyhash_list2.h (hash_resize): Do nothing upon out-of-memory.
466         * lib/gl_anylinked_list2.h (gl_linked_nx_create_empty): Renamed from
467         gl_linked_create_empty. Return NULL upon out-of-memory.
468         (gl_linked_nx_create): Renamed from gl_linked_create. Return NULL upon
469         out-of-memory.
470         (gl_linked_node_nx_set_value): Renamed from gl_linked_node_set_value.
471         Change return type to 'int'. Return -1 upon out-of-memory.
472         (gl_linked_nx_set_at): Renamed from gl_linked_set_at. Return NULL upon
473         out-of-memory.
474         (gl_linked_nx_add_first): Renamed from gl_linked_add_first. Return NULL
475         upon out-of-memory.
476         (gl_linked_nx_add_last): Renamed from gl_linked_add_last. Return NULL
477         upon out-of-memory.
478         (gl_linked_nx_add_before): Renamed from gl_linked_add_before. Return
479         NULL upon out-of-memory.
480         (gl_linked_nx_add_after): Renamed from gl_linked_add_after. Return NULL
481         upon out-of-memory.
482         (gl_linked_nx_add_at): Renamed from gl_linked_add_at. Return NULL upon
483         out-of-memory.
484         (gl_linked_sortedlist_nx_add): Renamed from gl_linked_sortedlist_add.
485         Update.
486         * lib/gl_linked_list.c: Don't include xalloc.h.
487         (gl_linked_list_implementation): Update.
488         * lib/gl_linkedhash_list.c: Don't include xalloc.h.
489         (add_to_bucket): Change return type to 'int'.
490         (gl_linkedhash_list_implementation): Update.
491         * lib/gl_anytree_list1.h (free_subtree): New function.
492         * lib/gl_anytree_list2.h (gl_tree_nx_create_empty): Renamed from
493         gl_tree_create_empty. Return NULL upon out-of-memory.
494         (gl_tree_node_nx_set_value): Renamed from gl_tree_node_set_value.
495         Change return type to 'int'. Return -1 upon out-of-memory.
496         (gl_tree_nx_set_at): Renamed from gl_tree_set_at. Return NULL upon
497         out-of-memory.
498         (gl_tree_nx_add_at): Renamed from gl_tree_add_at. Update.
499         (gl_tree_remove_node): New function, moved here from
500         lib/gl_anyavltree_list2.h and lib/gl_anyrbtree_list2.h.
501         (gl_tree_sortedlist_nx_add): Renamed from gl_tree_sortedlist_add.
502         Update.
503         * lib/gl_anyavltree_list2.h (create_subtree_with_contents): Use
504         malloc, not xmalloc. Return NULL upon out-of-memory.
505         (gl_tree_nx_create): Renamed from gl_tree_create. Return NULL upon
506         out-of-memory.
507         (gl_tree_remove_node_from_tree): New function, extracted from
508         gl_tree_remove_node.
509         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Return NULL
510         upon out-of-memory.
511         (gl_tree_nx_add_last): Renamed from gl_tree_add_last. Return NULL upon
512         out-of-memory.
513         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Return NULL
514         upon out-of-memory.
515         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Return NULL
516         upon out-of-memory.
517         (gl_tree_remove_node): Remove function. Moved to gl_anytree_list2.h.
518         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents): Use malloc,
519         not xmalloc. Return NULL upon out-of-memory.
520         (gl_tree_nx_create): Renamed from gl_tree_create. Return NULL upon
521         out-of-memory.
522         (gl_tree_remove_node_from_tree): New function, extracted from
523         gl_tree_remove_node.
524         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Return NULL
525         upon out-of-memory.
526         (gl_tree_nx_add_last): Renamed from gl_tree_add_last. Return NULL upon
527         out-of-memory.
528         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Return NULL
529         upon out-of-memory.
530         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Return NULL
531         upon out-of-memory.
532         (gl_tree_remove_node): Remove function. Moved to gl_anytree_list2.h.
533         * lib/gl_avltree_list.c: Don't include xalloc.h. Include
534         gl_anytree_list1.h before gl_anyavltree_list2.h.
535         (gl_avltree_list_implementation): Update.
536         * lib/gl_rbtree_list.c: Don't include xalloc.h. Include
537         gl_anytree_list1.h before gl_anyavltree_list2.h.
538         (gl_rbtree_list_implementation): Update.
539         * lib/gl_anytreehash_list1.h (add_to_bucket, add_nodes_to_buckets):
540         Change return type to 'int'. Return -1 upon out-of-memory. Use
541         __builtin_expect.
542         * lib/gl_avltreehash_list.c: Don't include xalloc.h.
543         (gl_avltreehash_list_implementation): Update.
544         * lib/gl_rbtreehash_list.c: Don't include xalloc.h.
545         (gl_rbtreehash_list_implementation): Update.
546         * modules/array-list (Depends-on): Remove xalloc.
547         * modules/carray-list (Depends-on): Likewise.
548         * modules/linked-list (Depends-on): Likewise.
549         * modules/linkedhash-list (Depends-on): Likewise.
550         * modules/avltree-list (Depends-on): Likewise.
551         * modules/rbtree-list (Depends-on): Likewise.
552         * modules/avltreehash-list (Depends-on): Likewise.
553         * modules/rbtreehash-list (Depends-on): Likewise.
554
555         * modules/xsublist: New file.
556         * lib/gl_xsublist.h: New file.
557         * lib/gl_xsublist.c: New file.
558         * lib/gl_sublist.h (gl_sublist_create): Disable declaration.
559         (gl_sublist_nx_create): New declaration.
560         * lib/gl_sublist.c: Don't include xalloc.h.
561         (gl_sublist_nx_create_empty): Renamed from gl_sublist_create_empty.
562         (gl_sublist_nx_create_fill): Renamed from gl_sublist_create_fill.
563         (gl_sublist_node_nx_set_value): Renamed from gl_sublist_node_set_value.
564         Change return type to 'int'. Return -1 upon out-of-memory.
565         (gl_sublist_nx_set_at): Renamed from gl_sublist_set_at. Return NULL
566         upon out-of-memory.
567         (gl_sublist_nx_add_first): Renamed from gl_sublist_add_first. Return
568         NULL upon out-of-memory.
569         (gl_sublist_nx_add_last): Renamed from gl_sublist_add_last. Return NULL
570         upon out-of-memory.
571         (gl_sublist_nx_add_before): Renamed from gl_sublist_add_before. Return
572         NULL upon out-of-memory.
573         (gl_sublist_nx_add_after): Renamed from gl_sublist_add_after. Return
574         NULL upon out-of-memory.
575         (gl_sublist_nx_add_at): Renamed from gl_sublist_add_at. Return NULL
576         upon out-of-memory.
577         (gl_sublist_sortedlist_nx_add): Renamed from gl_sublist_sortedlist_add.
578         (gl_sublist_list_implementation): Update.
579         (gl_sublist_nx_create): Renamed from gl_sublist_create. Return NULL
580         upon out-of-memory.
581         * modules/sublist (Depends-on): Remove xalloc.
582
583         * tests/test-array_list.c: Use gl_list_nx_* functions where possible.
584         * tests/test-carray_list.c: Likewise.
585         * tests/test-linked_list.c: Likewise.
586         * tests/test-linkedhash_list.c: Likewise.
587         * tests/test-avltree_list.c: Likewise.
588         * tests/test-rbtree_list.c: Likewise.
589         * tests/test-avltreehash_list.c: Likewise.
590         * tests/test-rbtreehash_list.c: Likewise.
591         * modules/array-list-tests (Makefile.am): Don't link with @LIBINTL@.
592         * modules/carray-list-tests (Makefile.am): Likewise.
593         * modules/linked-list-tests (Makefile.am): Likewise.
594         * modules/linkedhash-list-tests (Makefile.am): Likewise.
595         * modules/avltree-list-tests (Makefile.am): Likewise.
596         * modules/rbtree-list-tests (Makefile.am): Likewise.
597         * modules/avltreehash-list-tests (Makefile.am): Likewise.
598         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
599
600         * NEWS: Mention the changes.
601
602         * lib/clean-temp.c: Include gl_xlist.h.
603         * modules/clean-temp (Depends-on): Add xlist.
604
605         * lib/git-merge-changelog.c: Include gl_xlist.h instead of gl_list.h.
606         * modules/git-merge-changelog (Depends-on): Add xlist. Remove list.
607
608         * tests/test-array_oset.c: Include gl_xlist.h.
609         * modules/array-oset-tests (Depends-on): Add xlist.
610
611         Reported by José E. Marchesi <jemarch@gnu.org>.
612
613 2009-12-13  Bruno Haible  <bruno@clisp.org>
614
615         Move the malloc checking from module 'oset' to new module 'xoset'.
616         * modules/xoset: New file.
617         * lib/gl_xoset.h: New file.
618         * lib/gl_xoset.c: New file.
619         * lib/gl_oset.h (gl_oset_create_empty, gl_oset_add): Disable
620         declarations.
621         (gl_oset_nx_create_empty, gl_oset_nx_add): New declarations.
622         (struct gl_oset_implementation): Rename and change methods accordingly.
623         (gl_oset_nx_create_empty): Renamed from gl_oset_create_empty.
624         (gl_oset_nx_add): Renamed from gl_oset_add. Change return type to
625         'int'. Mark as __warn_unused_result__.
626         * lib/gl_oset.c (gl_oset_nx_create_empty): Renamed from
627         gl_oset_create_empty.
628         (gl_oset_nx_add): Renamed from gl_oset_add. Change return type to
629         'int'.
630         * lib/gl_array_oset.c: Don't include xalloc.h.
631         (gl_array_nx_create_empty): Renamed from gl_array_create_empty. Use
632         malloc, not xmalloc.
633         (grow): Change return type to 'int'. Don't call xalloc_die.
634         (gl_array_nx_add_at): Renamed from gl_array_add_at. Change return type
635         to 'int'.
636         (gl_array_nx_add): Renamed from gl_array_add. Change return type to
637         'int'.
638         (gl_array_oset_implementation): Update.
639         * lib/gl_anytree_oset.h (gl_tree_nx_create_empty): Renamed from
640         gl_tree_create_empty.
641         (gl_tree_nx_add): Renamed from gl_tree_add. Change return type to
642         'int'.
643         * lib/gl_avltree_oset.c: Don't include xalloc.h.
644         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Use malloc, not
645         xmalloc.
646         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Use malloc,
647         not xmalloc.
648         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Use malloc, not
649         xmalloc.
650         (gl_avltree_oset_implementation): Update.
651         * lib/gl_rbtree_oset.c: Don't include xalloc.h.
652         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Use malloc, not
653         xmalloc.
654         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Use malloc,
655         not xmalloc.
656         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Use malloc, not
657         xmalloc.
658         (gl_rbtree_oset_implementation): Update.
659         * modules/array-oset (Depends-on): Remove xalloc.
660         * modules/avltree-oset (Depends-on): Likewise.
661         * modules/rbtree-oset (Depends-on): Likewise.
662         * tests/test-array_oset.c: Use gl_oset_nx_* functions where possible.
663         * tests/test-avltree_oset.c: Likewise.
664         * tests/test-rbtree_oset.c: Likewise.
665         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
666         * modules/avltree-oset-tests (Makefile.am): Don't link with @LIBINTL@.
667         * modules/rbtree-oset-tests (Makefile.am): Likewise.
668         * NEWS: Mention the change.
669
670 2009-12-05  Alfred M. Szmidt  <ams@gnu.org>
671
672         maint.mk: allow a project to override release-prep commands
673         * top/maint.mk (alpha, beta, stable): Move release-preparatory
674         commands into a new rule.
675         (release-prep): New rule.
676         (release-prep-hook): New overridable variable.
677
678 2009-12-13  Bruno Haible  <bruno@clisp.org>
679
680         * lib/localcharset.c (locale_charset): Fix comment about use of GetACP.
681
682 2009-12-13  Jim Meyering  <meyering@redhat.com>
683
684         maint.mk (null_AM_MAKEFLAGS, built_programs): remove unused definitions
685         * top/maint.mk (null_AM_MAKEFLAGS, built_programs): Remove definitions.
686
687 2009-12-12  Bruno Haible  <bruno@clisp.org>
688
689         duplocale: Tweak.
690         * lib/duplocale.c (rpl_duplocale): Mark categories array as 'const'.
691
692 2009-12-12  Karl Berry  <karl@gnu.org>
693
694         * config/srclist.txt (strtoll.c): tab changes, no more sync.
695
696 2009-12-12  Bruno Haible  <bruno@clisp.org>
697
698         * m4/po.m4: Undo incorrect untabification.
699
700 2009-12-12  Bruno Haible  <bruno@clisp.org>
701
702         c-strtod, c-strtold: Use multithread-safe implementation on MacOS X.
703         * modules/c-strtod (Depends-on): Add locale.
704         * modules/c-strtold (Depends-on): Likewise.
705
706 2009-12-12  Bruno Haible  <bruno@clisp.org>
707
708         * lib/localcharset.c (locale_charset): Add comment about use of GetACP.
709
710 2009-12-11  Eric Blake  <ebb9@byu.net>
711
712         setenv: relax requirement in light of POSIX ruling
713         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): Test handling of "" but
714         not NULL.
715         * tests/test-setenv.c (main): Relax test.
716         * tests/test-unsetenv.c (main): Likewise.
717         * doc/posix-functions/setenv.texi (setenv): Document this.
718         * doc/posix-functions/unsetenv.texi (unsetenv): Likewise.
719
720 2009-12-11  Bruno Haible  <bruno@clisp.org>
721
722         New module 'fd-safer-flag'.
723         * lib/dup-safer-flag.c: New file, extracted from lib/dup-safer.c.
724         * lib/dup-safer.c (dup_safer_flag): Remove function.
725         * lib/fd-safer-flag.c: New file, extracted from lib/fd-safer.c.
726         * lib/fd-safer.c (fd_safer_flag): Remove function.
727         * lib/unistd-safer.h (dup_safer_flag, fd_safer_flag): Update condition.
728         * modules/cloexec (configure.ac): Drop indicator macro.
729         * modules/fd-safer-flag: New file.
730         * modules/pipe2-safer (Depends-on): Add fd-safer-flag. Remove cloexec.
731         * modules/stdlib-safer (Depends-on): Add fd-safer-flag.
732         * modules/unistd-safer-tests (Depends-on): Add fd-safer-flag.
733
734 2009-12-11  Bruno Haible  <bruno@clisp.org>
735
736         Tests for module 'nl_langinfo'.
737         * modules/nl_langinfo-tests: New file.
738         * tests/test-nl_langinfo.sh: New file.
739         * tests/test-nl_langinfo.c: New file.
740
741         New module 'nl_langinfo'.
742         * lib/nl_langinfo.c: New file.
743         * m4/nl_langinfo.m4: New file.
744         * modules/nl_langinfo: New file.
745         * doc/posix-functions/nl_langinfo.texi: Mention the new module.
746
747 2009-12-11  Bruno Haible  <bruno@clisp.org>
748
749         Tests for module 'langinfo'.
750         * modules/langinfo-tests: New file.
751         * tests/test-langinfo.c: New file.
752
753         New module 'langinfo'.
754         * lib/langinfo.in.h: New file.
755         * m4/langinfo_h.m4: New file.
756         * modules/langinfo: New file.
757         * doc/posix-headers/langinfo.texi: Mention the new module.
758
759 2009-12-11  Bruno Haible  <bruno@clisp.org>
760
761         * lib/config.charset: Untabify.
762
763 2009-12-11  Bruno Haible  <bruno@clisp.org>
764
765         * modules/unistd-safer (configure.ac): Drop indicator macro.
766
767 2009-12-11  Bruno Haible  <bruno@clisp.org>
768
769         Move pipe2-safer code to its own file.
770         * lib/pipe2-safer.c: New file, extracted from lib/pipe-safer.c.
771         * lib/pipe-safer.c (pipe2_safer): Remove function.
772         * modules/pipe2-safer (Files): Add lib/pipe2-safer.c.
773         (Makefile.am): Add it to lib_SOURCES.
774
775 2009-12-10  Bruno Haible  <bruno@clisp.org>
776
777         * lib/recvfrom.c (rpl_recvfrom): Allow the from argument to be NULL.
778
779 2009-12-10  Bruno Haible  <bruno@clisp.org>
780
781         Declare which arguments expect non-NULL values, for GCC and clang.
782         * build-aux/arg-nonnull.h: New file.
783         * modules/arg-nonnull: New file.
784         * lib/arpa_inet.in.h (_GL_ARG_NONNULL): New placeholder.
785         (inet_ntop, inet_pton): Use it.
786         * lib/dirent.in.h (_GL_ARG_NONNULL): New placeholder.
787         (closedir, dirfd, opendir, scandir, alphasort): Use it.
788         * lib/fcntl.in.h (_GL_ARG_NONNULL): New placeholder.
789         (open, openat): Use it.
790         * lib/fnmatch.in.h (_GL_ARG_NONNULL): New placeholder.
791         (fnmatch): Use it.
792         * lib/getopt.in.h (_GL_ARG_NONNULL): New placeholder.
793         (getopt, getopt_long, getopt_long_only): Use it.
794         * lib/glob.in.h (_GL_ARG_NONNULL): New placeholder.
795         * lib/glob-libc.h (glob, globfree, glob64, globfree64, glob_pattern_p):
796         Use it.
797         * lib/iconv.in.h (_GL_ARG_NONNULL): New placeholder.
798         (iconv_open): Use it.
799         * lib/inttypes.in.h (_GL_ARG_NONNULL): New placeholder.
800         (strtoimax, strtoumax): Use it.
801         * lib/locale.in.h (_GL_ARG_NONNULL): New placeholder.
802         (duplocale): Use it.
803         * lib/math.in.h (_GL_ARG_NONNULL): New placeholder.
804         (frexp, frexpl): Use it.
805         * lib/netdb.in.h (_GL_ARG_NONNULL): New placeholder.
806         (getaddrinfo, freeaddrinfo, getnameinfo): Use it.
807         * lib/search.in.h (_GL_ARG_NONNULL): New placeholder.
808         (tsearch, tfind, tdelete, twalk): Use it.
809         * lib/signal.in.h (_GL_ARG_NONNULL): New placeholder.
810         (sigismember, sigemptyset, sigaddset, sigdelset, sigfillset,
811         sigpending): Use it.
812         * lib/spawn.in.h (_GL_ARG_NONNULL): New placeholder.
813         (posix_spawn, posix_spawnp, posix_spawnattr_init,
814         posix_spawnattr_destroy, posix_spawnattr_getsigdefault,
815         posix_spawnattr_setsigdefault, posix_spawnattr_getsigmask,
816         posix_spawnattr_setsigmask, posix_spawnattr_getflags,
817         posix_spawnattr_setflags, posix_spawnattr_getpgroup,
818         posix_spawnattr_setpgroup, posix_spawnattr_getschedpolicy,
819         posix_spawnattr_setschedpolicy, posix_spawnattr_getschedparam,
820         posix_spawnattr_setschedparam, posix_spawn_file_actions_init,
821         posix_spawn_file_actions_destroy, posix_spawn_file_actions_addopen,
822         posix_spawn_file_actions_addclose, posix_spawn_file_actions_adddup2):
823         Use it.
824         * lib/stdio.in.h (_GL_ARG_NONNULL): New placeholder.
825         (dprintf, fclose, fopen, fprintf, fpurge, fputc, fputs, freopen,
826         rpl_fseek, fseeko, rpl_ftell, ftello, fwrite, getdelim, getline,
827         obstack_printf, obstack_vprintf, popen, printf, putc, puts, remove,
828         rename, renameat, snprintf, sprintf, asprintf, vasprintf, vdprintf,
829         vfprintf, vprintf, vsnprintf, vsprintf): Use it.
830         * lib/stdlib.in.h (_GL_ARG_NONNULL): New placeholder.
831         (atoll, canonicalize_file_name, getloadavg, getsubopt, mkdtemp,
832         mkostemp, mkostemps, mkstemp, mkstemps, putenv, srandom_r, initstate_r,
833         setstate_r, random_r, realpath, rpmatch, setenv, strtod, strtoll,
834         strtoull, unsetenv): Use it.
835         * lib/string.in.h (_GL_ARG_NONNULL): New placeholder.
836         (memchr, memmem, mempcpy, memrchr, rawmemchr, stpcpy, stpncpy,
837         strchrnul, strdup, strndup, strnlen, strpbrk, strsep, strstr,
838         strcasestr, strtok_r, mbslen, mbsnlen, mbschr, mbsrchr, mbsstr,
839         mbscasecmp, mbsncasecmp, mbspcasecmp, mbscasestr, mbscspn, mbspbrk,
840         mbsspn, mbssep, mbstok_r, strverscmp): Use it.
841         * lib/strings.in.h (_GL_ARG_NONNULL): New placeholder.
842         (strcasecmp, strncasecmp): Use it.
843         * lib/sys_socket.in.h (_GL_ARG_NONNULL): New placeholder.
844         (rpl_connect, rpl_bind, rpl_getpeername, rpl_getsockname,
845         rpl_getsockopt, rpl_recv, rpl_send, rpl_recvfrom, rpl_sendto,
846         rpl_setsockopt): Use it.
847         * lib/sys_stat.in.h (_GL_ARG_NONNULL): New placeholder.
848         (fchmodat, fstat, fstatat, lchmod, rpl_lstat, mkdir, mkdirat, mkfifo,
849         mkfifoat, mknod, mknodat, stat, utimensat): Use it.
850         * lib/sys_time.in.h (_GL_ARG_NONNULL): New placeholder.
851         (gettimeofday): Use it.
852         * lib/sys_times.in.h (_GL_ARG_NONNULL): New placeholder.
853         (times): Use it.
854         * lib/sys_utsname.in.h (_GL_ARG_NONNULL): New placeholder.
855         (uname): Use it.
856         * lib/time.in.h (_GL_ARG_NONNULL): New placeholder.
857         (nanosleep, mktime, localtime_r, gmtime_r, strptime, timegm): Use it.
858         * lib/unistd.in.h (_GL_ARG_NONNULL): New placeholder.
859         (chown, euidaccess, faccessat, _gl_register_fd, fchownat,
860         getdomainname, gethostname, getlogin_r, lchown, link, linkat, pipe2,
861         pread, readlink, readlinkat, rmdir, symlink, symlinkat, unlink,
862         unlinkat, write): Use it.
863         * lib/wchar.in.h (_GL_ARG_NONNULL): New placeholder.
864         (mbsrtowcs, mbsnrtowcs, wcsrtombs, wcsnrtombs): Use it.
865         * lib/argv-iter.h: Include arg-nonnull.h.
866         (_ATTRIBUTE_NONNULL_): Remove macro.
867         (argv_iter_init_argv, argv_iter_init_stream, argv_iter,
868         argv_iter_n_args, argv_iter_free): Use _GL_ARG_NONNULL.
869         * lib/canonicalize-lgpl.c (_GL_ARG_NONNULL): Define, to defeat gcc
870         optimization.
871         * lib/getaddrinfo.c (_GL_ARG_NONNULL): Likewise.
872         * lib/getdelim.c (_GL_ARG_NONNULL): Likewise.
873         * lib/glob.c (_GL_ARG_NONNULL): Likewise.
874         * lib/random_r.c (_GL_ARG_NONNULL): Likewise.
875         * lib/setenv.c (_GL_ARG_NONNULL): Likewise.
876         * lib/strtod.c (_GL_ARG_NONNULL): Likewise.
877         * lib/tsearch.c (_GL_ARG_NONNULL): Likewise.
878         * lib/unsetenv.c (_GL_ARG_NONNULL): Likewise.
879         * modules/arpa_inet (Depends-on): Add arg-nonnull.
880         (Makefile.am): Insert arg-nonnull.h into arpa/inet.h.
881         * modules/dirent (Depends-on): Add arg-nonnull.
882         (Makefile.am): Insert arg-nonnull.h into dirent.h.
883         * modules/fcntl-h (Depends-on): Add arg-nonnull.
884         (Makefile.am): Insert arg-nonnull.h into fcntl.h.
885         * modules/fnmatch (Depends-on): Add arg-nonnull.
886         (Makefile.am): Insert arg-nonnull.h into fnmatch.h.
887         * modules/getopt-posix (Depends-on): Add arg-nonnull.
888         (Makefile.am): Insert arg-nonnull.h into getopt.h.
889         * modules/glob (Depends-on): Add arg-nonnull.
890         (Makefile.am): Insert arg-nonnull.h into glob.h.
891         * modules/iconv_open (Depends-on): Add arg-nonnull.
892         (Makefile.am): Insert arg-nonnull.h into iconv.h.
893         * modules/inttypes (Depends-on): Add arg-nonnull.
894         (Makefile.am): Insert arg-nonnull.h into inttypes.h.
895         * modules/locale (Depends-on): Add arg-nonnull.
896         (Makefile.am): Insert arg-nonnull.h into locale.h.
897         * modules/math (Depends-on): Add arg-nonnull.
898         (Makefile.am): Insert arg-nonnull.h into math.h.
899         * modules/netdb (Depends-on): Add arg-nonnull.
900         (Makefile.am): Insert arg-nonnull.h into netdb.h.
901         * modules/search (Depends-on): Add arg-nonnull.
902         (Makefile.am): Insert arg-nonnull.h into search.h.
903         * modules/signal (Depends-on): Add arg-nonnull.
904         (Makefile.am): Insert arg-nonnull.h into signal.h.
905         * modules/spawn (Depends-on): Add arg-nonnull.
906         (Makefile.am): Insert arg-nonnull.h into spawn.h.
907         * modules/stdio (Depends-on): Add arg-nonnull.
908         (Makefile.am): Insert arg-nonnull.h into stdio.h.
909         * modules/stdlib (Depends-on): Add arg-nonnull.
910         (Makefile.am): Insert arg-nonnull.h into stdlib.h.
911         * modules/string (Depends-on): Add arg-nonnull.
912         (Makefile.am): Insert arg-nonnull.h into string.h.
913         * modules/strings (Depends-on): Add arg-nonnull.
914         (Makefile.am): Insert arg-nonnull.h into strings.h.
915         * modules/sys_socket (Depends-on): Add arg-nonnull.
916         (Makefile.am): Insert arg-nonnull.h into sys/socket.h.
917         * modules/sys_stat (Depends-on): Add arg-nonnull.
918         (Makefile.am): Insert arg-nonnull.h into sys/stat.h.
919         * modules/sys_time (Depends-on): Add arg-nonnull.
920         (Makefile.am): Insert arg-nonnull.h into sys/time.h.
921         * modules/sys_times (Depends-on): Add arg-nonnull.
922         (Makefile.am): Insert arg-nonnull.h into sys/times.h.
923         * modules/sys_utsname (Depends-on): Add arg-nonnull.
924         (Makefile.am): Insert arg-nonnull.h into sys/utsname.h.
925         * modules/time (Depends-on): Add arg-nonnull.
926         (Makefile.am): Insert arg-nonnull.h into time.h.
927         * modules/unistd (Depends-on): Add arg-nonnull.
928         (Makefile.am): Insert arg-nonnull.h into unistd.h.
929         * modules/wchar (Depends-on): Add arg-nonnull.
930         (Makefile.am): Insert arg-nonnull.h into wchar.h.
931         * modules/argv-iter (Depends-on): Add arg-nonnull.
932         * tests/test-canonicalize.c (null_ptr): New function.
933         (main): Use it.
934         * tests/test-canonicalize-lgpl.c (null_ptr): New function.
935         (main): Use it.
936         * tests/test-memmem.c (null_ptr): New function.
937         (main): Use it.
938         Reported by Jim Meyering.
939
940 2009-12-10  Bruno Haible  <bruno@clisp.org>
941
942         Use spaces for indentation, not tabs.
943         * lib/**/*.[hcy] except lib/reg*.[hc]: Untabify.
944         * m4/*.m4: Untabify.
945         * build-aux/*.h: Untabify.
946         * tests/**/*.[hc]: Untabify.
947         * README: New section "Indent with spaces, not TABs", based on
948         coreutils/HACKING and comments by Pádraig Brady and Paolo Bonzini.
949         * NEWS: Mention the change.
950
951 2009-12-10  Bruno Haible  <bruno@clisp.org>
952
953         pty test: Fix link error.
954         * modules/pty-tests (Makefile.am): Add the default LDADD value to
955         test_pty_LDADD.
956
957 2009-12-07  Simon Josefsson  <simon@josefsson.org>
958
959         * modules/pty: New file.
960         * modules/pty-tests: New file.
961         * m4/pty.m4: New file.
962         * tests/test-pty.c: New file.
963         * doc/glibc-headers/pty.texi: Modified.
964         * doc/glibc-functions/forkpty.texi: Modified.
965         * doc/glibc-functions/openpty.texi: Modified.
966
967 2009-12-10  Bruno Haible  <bruno@clisp.org>
968
969         Avoid syntax error in C++ mode.
970         * lib/stdio.in.h (rename): Don't use parameter name 'new'.
971
972 2009-12-10  Bruno Haible  <bruno@clisp.org>
973
974         Use sed with option -e.
975         * gnulib-tool (func_version, func_emit_copyright_notice,
976         func_emit_initmacro_end, func_import, func_create_testdir): Pass
977         option -e to sed.
978         * modules/link-warning (Makefile.am): Likewise.
979
980 2009-12-10  Jim Meyering  <meyering@redhat.com>
981
982         mgetgroups: do not write bytes beyond end of malloc'd buffer
983         * lib/mgetgroups.c: Fix an off-by-one error.  When we have no
984         username, we call getgroups with a one-element-shorter buffer,
985         but still told it the length was original, max_n_groups.
986
987 2009-12-09  Eric Blake  <ebb9@byu.net>
988
989         cloexec: relax license
990         * modules/cloexec (Maintainer): Add myself.
991         (License): Use LGPL, not GPL.
992
993         link-warning: optimize generation
994         * modules/link-warning (Makefile.am): Reduce process usage.
995
996 2009-12-09  Bruno Haible  <bruno@clisp.org>
997
998         * doc/posix-functions/unsetenv.texi: Mention Solaris 10 bug for which a
999         workaround was added on 2009-11-17.
1000
1001 2009-12-09  Jim Meyering  <meyering@redhat.com>
1002             Bruno Haible  <bruno@clisp.org>
1003
1004         link-warning: Allow extra lines at the top of build-aux/link-warning.h.
1005         * modules/link-warning (Makefile.am): Make the comment-removing sed
1006         command more robust in the face of bootstrap-prepended comment lines.
1007
1008 2009-12-09  Bruno Haible  <bruno@clisp.org>
1009
1010         * lib/mgetgroups.c (mgetgroups): Don't remove duplicates if there is at
1011         most one group.
1012
1013 2009-12-09  Simon Josefsson <simon@josefsson.org>
1014             Bruno Haible  <bruno@clisp.org>
1015
1016         * build-aux/link-warning.h: Add copyright notice.
1017         * modules/link-warning (Makefile.am): Generate link-warning.h from
1018         build-aux/link-warning.h. Update LINK_WARNING_H accordingly.
1019         * NEWS: Mention change in link-warning module.
1020         * modules/arpa_inet (Makefile.am): Add dependency to arpa/inet.h.
1021         * modules/dirent (Makefile.am): Add dependency to dirent.h.
1022         * modules/fcntl-h (Makefile.am): Add dependency to fcntl.h.
1023         * modules/getopt-posix (Makefile.am): Add dependency to getopt.h.
1024         * modules/inttypes (Makefile.am): Add dependency to inttypes.h.
1025         * modules/math (Makefile.am): Add dependency to math.h.
1026         * modules/search (Makefile.am): Add dependency to search.h.
1027         * modules/signal (Makefile.am): Add dependency to signal.h.
1028         * modules/spawn (Makefile.am): Add dependency to spawn.h.
1029         * modules/stdio (Makefile.am): Add dependency to stdio.h.
1030         * modules/stdlib (Makefile.am): Add dependency to stdlib.h.
1031         * modules/string (Makefile.am): Add dependency to string.h.
1032         * modules/strings (Makefile.am): Add dependency to strings.h.
1033         * modules/sys_ioctl (Makefile.am): Add dependency to sys/ioctl.h.
1034         * modules/sys_select (Makefile.am): Add dependency to sys/select.h.
1035         * modules/sys_socket (Makefile.am): Add dependency to sys/socket.h.
1036         * modules/sys_stat (Makefile.am): Add dependency to sys/stat.h.
1037         * modules/sys_times (Makefile.am): Add dependency to sys/times.h.
1038         * modules/sys_utsname (Makefile.am): Add dependency to sys/utsname.h.
1039         * modules/sys_wait (Makefile.am): Add dependency to sys/wait.h.
1040         * modules/unistd (Makefile.am): Add dependency to unistd.h.
1041         * modules/wchar (Makefile.am): Add dependency to wchar.h.
1042
1043 2009-12-09  Bruno Haible  <bruno@clisp.org>
1044
1045         fchdir: Optimize away rpl_fstat when possible.
1046         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Set REPLACE_FSTAT only together with
1047         REPLACE_OPEN_DIRECTORY.
1048         * lib/fchdir.c (rpl_fstat): Define only when REPLACE_OPEN_DIRECTORY.
1049
1050 2009-12-09  Bruno Haible  <bruno@clisp.org>
1051
1052         * lib/fchdir.c: Update comment.
1053
1054 2009-12-09  Bruno Haible  <bruno@clisp.org>
1055
1056         * lib/cloexec.c (set_cloexec_flag): Clarify intent of dup2 call.
1057
1058 2009-12-08  Eric Blake  <ebb9@byu.net>
1059
1060         fchdir: avoid memory leak on re-registration.
1061         * lib/fchdir.c (ensure_dirs_slot): Avoid memory leak.
1062
1063 2009-12-08  Jim Meyering  <meyering@redhat.com>
1064
1065         init.sh: avoid Solaris 10 /bin/sh portability problem
1066         Solaris 10's /bin/sh does not pass '.' arguments 2.. to the
1067         sourced script:
1068           $ printf 'echo "$@"\n' > f; /bin/sh -c '. ./f bar'
1069           $ printf 'echo "$@"\n' > f; /bin/bash -c '. ./f bar'
1070           bar
1071         tests/init.sh relied on that, accepting a --set-path=DIR argument,
1072         and two tests used that idiom.
1073         * tests/init.sh: Update suggested usage comments.
1074         (path_prepend_): New function, to be used in place
1075         of the --src-path=DIR option.
1076         (setup_): Move PATH-prepending code into path_prepend_.
1077         * tests/test-pread.sh: Adapt to new usage.
1078         * tests/test-xalloc-die.sh: Likewise.
1079
1080 2009-12-08  Simon Josefsson  <simon@josefsson.org>
1081
1082         * doc/gnulib.texi (Glibc pty.h): Add.
1083         * doc/glibc-functions/forkpty.texi: Add.
1084         * doc/glibc-functions/openpty.texi: Add.
1085         Suggested by Bruno Haible.
1086
1087 2009-12-08  Eric Blake  <ebb9@byu.net>
1088
1089         fchdir: fix logic bugs
1090         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Fix logic bug.
1091         * tests/test-fchdir.c (main): Enhance test.
1092         * lib/fchdir.c (rpl_fstat): Always provide if fchdir replacement
1093         is in use.
1094
1095         dup2: fix logic bugs
1096         * lib/dup2.c (dup2): Fix logic bugs.  Use HAVE_DUP2 rather than
1097         REPLACE_DUP2 to decide when rpl_dup2 is needed.
1098         * m4/dup2.m4 (gl_REPLACE_DUP2): Only define REPLACE_DUP2 when dup2
1099         exists.
1100         (gl_FUNC_DUP2): Drop unneeded AC_DEFINE.
1101
1102 2009-12-07  Eric Blake  <ebb9@byu.net>
1103
1104         unlink: fix m4 detection
1105         * m4/unlink.m4 (gl_FUNC_UNLINK): Include correct header.
1106
1107         unistd-safer: add unit test
1108         * modules/unistd-safer-tests: New file.
1109         * tests/test-dup-safer.c: Likewise.
1110         * tests/test-cloexec.c (setmode): Avoid compiler warning.
1111         * tests/test-dup2.c (setmode): Likewise.
1112         * lib/cloexec.c (dup_cloexec): Fix mingw compile error.
1113
1114         cloexec: preserve text vs. binary across dup_cloexec
1115         * lib/cloexec.c (dup_cloexec) [W32]: Query and use translation
1116         mode.
1117         * modules/dup2-tests (Depends-on): Add binary-io.
1118         * modules/cloexec-tests (Depends-on): Likewise.
1119         * tests/test-dup2.c (setmode, is_mode): New helpers.
1120         (main): Add tests that translation mode is preserved.
1121         * tests/test-cloexec.c (setmode, is_mode, main): Likewise.
1122         Reported by Bruno Haible.
1123
1124         mgetgroups: reduce duplicate listings
1125         * lib/mgetgroups.c (mgetgroups): Reduce duplicates from the
1126         resulting array.
1127         * tests/test-chown.h (test_chown): Simplify client.
1128         * tests/test-lchown.h (test_lchown): Likewise.
1129
1130 2009-12-06  Bruno Haible  <bruno@clisp.org>
1131
1132         * lib/cloexec.c (dup_cloexec): Fix handling of _gl_register_dup return
1133         value.
1134
1135 2009-12-06  Bruno Haible  <bruno@clisp.org>
1136
1137         * lib/progname.c: Include stdio.h, stdlib.h.
1138         (set_program_name): Reject a NULL argument.
1139
1140 2009-12-05  Eric Blake  <ebb9@byu.net>
1141
1142         pipe2-safer: new module
1143         * modules/pipe2-safer: New file.
1144         * lib/unistd-safer.h (pipe2_safer): New prototype.
1145         * lib/unistd--.h (pipe2): New wrapper.
1146         * lib/pipe-safer.c (pipe2_safer): New function.
1147         * modules/pipe (Depends-on): Add pipe2-safer.
1148         * lib/pipe.c (create_pipe) [WIN32]: Let pipe2_safer do the work.
1149
1150         stdlib-safer: preserve cloexec flag for mkostemp[s]
1151         * lib/mkstemp-safer.c (mkostemp_safer, mkostemps_safer): Use new
1152         fd_safer_flag.
1153
1154         unistd-safer: allow preservation of cloexec status via flag
1155         * lib/unistd-safer.h (dup_safer_flag, fd_safer_flag): New
1156         prototypes.
1157         * lib/dup-safer.c (dup_safer_flag): New function.
1158         * lib/fd-safer.c (fd_safer_flag): Likewise.
1159         * modules/cloexec (configure.ac): Set witness.
1160
1161         test-dup2: enhance test
1162         * modules/dup2-tests (Depends-on): Add cloexec.
1163         * tests/test-dup2.c (main): Enhance test.
1164
1165         cloexec: add dup_cloexec
1166         * lib/cloexec.h (dup_cloexec): New prototype.  Add copyright
1167         header and comments.
1168         * lib/cloexec.c (set_cloexec_flag): Add comments.
1169         (dup_cloexec): New function, with mingw implementation borrowed
1170         from...
1171         * lib/w32spawn.h (dup_noinherit): ...here.
1172         * modules/execute (Depends-on): Add cloexec.
1173         * modules/pipe (Depends-on): Likewise.
1174         * modules/cloexec (Depends-on): Add dup2.
1175         * modules/cloexec-tests (Files): New file.
1176         * tests/test-cloexec.c: Likewise.
1177
1178         test-xalloc-die: fix test for mingw
1179         * modules/xalloc-die-tests (Files): Add tests/init.sh.
1180         * tests/test-xalloc-die.sh: Rewrite to use init.sh.  Strip
1181         directory and .exe suffix off argv[0] output.
1182
1183         test-fseeko: fix test for mingw
1184         * tests/test-fseeko.c (fseek): Redefine GL_LINK_WARNING, rather
1185         than undefining fseek, so test will pass on mingw.
1186
1187 2009-12-05  Bruno Haible  <bruno@clisp.org>
1188
1189         * lib/progname.h (set_program_name): Clarify specification.
1190         * lib/progname.c (set_program_name): Likewise.
1191         Reported by Jim Meyering.
1192
1193 2009-12-05  Jim Meyering  <meyering@redhat.com>
1194
1195         maint.mk: backslash-escape parens in default regexp
1196         * top/maint.mk (news-check-regexp): Now that we're using grep -E,
1197         backslash-escape the literal parentheses.
1198
1199         maint.mk: news-date-check: use grep -E
1200         * top/maint.mk (today): Define a Make variable, not a...
1201         (news-date-check): ...shell variable.
1202         (news-date-regexp): Use the Make variable.
1203         Use grep's -E option.  Change the failing diagnostic to mention
1204         the variable, $(news-date-regexp).
1205
1206 2009-12-04  Alfred M. Szmidt  <ams@gnu.org>
1207
1208         maintainer-makefile: allow customization of NEWS entry format
1209         * top/maint.mk (news-date-regexp): New overridable variable.
1210         (news-date-check): Use it.
1211
1212 2009-12-04  Eric Blake  <ebb9@byu.net>
1213
1214         mgetgroups: add xgetgroups, and avoid ENOSYS failures
1215         * lib/mgetgroups.h (xgetgroups): New prototype.
1216         * lib/mgetgroups.c (xgetgroups): New wrapper.
1217         (mgetgroups): Handle ENOSYS.
1218         * modules/mgetgroups (Depends-on): Add realloc.
1219         Reported by Scott Harrison <scott.gnu.2009@scottrix.co.uk>.
1220
1221         mgetgroups: avoid argument promotion issues with -1
1222         * lib/mgetgroups.c (mgetgroups): A cast is required when checking
1223         for invalid gid_t.
1224         * tests/test-chown.h (getegid, test_chown): Likewise.
1225         * tests/test-lchown.h (getegid, test_lchown): Likewise.
1226
1227 2009-12-03  Paolo Bonzini  <bonzini@gnu.org>
1228
1229         exclude: Fix header file problems.
1230         * lib/exclude.h: Add multiple inclusion guards and include stdbool.h.
1231
1232 2009-12-01  Jim Meyering  <meyering@redhat.com>
1233
1234         fts: fts_open: do not let an empty string cause immediate failure
1235         This is required in support of GNU rm, for which the command
1236         "rm A '' B" must process and remove both A and B, in spite of
1237         the empty string argument.
1238         * lib/fts.c (fts_open): Do not let the presence of an empty string
1239         cause fts_open to fail immediately.  Most fts-using tools must be
1240         able to process all arguments, in order, and can be expected to
1241         diagnose such arguments themselves.
1242
1243 2009-11-30  Eric Blake  <ebb9@byu.net>
1244
1245         utimens: fix compilation error
1246         * lib/utimens.c (lutimens) [!HAVE_UTIMENSAT && HAVE_LUTIMES]:
1247         Declare variable at right scope.
1248
1249 2009-11-29  Jim Meyering  <meyering@redhat.com>
1250
1251         bootstrap: handle perl-5.11's changed --version output
1252         * build-aux/bootstrap (get_version): Handle perl separately,
1253         since perl-5.11's --version output is different.
1254
1255 2009-11-28  Jim Meyering  <meyering@redhat.com>
1256
1257         userspec: depend on the inttostr module, too
1258         * modules/userspec (Depends-on): Add inttostr.
1259
1260         userspec: disallow an ID that maps to (uid_t)-1 or (gid_t)-1
1261         * lib/userspec.c (parse_with_separator): Do not accept a user ID
1262         number of MAXUID when it evaluates to (uid_t) -1.
1263         Likewise for group ID.  Reported by Matt McCutchen in
1264         <http://savannah.gnu.org/bugs/?28113>
1265
1266         userspec: reformat to use spaces, not TABs
1267         * lib/userspec.c: Expand TABs to spaces.
1268         Add Emacs' "indent-tabs-mode: nil" hint.
1269
1270 2009-11-27  Eric Blake  <ebb9@byu.net>
1271
1272         getopt-gnu: flush out another BSD bug
1273         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Test for the bug.
1274         * tests/test-getopt.c (main): Check POSIXLY_CORRECT first, to
1275         flush out BSD bug.
1276         * tests/test-getopt.h (test_getopt): End lists with NULL.
1277         * tests/test-getopt_long.h (test_getopt_long): Likewise.
1278         (test_getopt_long_posix): Enhance test.
1279         * modules/getopt-posix-tests (Depends-on): Add stdbool.
1280         * doc/glibc-functions/getopt_long.texi (getopt_long): Mention
1281         getopt-gnu.
1282         * doc/glibc-functions/getopt_long_only.texi (getopt_long_only):
1283         Likewise.
1284
1285 2009-11-27  Simon Josefsson  <simon@josefsson.org>
1286
1287         * modules/idpriv-droptemp-tests (Notice): Fix text.
1288
1289 2009-11-27  Jim Meyering  <meyering@redhat.com>
1290
1291         test-xalloc-die: avoid spurious failure due to libtool argv difference
1292         In a libtool-enabled project, this test would fail due to a difference
1293         in the emitted program name, e.g.,
1294         -test-xalloc-die: memory exhausted
1295         +/tmp/.../tests/.libs/lt-test-xalloc-die: memory exhausted
1296         Use program to avoid that.
1297         * modules/xalloc-die-tests (Depends-on): Add progname.
1298         * tests/test-xalloc-die.c: Include progname.h".
1299         (program_name): Remove decl.
1300         (main): Call set_program_name.
1301         * tests/test-xalloc-die.sh (compare): Remove unnecessary ${EXE}.
1302
1303 2009-11-26  Richard Jones  <rjones@redhat.com>
1304
1305         w32sock: leave win32 error in place.
1306         * lib/w32sock.h (set_winsock_errno): Do not call WSASetLastError.
1307
1308 2009-11-26  Eric Blake  <ebb9@byu.net>
1309
1310         init.sh: suggest to use skip_ and fail_ functions in comments
1311         * tests/init.sh: Add a sentence.
1312
1313 2009-11-25  Bruno Haible  <bruno@clisp.org>
1314
1315         init.sh: add documentation in comments
1316         * tests/init.sh: Add some developer and user documentation.
1317
1318 2009-11-26  Jim Meyering  <meyering@redhat.com>
1319
1320         init.sh: accommodate even those who specify bogus srcdir manually
1321         * tests/init.sh: Normally, srcdir is guaranteed by automake and
1322         configure-time tests to be sanitized, so that there is no need to
1323         use "$srcdir" in Makefile rules and shell scripts.  Using $srcdir
1324         (with no double quotes) suffices.  However, since tests may be
1325         invoked manually, and since you may explicitly set srcdir to the
1326         name of a directory containing spaces, do quote its uses here.
1327         * tests/test-pread.sh: Likewise.
1328         Suggested by Bruno Haible.
1329
1330         test-pread.sh: avoid diagnostics for those who ignore SIGPIPE
1331         * tests/test-pread.sh: Write no data into the pipe, because
1332         test-pread actually reads none.  This avoids a diagnostic,
1333         "bash: echo: write error: Broken pipe", that arises in the unusual
1334         event something is ignoring SIGPIPE, and might be interpreted
1335         as some sort of failure.  Reported by Bruno Haible.
1336
1337 2009-11-25  Jim Meyering  <meyering@redhat.com>
1338
1339         test-pread: cover failure with ESPIPE and EINVAL
1340         * tests/test-pread.c (main): Test for failure, too.
1341         * tests/test-pread.sh: Invoke with stdin on a pipe.
1342         Suggested by Eric Blake.
1343
1344         pread: improvement and fix
1345         * modules/pread (Depends-on): Depend on lseek, for portability to
1346         e.g., mingw.  Suggested by Eric Blake.
1347         * lib/pread.c (__libc_read): Define.  Reported by Richard W.M. Jones.
1348
1349         unistd.in.h: correct declaration of pread
1350         * lib/unistd.in.h: Correct type of "buf" parameter: void*, not char*
1351         Reported by Richard W.M. Jones.
1352
1353         test-pread.sh: distribute the test script
1354         * modules/pread-tests (Files): Include test-pread.sh.
1355
1356         test-pread.sh: clean up
1357         * tests/test-pread.sh: Don't refer to $builddir. Just use equivalent ".".
1358         * modules/pread-tests (TESTS_ENVIRONMENT): Don't export builddir.
1359         That is unnecessary, since it's always ".".
1360         Suggestion from Eric Blake.
1361
1362         test-pread.sh: make executable
1363         * tests/test-pread.sh: Set executable bit.
1364         Reported by Eric Blake.
1365
1366         correct typo in test-pread.sh
1367         * tests/test-pread.sh: Add #! line.
1368
1369         test pread
1370         * tests/test-pread.c: New file.
1371         * tests/test-pread.sh: Likewise.
1372         * modules/pread-tests: Likewise.
1373
1374         pread: new module
1375         * modules/pread: New file.
1376         * lib/unistd.in.h (pread): Define/declare.
1377         * lib/pread.c (pread): New file.
1378         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Define defaults.
1379         * modules/unistd (Makefile.am): Substitute witnesses.
1380         * doc/posix-functions/pread.texi (pread): Update.
1381         * MODULES.html.sh: Add pread.
1382
1383 2009-11-25  Jim Meyering  <meyering@redhat.com>
1384
1385         tests/init.sh: new file to be used via most *.sh tests
1386         * tests/init.sh: New file.
1387
1388 2009-11-25  Eric Blake  <ebb9@byu.net>
1389
1390         utimens: work around older Linux failure with symlinks
1391         * lib/utimens.c (lutimensat_works_really): New variable.
1392         (fdutimens, lutimens): Use it to manage kernels that support
1393         nanosecond times on files, but not on symlinks.
1394         Reported by OndÅ™ej Vašík.
1395
1396         utimes: fix configure grammar
1397         * m4/utimes.m4 (gl_FUNC_UTIMES): Delete spurious word.
1398
1399 2009-11-25  Paolo Bonzini  <bonzini@gnu.org>
1400
1401         regex: Fix fastmap for multibyte character ranges.
1402         * lib/regcomp.c (re_compute_fastmap_iter): Add all multibyte lead
1403         characters when a multibyte character range is included.
1404
1405 2009-11-22  Andy Wingo  <wingo@pobox.com>
1406
1407         version-etc: work also with AM_INIT_AUTOMAKE's no-define option
1408         * lib/version-etc.c [!defined PACKAGE]: Define to PACKAGE_TARNAME.
1409
1410 2009-11-24  Bruno Haible  <bruno@clisp.org>
1411
1412         doc: Most *_l functions exist in MacOS X 10.5.
1413         * doc/posix-functions/duplocale.texi: Update platforms list.
1414         * doc/posix-functions/freelocale.texi: Likewise.
1415         * doc/posix-functions/newlocale.texi: Likewise.
1416         * doc/posix-functions/uselocale.texi: Likewise.
1417         * doc/posix-functions/isalnum_l.texi: Likewise.
1418         * doc/posix-functions/isalpha_l.texi: Likewise.
1419         * doc/posix-functions/isblank_l.texi: Likewise.
1420         * doc/posix-functions/iscntrl_l.texi: Likewise.
1421         * doc/posix-functions/isdigit_l.texi: Likewise.
1422         * doc/posix-functions/isgraph_l.texi: Likewise.
1423         * doc/posix-functions/islower_l.texi: Likewise.
1424         * doc/posix-functions/isprint_l.texi: Likewise.
1425         * doc/posix-functions/ispunct_l.texi: Likewise.
1426         * doc/posix-functions/isspace_l.texi: Likewise.
1427         * doc/posix-functions/isupper_l.texi: Likewise.
1428         * doc/posix-functions/iswalnum_l.texi: Likewise.
1429         * doc/posix-functions/iswalpha_l.texi: Likewise.
1430         * doc/posix-functions/iswblank_l.texi: Likewise.
1431         * doc/posix-functions/iswcntrl_l.texi: Likewise.
1432         * doc/posix-functions/iswctype_l.texi: Likewise.
1433         * doc/posix-functions/iswdigit_l.texi: Likewise.
1434         * doc/posix-functions/iswgraph_l.texi: Likewise.
1435         * doc/posix-functions/iswlower_l.texi: Likewise.
1436         * doc/posix-functions/iswprint_l.texi: Likewise.
1437         * doc/posix-functions/iswpunct_l.texi: Likewise.
1438         * doc/posix-functions/iswspace_l.texi: Likewise.
1439         * doc/posix-functions/iswupper_l.texi: Likewise.
1440         * doc/posix-functions/iswxdigit_l.texi: Likewise.
1441         * doc/posix-functions/isxdigit_l.texi: Likewise.
1442         * doc/posix-functions/nl_langinfo_l.texi: Likewise.
1443         * doc/posix-functions/strcasecmp_l.texi: Likewise.
1444         * doc/posix-functions/strcoll_l.texi: Likewise.
1445         * doc/posix-functions/strfmon_l.texi: Likewise.
1446         * doc/posix-functions/strftime_l.texi: Likewise.
1447         * doc/posix-functions/strncasecmp_l.texi: Likewise.
1448         * doc/posix-functions/strxfrm_l.texi: Likewise.
1449         * doc/posix-functions/tolower_l.texi: Likewise.
1450         * doc/posix-functions/toupper_l.texi: Likewise.
1451         * doc/posix-functions/towctrans_l.texi: Likewise.
1452         * doc/posix-functions/towlower_l.texi: Likewise.
1453         * doc/posix-functions/towupper_l.texi: Likewise.
1454         * doc/posix-functions/wcscoll_l.texi: Likewise.
1455         * doc/posix-functions/wcsxfrm_l.texi: Likewise.
1456         * doc/posix-functions/wctrans_l.texi: Likewise.
1457         * doc/posix-functions/wctype_l.texi: Likewise.
1458         * doc/glibc-functions/strptime_l.texi: Likewise.
1459         * doc/glibc-functions/strtod_l.texi: Likewise.
1460         * doc/glibc-functions/strtof_l.texi: Likewise.
1461         * doc/glibc-functions/strtol_l.texi: Likewise.
1462         * doc/glibc-functions/strtold_l.texi: Likewise.
1463         * doc/glibc-functions/strtoll_l.texi: Likewise.
1464         * doc/glibc-functions/strtoul_l.texi: Likewise.
1465         * doc/glibc-functions/strtoull_l.texi: Likewise.
1466         * doc/glibc-functions/wcsftime_l.texi: Likewise.
1467         * doc/glibc-functions/wcstod_l.texi: Likewise.
1468         * doc/glibc-functions/wcstof_l.texi: Likewise.
1469         * doc/glibc-functions/wcstol_l.texi: Likewise.
1470         * doc/glibc-functions/wcstold_l.texi: Likewise.
1471         * doc/glibc-functions/wcstoll_l.texi: Likewise.
1472         * doc/glibc-functions/wcstoul_l.texi: Likewise.
1473         * doc/glibc-functions/wcstoull_l.texi: Likewise.
1474
1475 2009-11-24  Bruno Haible  <bruno@clisp.org>
1476
1477         duplocale: Fix logic bug.
1478         * lib/duplocale.c: Don't include <langinfo.h>.
1479         (_NL_LOCALE_NAME): Remove macro.
1480         (rpl_duplocale): Use setlocale instead of nl_langinfo.
1481         * tests/test-duplocale.c (main): Also test duplocale after uselocale.
1482
1483 2009-11-23  Jim Meyering  <meyering@redhat.com>
1484
1485         test-update-copyright: don't hard-code /usr/bin/perl
1486         * tests/test-update-copyright.sh (YEAR): Use date +%Y, rather than
1487         perl to print the current year.  Gilles Espinasse reported that
1488         the replaced use of perl was hard-coded as /usr/bin/perl.
1489
1490 2009-11-23  Bruno Haible  <bruno@clisp.org>
1491
1492         duplocale: Add support for glibc 2.3.x.
1493         * lib/duplocale.c (rpl_duplocale): Add fallback code for glibc 2.3.x.
1494
1495 2009-11-22  Bruno Haible  <bruno@clisp.org>
1496
1497         vasnprintf: Tiny optimization.
1498         * lib/vasnprintf.c (decimal_point_char): Choose the fast path also on
1499         MacOS X.
1500
1501 2009-11-22  Bruno Haible  <bruno@clisp.org>
1502
1503         Tests for module 'duplocale'.
1504         * modules/duplocale-tests: New file.
1505         * tests/test-duplocale.c: New file.
1506
1507         New module 'duplocale'.
1508         * m4/duplocale.m4: New file.
1509         * lib/locale.in.h (duplocale): New declaration.
1510         * lib/duplocale.c: New file.
1511         * m4/locale_h.m4 (gl_REPLACE_LOCALE_H, gl_LOCALE_MODULE_INDICATOR,
1512         gl_LOCALE_H_DEFAULTS): New macros.
1513         (gl_LOCALE_H): Require gl_LOCALE_H_DEFAULTS. Invoke
1514         gl_CHECK_NEXT_HEADERS unconditionally. Invoke gl_REPLACE_LOCALE_H.
1515         * modules/locale (Makefile.am): Substitute also GNULIB_DUPLOCALE,
1516         REPLACE_DUPLOCALE.
1517         * modules/duplocale: New file.
1518         * doc/posix-functions/duplocale.texi: Mention the glibc bug.
1519
1520 2009-11-22  Bruno Haible  <bruno@clisp.org>
1521
1522         * modules/locale-tests (configure.ac): Test for newlocale function.
1523         * tests/test-locale.c: When the system has extended locale functions,
1524         verify that <locale.h> defines locale_t and LC_GLOBAL_LOCALE.
1525
1526         locale: Make locale_t available when possible.
1527         * lib/locale.in.h: Include <xlocale.h> when it exists.
1528         * m4/locale_h.m4 (gl_LOCALE_H): Check for <xlocale.h> and arrange to
1529         replace <locale.h> if it does not define locale_t but <xlocale.h> does.
1530         * modules/locale (Depends-on): Add extensions.
1531         (Makefile.am): Also substitute HAVE_XLOCALE_H.
1532         * doc/posix-headers/locale.texi: Document the problem with locale_t.
1533
1534 2009-11-22  Bruno Haible  <bruno@clisp.org>
1535
1536         Add comments.
1537         * m4/dirent_h.m4 (gl_DIRENT_H): Add comment about gl_CHECK_NEXT_HEADERS
1538         invocation.
1539         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
1540         * m4/spawn_h.m4 (gl_SPAWN_H): Likewise.
1541         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
1542
1543 2009-11-22  Bruno Haible  <bruno@clisp.org>
1544
1545         error: account for the possibility of freopen (stdout).
1546         * lib/error.c: Include <unistd.h>.
1547         (flush_stdout): New function, extracted from error and error_at_line.
1548         Determine stdout's fd dynamically.
1549         (error, error_at_line): Invoke flush_stdout.
1550         * m4/error.m4 (gl_PREREQ_ERROR): Require AC_C_INLINE.
1551         * modules/error (Depends-on): Add unistd.
1552
1553 2009-11-22  Bruno Haible  <bruno@clisp.org>
1554
1555         diffseq: Add comment.
1556         * lib/diffseq.h (IF_LINT): Add comment about pitfall.
1557
1558 2009-11-22  Jim Meyering  <meyering@redhat.com>
1559
1560         c-stack: avoid defining an unused static function
1561         * lib/c-stack.c (find_stack_direction): Do not define this function
1562         when it will not be used.
1563
1564         diffseq: avoid spurious gcc warnings
1565         * lib/diffseq.h (IF_LINT2): Define.
1566         (compareseq): Use it to initialize two members of "part".
1567         This avoids two used-uninitialized warnings.
1568
1569 2009-11-21  Jim Meyering  <meyering@redhat.com>
1570
1571         c-stack: avoid "ignoring return value of `write'" warning
1572         * lib/c-stack.c: Include "ignore-value.h".
1573         (die): Explicitly ignore each write return value.
1574         * modules/c-stack (Depends-on): Add ignore-value.
1575
1576 2009-11-21  Bruno Haible  <bruno@clisp.org>
1577
1578         diffseq: reduce scope of variable 'best'.
1579         * lib/diffseq.h (diag) [USE_HEURISTIC]: Reduce scope of 'best'
1580         variable, earlier used for two different purposes.
1581
1582 2009-11-21  Jim Meyering  <meyering@redhat.com>
1583
1584         diffseq: remove useless assignment to "best"
1585         * lib/diffseq.h (diag) [USE_HEURISTIC]: Remove useless "best = 0"
1586         assignment.  At that point "best" is already guaranteed to be zero.
1587
1588 2009-11-20  Eric Blake  <ebb9@byu.net>
1589
1590         build: mention ftp redirector in release announcements
1591         * top/maint.mk (gnu_rel_host, url_dir_list): Provide defaults for
1592         values that used to come from cfg.mk; mention FTP redirect URL.
1593         * build-aux/announce-gen: Mention the mirror list.
1594         Suggested by Karl Berry.
1595
1596         nanosleep: improve port to mingw
1597         * lib/nanosleep.c (rpl_nanosleep): Reject invalid arguments.
1598         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Incorporate LIBSOCKET into
1599         LIB_NANOSLEEP, but only when needed.
1600         * modules/select (Link): Document LIBSOCKET.
1601         * m4/select.m4 (gl_FUNC_SELECT): Ensure LIBSOCKET is defined early
1602         enough.
1603
1604         nanosleep: work around cygwin bug
1605         * lib/nanosleep.c (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]:
1606         Fix logic bug when nanosleep fails.  Work around cygwin 1.5.x
1607         bug.
1608         (getnow): Delete, not needed.
1609         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): No longer require
1610         LIB_CLOCK_GETTIME.
1611         * modules/nanosleep (Depends-on): Add intprops and verify.  Drop
1612         clock-time, gettime.
1613         * doc/posix-functions/nanosleep.texi (nanosleep): Document the
1614         bug.
1615         * modules/nanosleep-tests: New test.
1616         * tests/test-nanosleep.c: New file.
1617
1618         sleep: work around cygwin bug
1619         * lib/sleep.c (rpl_sleep): Work around the bug.
1620         * m4/sleep.m4 (gl_FUNC_SLEEP): Detect the bug.
1621         (gl_PREREQ_SLEEP): Delete unused macro.
1622         * modules/sleep (Depends-on): Add verify.
1623         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add default.
1624         * modules/unistd (Makefile.am): Substitute witness.
1625         * lib/unistd.in.h (sleep): Update prototype.
1626         * doc/posix-functions/sleep.texi (sleep): Document the bug.
1627         * tests/test-sleep.c (main) [HAVE_DECL_ALARM]: Test it.
1628         * modules/sleep-tests (Depends-on): Check for alarm.
1629
1630 2009-11-20  Jim Meyering  <meyering@redhat.com>
1631
1632         maint.mk: improve sc_prohibit_magic_number_exit
1633         * top/maint.mk (sc_prohibit_magic_number_exit): Tighten regexp
1634         so it does not match uses like System.exit(1).
1635         Add comments showing how to correct all offenders.
1636
1637 2009-11-19  Eric Blake  <ebb9@byu.net>
1638
1639         xalloc-die-tests: add missing library
1640         * modules/xalloc-die-tests (Makefile.am): Add LDADD line.
1641
1642         test-xvasprintf: silence compiler warnings
1643         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Mask
1644         empty string from gcc.
1645
1646 2009-11-19  Jim Meyering  <meyering@redhat.com>
1647
1648         xfreopen: new module, from coreutils
1649         * modules/xfreopen: New module.
1650         * lib/xfreopen.c: New file.
1651         * lib/xfreopen.h: New file.
1652         * MODULES.html.sh (File stream based Input/Output"): Add it.
1653
1654 2009-11-19  Eric Blake  <ebb9@byu.net>
1655
1656         manywarnings: depend on warnings
1657         * modules/manywarnings (Depends-on): Add warnings.
1658
1659         build: avoid compiler warnings
1660         * lib/select.c (rpl_select): Delete unused variable.
1661         * lib/setsockopt.c (rpl_setsockopt): Avoid incompatible pointer.
1662
1663 2009-11-18  Eric Blake  <ebb9@byu.net>
1664
1665         tests: avoid false negative with --with-packager
1666         * tests/test-version-etc.sh: Discard packager information.
1667         * tests/test-argp-version-etc-1.sh: Likewise.
1668         Reported by Mike Frysinger.
1669
1670         utimens: fix regression on Solaris
1671         * m4/utimens.m4 (gl_UTIMENS): Check for BSD bug.
1672         * lib/utimens.c (fdutimens): Revert 2009-11-08 change; Solaris 10
1673         can only change fd timestamps via futimesat.  Instead, use an
1674         additional witness macro to avoid BSD bug.
1675         Reported by Jim Meyering.
1676
1677 2009-11-17  Eric Blake  <ebb9@byu.net>
1678
1679         usleep: use it to simplify tests
1680         * modules/stat-time-tests (Depends-on): Add usleep.
1681         (configure.ac): Drop usleep check.
1682         * modules/chown-tests (Depends-on, configure.ac): Likewise.
1683         * modules/lchown-tests (Depends-on, configure.ac): Likewise.
1684         * modules/fdutimensat-tests (Depends-on, configure.ac): Likewise.
1685         * modules/futimens-tests (Depends-on, configure.ac): Likewise.
1686         * modules/openat-tests (Depends-on, configure.ac): Likewise.
1687         * modules/utimens-tests (Depends-on, configure.ac): Likewise.
1688         * modules/utimensat-tests (Depends-on, configure.ac): Likewise.
1689         * modules/pipe-filter-gi-tests (Depends-on, configure.ac):
1690         Likewise.
1691         * tests/test-chown.h (nap): Rely on nicer usleep semantics.
1692         * tests/test-lchown.h (nap): Likewise.
1693         * tests/test-pipe-filter-gi2-main.c (small_nap): Likewise.
1694         * tests/test-stat-time.c (nap): Likewise.
1695         * tests/test-utimens-common.h (nap): Update comments.
1696
1697         usleep: new module
1698         * modules/usleep: New file.
1699         * m4/usleep.m4 (gl_FUNC_USLEEP): Likewise.
1700         * lib/usleep.c (usleep): Likewise.
1701         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add defaults.
1702         * modules/unistd (Makefile.am): Substitute witnesses.
1703         * lib/unistd.in.h (usleep): Add declaration.
1704         * doc/pastposix-functions/usleep.texi (usleep): Document this.
1705         * MODULES.html.sh (Date and time): Likewise.
1706         * modules/usleep-tests (Depends-on): New test.
1707         * tests/test-usleep.c: New file.
1708
1709         chown: work around OpenBSD bug
1710         * lib/chown.c (rpl_chown): Work around the bug.
1711         * lib/lchown.c (rpl_lchown): Attempt to do likewise.
1712         * m4/chown.m4 (gl_FUNC_CHOWN): Test for ctime bug.
1713         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check for lchmod.
1714         * modules/chown (Depends-on): Add stdbool.
1715         * modules/lchown (Depends-on): Likewise.
1716         * doc/posix-functions/chown.texi (chown): Document the bug.
1717         * doc/posix-functions/lchown.texi (lchown): Likewise.
1718         * tests/test-lchown.h (test_chown): Relax test.
1719
1720         mkstemp: avoid conflict with C++ keyword template
1721         * lib/mkdtemp.c (mkdtemp): Change spelling of template.
1722         * lib/mkostemp.c (mkostemp): Likewise.
1723         * lib/mkostemps.c (mkostemps): Likewise.
1724         * lib/mkstemp.c (mkstemp): Likewise.
1725         * lib/mkstemps.c (mkstemps): Likewise.
1726
1727         xalloc-die-tests: optimize
1728         * tests/test-xalloc-die.sh: Reduce number of processes.
1729
1730 2009-11-17  Simon Josefsson  <simon@josefsson.org>
1731
1732         * gnulib-tool: Support LGPLv3+ licenses in module files.  Tiny
1733         patch from ludo@gnu.org (Ludovic Courtès).
1734
1735 2009-11-17  Jim Meyering  <meyering@redhat.com>
1736
1737         version-etc: use proper license string
1738         * modules/version-etc (License): Use LGPL, not LGPLv3+.
1739         * modules/version-etc-fsf: Likewise.
1740
1741 2009-11-17  Simon Josefsson  <simon@josefsson.org>
1742
1743         * tests/test-xalloc-die.sh: Add license.  Check that nothing is
1744         printed to stdout.  Deal with EOL differences.
1745
1746 2009-11-17  Eric Blake  <ebb9@byu.net>
1747
1748         unsetenv: work around Solaris bug
1749         * m4/setenv.m4 (gl_FUNC_UNSETENV): Check for bug.
1750         * lib/unsetenv.c (rpl_unsetenv): Work around it.
1751         Reported by Jim Meyering.
1752
1753         vasnprintf: avoid compiler warnings
1754         * lib/vasnprintf.c (VASNPRINTF): Avoid shadowing our own local
1755         variables.
1756         * lib/printf-args.c (PRINTF_FETCHARGS): Avoid type mismatch.
1757
1758 2009-11-17  Simon Josefsson  <simon@josefsson.org>
1759
1760         * modules/xalloc-die-tests (Makefile.am): Drop XFAIL_TESTS
1761         settings since xalloc-die is no longer the self test,
1762         xalloc-die.sh is.
1763
1764 2009-11-17  Jim Meyering  <meyering@redhat.com>
1765
1766         test-xalloc-die.sh: make the code agree with the commit log
1767         * tests/test-xalloc-die.sh: Put "." at the front of $PATH, not
1768         at the end, just in case you happen to have a test-xalloc-die
1769         program in some other PATH directory.
1770
1771         test-xalloc-die.sh: fix a portability bug
1772         * tests/test-xalloc-die.sh: Do not invoke via ./test-xalloc-die.
1773         Instead, set PATH to start with "." and invoke via "test-xalloc-die".
1774         Otherwise, argv[0] (as often seen in diagnostics) would be too
1775         system-dependent, sometimes with, and sometimes without the leading "./".
1776
1777         version-etc-fsf: relax license to LGPLv3+
1778         * modules/version-etc-fsf (License): Relax license.
1779
1780 2009-11-16  Eric Blake  <ebb9@byu.net>
1781
1782         xalloc-die-tests: avoid printing null pointer
1783         * modules/xalloc-die-tests (Files, Makefile.am): Wrap execution in
1784         shell script.
1785         * tests/test-xalloc-die.c (program_name): Declare.
1786         * tests/test-xalloc-die.sh (tmpfiles): New file.
1787
1788         setenv, unsetenv: work around various bugs
1789         * lib/setenv.c (setenv) [!HAVE_SETENV]: Resync from glibc.
1790         (setenv) [HAVE_SETENV]: Work around bugs.
1791         * lib/unsetenv.c (unsetenv) [HAVE_UNSETENV]: Work around bugs.
1792         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE, gl_FUNC_UNSETENV): Check
1793         for bugs.
1794         (gl_FUNC_SETENV): Write in terms of gl_FUNC_SETENV_SEPARATE.
1795         * m4/environ.m4 (gl_ENVIRON): Avoid expand-before-require.
1796         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Update defaults.
1797         * modules/stdlib (Makefile.am): Update substitutions.
1798         * lib/stdlib.in.h (setenv, unsetenv): Update prototypes.
1799         * doc/posix-functions/setenv.texi (setenv): Document the bugs.
1800         * doc/posix-functions/unsetenv.texi (unsetenv): Likewise.
1801         * modules/setenv-tests: New test.
1802         * modules/unsetenv-tests: Likewise.
1803         * tests/test-setenv.c: New file.
1804         * tests/test-unsetenv.c: Likewise.
1805
1806 2009-11-16  Jim Meyering  <meyering@redhat.com>
1807
1808         version-etc: relax license to LGPLv3+
1809         * modules/version-etc (License): Relax license.
1810
1811         better AC_REQUIRE expanded-before-required-warning avoidance
1812         * m4/chown.m4 (gl_FUNC_CHOWN, gl_FUNC_CHOWN_FOLLOWS_SYMLINK): Define
1813         with AC_DEFUN_ONCE, rather than AC_DEFUN, to avoid AC_REQUIRE warnings.
1814         Suggested by Eric Blake.  This change also reverts commit 1b712ba8,
1815         which is no longer needed.
1816
1817 2009-11-16  Eric Blake  <ebb9@byu.net>
1818
1819         test-freading: clean up temporary file
1820         * tests/test-freading.c (main): Remove file on success, and use
1821         ASSERT more liberally.
1822         Reported by Jim Meyering.
1823
1824 2009-11-16  Jim Meyering  <meyering@redhat.com>
1825
1826         avoid new AC_REQUIRE expanded-before-required warnings
1827         * modules/chown (configure.ac): Require gl_FUNC_CHOWN, rather than
1828         merely using it.
1829         * modules/euidaccess (configure.ac): Likewise for gl_FUNC_EUIDACCESS.
1830         * modules/faccessat (configure.ac): Likewise for gl_FUNC_FACCESSAT.
1831
1832 2009-11-15  Simon Josefsson  <simon@josefsson.org>
1833
1834         * tests/test-xalloc-die.c: New file.
1835         * modules/xalloc-die-tests: New file.
1836         * gnulib-tool (func_emit_tests_Makefile_am): Also initialize
1837         XFAIL_TESTS so it can be appended by modules.
1838
1839 2009-11-15  Simon Josefsson  <simon@josefsson.org>
1840
1841         * lib/gc-pbkdf2-sha1.c: Remove comments from RFC 2898.  Reported
1842         by Vladimir 'phcoder' Serbinenko <phcoder@gmail.com>.
1843
1844 2009-11-14  Eric Blake  <ebb9@byu.net>
1845
1846         fnmatch: avoid compiler warning
1847         * lib/fnmatch_loop.c (NEW_PATTERN): Coerce addition to unsigned,
1848         to silence compiler warning about mismatch signedness in ?:.
1849         Reported by Robert Millan.
1850
1851         intprops: add double-inclusion guard
1852         * lib/intprops.h: Allow idempotent includes.
1853         Suggested by Bruce Korb.
1854
1855         openat: detect Solaris fchownat bug
1856         * lib/fchownat.c (rpl_fchownat): Work around Solaris bug.  Avoid
1857         penalizing glibc chownat when only lchownat is broken.
1858         * m4/openat.m4 (gl_FUNC_FCHOWNAT): Replace fchownat if there are
1859         trailing slash bugs.
1860         * doc/posix-functions/fchownat.texi (fchownat): Document the bug.
1861         * modules/openat-tests (Files): Include more files.
1862         (Depends-on): Add mgetgroups, sleep, stat-time.
1863         (configure.ac): Add additional checks.
1864         (Makefile.am): Build new test.
1865         * tests/test-fchownat.c: New file.
1866
1867         lchown: detect Solaris and FreeBSD bug
1868         * lib/lchown.c (rpl_lchown): Work around bug.
1869         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check for trailing slash bugs.
1870         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
1871         * modules/unistd (Makefile.am): Populate it.
1872         * lib/unistd.in.h (lchown): Update declaration.
1873         * doc/posix-functions/lchown.texi (lchown): Document the bug.
1874         * modules/lchown-tests: New file.
1875         * tests/test-lchown.h (test_lchown): Likewise.
1876         * tests/test-lchown.c (main): Likewise.
1877
1878         chown: detect Solaris and FreeBSD bug
1879         * lib/chown.c (rpl_chown): Work around bug.
1880         * m4/chown.m4 (gl_FUNC_CHOWN): Check for trailing slash bugs.
1881         (gl_PREREQ_CHOWN): Delete.
1882         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
1883         * modules/unistd (Makefile.am): Populate it.
1884         * lib/unistd.in.h (chown): Update declaration.
1885         * lib/lchown.c (chown): Update client.
1886         * modules/lchown (Depends-on): Add lstat.
1887         * doc/posix-functions/chown.texi (chown): Document the bug.
1888         * doc/posix-functions/getgroups.texi (getgroups): Document
1889         getgroups pitfall.
1890         * modules/chown-tests: New file.
1891         * tests/test-chown.h (test_chown): Likewise.
1892         * tests/test-chown.c (main): Likewise.
1893
1894 2009-11-14  Robert Millan  <rmh.grub@aybabtu.com>  (tiny change)
1895
1896         gnulib-tool: correctly detect absence of m4 directories
1897         * gnulib-tool: Avoid extra newline on data passed to wc -l.
1898
1899 2009-11-14  Jim Meyering  <meyering@redhat.com>
1900
1901         maint.mk: Prohibit inclusion of "xalloc.h" without use.
1902         * top/maint.mk (sc_prohibit_close_stream_without_use): New rule.
1903
1904 2009-11-14  John W. Eaton  <jwe@gnu.org>
1905
1906         strftime.h: wrap funtion declaration in extern "C" block
1907         * lib/strftime.h (nstrftime) [__cplusplus]: Wrap declaration.
1908
1909 2009-11-13  Eric Blake  <ebb9@byu.net>
1910
1911         getgroups: avoid compiler warning
1912         * lib/getgroups.c (rpl_getgroups): Delete shadowed variable.
1913
1914         getgroups: work around FreeBSD bug
1915         * lib/getgroups.c (rpl_getgroups): Work around the bug.
1916         * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Detect the bug.
1917         * doc/posix-functions/getgroups.texi (getgroups): Document it.
1918         * tests/test-getgroups.c (main): Fix buffer overrun.
1919
1920         getgroups: avoid compilation failure
1921         * lib/getgroups.c (includes): Include <stdint.h> for SIZE_MAX.
1922         * modules/getgroups (Depends-on): Add stdint.
1923
1924 2009-11-13  Jim Meyering  <meyering@redhat.com>
1925
1926         test-getgroups: avoid compilation failure
1927         * tests/test-getgroups.c: Include <stdint.h> for use of SIZE_MAX.
1928
1929 2009-11-13  Eric Blake  <ebb9@byu.net>
1930
1931         mgetgroups: new module, taken from coreutils
1932         * modules/mgetgroups: New file.
1933         * lib/mgetgroups.h: Likewise.
1934         * lib/mgetgroups.c (mgetgroups): Likewise.
1935         * m4/mgetgroups.m4 (gl_MGETGROUPS): Likewise.
1936         * MODULES.html.sh (Users and groups): Mention it.
1937
1938         getgroups: don't expose GETGROUPS_T to user
1939         * lib/getgroups.c (rpl_getgroups): Change signature.  Copy array
1940         an element at a time if GETGROUPS_T is wrong size.
1941         * lib/getugroups.h (getugroups): Change signature.
1942         * lib/unistd.in.h (getgroups): Likewise.
1943         * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Use replacement if
1944         signature needs fixing.
1945         * m4/getugroups.m4 (gl_GETUGROUPS): No longer need
1946         AC_TYPE_GETGROUPS.
1947         * modules/group-member (Depends-on): Add getgroups.
1948         * lib/group-member.c (group_info, get_group_info): Use gid_t.
1949         (group_member): Rely on getgroups replacement.
1950         * lib/getugroups.c (getugroups): Use gid_t.
1951         * tests/test-getgroups.c (main): Likewise.
1952         * NEWS: Mention the signature change.
1953         * doc/posix-functions/getgroups.texi (getgroups): Mention the
1954         problem with signature.
1955         * doc/glibc-functions/setgroups.texi (setgroups): Mention that
1956         GETGROUPS_T is still useful for setgroups.
1957
1958         getgroups, getugroups: provide stubs for mingw
1959         * lib/getgroups.c (getgroups): Provide ENOSYS stub for mingw.
1960         * lib/getugroups.c (getugroups): Likewise.
1961         * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Check for missing
1962         function.  Modernize replacement scheme.
1963         (gl_PREREQ_GETGROUPS): Delete.
1964         * m4/getugroups.m4 (gl_GETUGROUPS): Check for <grp.h>.
1965         * modules/getgroups (configure.ac): Declare witness.
1966         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add default.
1967         * modules/unistd (Depends-on): Substitute witness.
1968         * lib/unistd.in.h (getgroups): Declare replacement.
1969
1970         getgroups: avoid calling exit
1971         * modules/getgroups (Depends-on): Add malloc-posix and unistd,
1972         drop xalloc.
1973         * modules/getgroups-tests (Depends-on, Makefile.am): Drop unneeded
1974         dependencies.
1975         * lib/getgroups.c (rpl_getgroups): Fail with ENOMEM rather than
1976         exiting, in the rare case of malloc failure.
1977
1978         getgroups: fix logic error
1979         * lib/getgroups.c (rpl_getgroups): Don't fail if current process
1980         has more than 20 groups.
1981         * modules/getgroups-tests: New test.
1982         * tests/test-getgroups.c: New file.
1983
1984 2009-11-13  Simon Josefsson  <simon@josefsson.org>
1985
1986         * tests/test-base64.c: Improve.
1987
1988 2009-11-13  Simon Josefsson  <simon@josefsson.org>
1989
1990         * tests/test-xvasprintf.c: Fix memory leak, suggested by Eric
1991         Blake <ebb9@byu.net>.
1992
1993 2009-11-13  Simon Josefsson  <simon@josefsson.org>
1994
1995         * tests/test-xvasprintf.c: Add %s%s related checks.
1996
1997 2009-11-12  Eric Blake  <ebb9@byu.net>
1998
1999         version-etc: match standards.texi style
2000         * lib/version-etc.c (emit_bug_reporting_address): Drop periods,
2001         and use <> only for URLs.
2002
2003 2009-11-10  Kamil Dudka  <kdudka@redhat.com>
2004
2005         fts: do not fail on a submount during traversal
2006         * lib/fts.c (fts_build): Read the stat info again after opening
2007         a directory if the FTS_TIGHT_CYCLE_CHECK flag is set.
2008         Original report at http://bugzilla.redhat.com/501848.
2009
2010 2009-11-12  Jim Meyering  <meyering@redhat.com>
2011
2012         bootstrap: sync from coreutils
2013         * build-aux/bootstrap (bootstrap_epilogue): New function.
2014         Use git_modules_config in one more place.  This make bootstrap's
2015         --gnulib-srcdir option more useful for testing.
2016
2017         bootstrap: generalize autoheader check
2018         * build-aux/bootstrap: Look for AC_CONFIG_HEADER as well as
2019         AC_CONFIG_HEADERS.
2020
2021 2009-11-11  Eric Blake  <ebb9@byu.net>
2022
2023         mkfifoat: use new modules for Solaris and BSD bugs
2024         * m4/mkfifoat.m4 (gl_FUNC_MKFIFOAT): Simplify.
2025         * lib/mkfifoat.c (mknodat): Split...
2026         * lib/mknodat.c (mknodat): ...into new file.
2027         * modules/mkfifoat (Files): Ship new file.
2028         (Depends-on): Add mkfifo, mknod.
2029         * modules/mkfifoat-tests (Files): Reuse mkfifo tests.
2030         (Depends-on): Add symlink.
2031         * tests/test-mkfifoat.c (main): Enhance test.  Drop portions now
2032         redundant with test_mkfifo.h.
2033         (do_mkfifoat, do_mknodat): New helpers.
2034
2035         mknod: new module
2036         * modules/mknod: New file.
2037         * m4/mknod.m4 (gl_FUNC_MKNOD): Likewise.
2038         * lib/mknod.c (mknod): Likewise.
2039         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Set witness
2040         defaults.
2041         * modules/sys_stat (Makefile.am): Substitute them.
2042         * lib/sys_stat.in.h (mknod): Declare replacement.
2043         * MODULES.html.sh (Support for systems lacking POSIX:2008):
2044         Document it.
2045         * doc/posix-functions/mknod.texi (mknod): Likewise.
2046         * modules/mknod-tests: New test.
2047         * tests/test-mknod.c: Likewise.
2048
2049         mkfifo: new module
2050         * modules/mkfifo: New file.
2051         * m4/mkfifo.m4 (gl_FUNC_MKFIFO): Likewise.
2052         * lib/mkfifo.c (mkfifo): Likewise.
2053         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Set witness
2054         defaults.
2055         * modules/sys_stat (Makefile.am): Substitute them.
2056         * lib/sys_stat.in.h (mkfifo): Declare replacement.
2057         * MODULES.html.sh (Support for systems lacking POSIX:2008):
2058         Document it.
2059         * doc/posix-functions/mkfifo.texi (mkfifo): Likewise.
2060         * modules/mkfifo-tests: New test.
2061         * tests/test-mkfifo.h (test_mkfifo): New file, borrowed in part
2062         from test-mkfifoat.c.
2063         * tests/test-mkfifo.c: New file.
2064
2065         readlink: detect FreeBSD bug
2066         * m4/readlink.m4 (gl_FUNC_READLINK): Also detect FreeBSD bug with
2067         slash on symlink.
2068         * doc/posix-functions/readlink.texi (readlink): Document the bug.
2069         * tests/test-readlink.h (test_readlink): Enhance test.
2070
2071         symlink: detect FreeBSD bug
2072         * m4/symlink.m4 (gl_FUNC_SYMLINK): Also detect FreeBSD bug with
2073         slash on symlink.
2074         * doc/posix-functions/symlink.texi (symlink): Document the bug.
2075         * tests/test-symlink.h (test_symlink): Enhance test.
2076
2077 2009-11-10  Eric Blake  <ebb9@byu.net>
2078
2079         link: detect FreeBSD bug
2080         * m4/link.m4 (gl_FUNC_LINK): Also detect FreeBSD bug with slash on
2081         symlink.
2082         * doc/posix-functions/link.texi (link): Document the bug.
2083         * tests/test-link.h (test_link): Enhance test.
2084         * tests/test-linkat.c (main): Update caller.
2085
2086         unlink, remove: detect FreeBSD bug
2087         * m4/unlink.m4 (gl_FUNC_UNLINK): Also detect FreeBSD bug with
2088         slash on symlink.
2089         * doc/posix-functions/unlink.texi (unlink): Document the bug.
2090         * doc/posix-functions/remove.texi (remove): Likewise.
2091         * tests/test-unlink.h (test_unlink): Enhance test.
2092         * tests/test-remove.c (main): Likewise.
2093
2094 2009-11-09  Eric Blake  <ebb9@byu.net>
2095
2096         rename: detect FreeBSD bug
2097         * m4/rename.m4 (gl_FUNC_RENAME): Also detect FreeBSD bug with
2098         slash on symlink.
2099         * modules/renameat-tests (Depends-on): Add filenamecat.
2100         * tests/test-rename.h (test_rename): Allow one more errno.
2101         * tests/test-renameat.c (main): Likewise.
2102         * doc/posix-functions/rename.texi (rename): Document the bug.
2103
2104         open: detect FreeBSD bug
2105         * m4/open.m4 (gl_FUNC_OPEN): Also detect FreeBSD bug with slash on
2106         symlink.
2107         * doc/posix-functions/open.texi (open): Document the bug.
2108         * doc/posix-functions/utimes.texi (utimes): Likewise.
2109         * tests/test-open.h (test_open): Add parameters, and test symlink
2110         handling.
2111         * tests/test-open.c (main): Adjust caller.
2112         * tests/test-fcntl-safer.c (main): Likewise.
2113         * modules/open-tests (Depends-on): Add stdbool, symlink.
2114         * modules/fcntl-safer-tests (Depends-on): Likewise.
2115         * tests/test-openat.c (main): Add test-open tests.
2116
2117         stat: detect FreeBSD bug
2118         * m4/stat.m4 (gl_FUNC_STAT): Also detect FreeBSD bug with slash on
2119         symlink.
2120         * doc/posix-functions/stat.texi (stat): Document the bug.
2121         * tests/test-stat.h (test_stat_func): Add argument.
2122         * tests/test-stat.c (main): Adjust caller.
2123         * tests/test-fstatat.c (main): Likewise.
2124         * modules/stat-tests (Depends-on): Add stdbool, symlink.
2125         Reported by Jim Meyering.
2126
2127 2009-11-09  James Youngman  <jay@gnu.org>
2128
2129         strftime.c: include ignore-value.h only when FPRINTFTIME is defined
2130         * lib/strftime.c: Correct placement of #include "ignore-value.h".
2131
2132 2009-11-08  Jim Meyering  <meyering@redhat.com>
2133
2134         utimens: remove invalid futimesat call
2135         * lib/utimens.c (fdutimens): Remove invalid futimesat call.
2136         It used the file descriptor of the target file as the DIR_FD
2137         parameter and NULL as the file name.  That caused failure with
2138         errno == EFAULT on FreeBSD-8.0-rc2
2139
2140 2009-11-07  Eric Blake  <ebb9@byu.net>
2141
2142         fflush, freadseek: use fseeko, not fseek
2143         * lib/fflush.c (clear_ungetc_buffer_preserving_position)
2144         (clear_ungetc_buffer): Avoid potential problems on large files.
2145         * lib/freadseek.c (freadseek): Likewise.
2146         * modules/freadseek (Depends-on): Add fseeko.
2147         * modules/fseek (configure.ac): Set a witness.
2148         * tests/test-fflush.c (main): Use fseeko.
2149         * tests/test-fpurge.c (fseek): Disable link warning.
2150         * tests/test-freadable.c (fseek): Likewise.
2151         * tests/test-freading.c (fseek): Likewise.
2152         * tests/test-fseeko.c (fseek): Likewise.
2153         * tests/test-ftell.c (fseek): Likewise.
2154         * tests/test-ftello.c (fseek): Likewise.
2155         * tests/test-fwritable.c (fseek): Likewise.
2156         * tests/test-fwriting.c (fseek): Likewise.
2157
2158 2009-11-06  Simon Josefsson  <simon@josefsson.org>
2159
2160         * modules/memchr (Depends-on): Drop getpagesize dependency.
2161
2162 2009-11-06  Simon Josefsson  <simon@josefsson.org>
2163
2164         * build-aux/pmccabe2html: Disable execute bit.  Suggested by
2165         Reported by Ludovic Courtès.
2166         * build-aux/pmccabe2html: Improve example usage.
2167         * build-aux/pmccabe2html: Drop #! header.  Doc fix.
2168
2169 2009-11-06  Jim Meyering  <meyering@redhat.com>
2170
2171         do-release-commit-and-tag: New module.
2172         Automate the release-commit and tag process.
2173         * build-aux/do-release-commit-and-tag: New script, from coreutils.
2174         * modules/do-release-commit-and-tag: New file.
2175         * MODULES.html.sh (Support for maintaining and releasing): Add it.
2176
2177 2009-11-06  Simon Josefsson  <simon@josefsson.org>
2178
2179         * modules/select-tests (test_select_LDADD): Add $(INET_PTON_LIB)
2180         because test-select.c uses inet_pton.
2181
2182 2009-11-06  Simon Josefsson  <simon@josefsson.org>
2183
2184         * m4/getaddrinfo.m4: Add content of INET_NTOP_LIB to
2185         GETADDRINFO_LIB.  Bump serial number.
2186         * modules/getaddrinfo (Link): Only mention GETADDRINFO_LIB again.
2187         Suggested by Eric Blake <ebb9@byu.net>.
2188
2189 2009-11-05  Eric Blake  <ebb9@byu.net>
2190
2191         strtod: detect darwin bug
2192         * m4/strtod.m4 (gl_FUNC_STRTOD): Filter out darwin bug on "nan(".
2193         Reported by Leo Davis.
2194
2195         freopen-safer: new module
2196         * modules/freopen-safer: New module.
2197         * m4/stdio-safer.m4 (gl_FREOPEN_SAFER): New macro.
2198         * lib/freopen-safer.c (freopen_safer): New file.
2199         * lib/stdio-safer.h (freopen_safer): New declaration.
2200         * lib/stdio--.h (freopen): New override.
2201         * MODULES.html.sh (File stream based Input/Output): Mention it.
2202         * doc/posix-functions/freopen.texi (freopen): Mention pitfalls and
2203         freopen-safer module.
2204         * doc/posix-functions/stderr.texi (stderr): Likewise.
2205         * doc/posix-functions/stdin.texi (stdin): Likewise.
2206         * doc/posix-functions/stdout.texi (stdout): Likewise.
2207         * modules/freopen-safer-tests: New test.
2208         * tests/test-reopen-safer.c: New file.
2209
2210 2009-11-05  Jim Meyering  <meyering@redhat.com>
2211
2212         maint.mk: Prohibit inclusion of "close-stream.h" without use.
2213         * top/maint.mk (sc_prohibit_close_stream_without_use): New rule.
2214
2215 2009-11-05  Simon Josefsson  <simon@josefsson.org>
2216
2217         * modules/pmccabe2html (configure.ac): Check for pmccabe tool.
2218
2219 2009-11-05  Simon Josefsson  <simon@josefsson.org>
2220
2221         * modules/getaddrinfo (Link): Add $(INET_NTOP_LIB).
2222
2223 2009-11-05  Simon Josefsson  <simon@josefsson.org>
2224
2225         Fix link error.
2226         * m4/inet_ntop.m4 (gl_INET_NTOP): Fix test of AC_SEARCH_LIBS result.
2227         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
2228
2229 2009-11-05  Simon Josefsson  <simon@josefsson.org>
2230
2231         * tests/test-func.c: Also test value of __func__.
2232
2233 2009-11-05  Simon Josefsson  <simon@josefsson.org>
2234
2235         * tests/test-sys_socket.c: Use smaller constant value, sa_family_t
2236         may be an 8-bit type.  Reported by Bruno Haible <bruno@clisp.org>.
2237
2238 2009-11-05  Bruno Haible  <bruno@clisp.org>
2239
2240         Fix link error.
2241         * m4/inet_ntop.m4 (gl_INET_NTOP): Fix test of AC_SEARCH_LIBS result.
2242         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
2243         Reported by Brad Hards <bradh@frogmouth.net> via Simon Josefsson.
2244
2245 2009-11-05  Bruno Haible  <bruno@clisp.org>
2246
2247         Tests for module 'inet_pton'.
2248         * modules/inet_pton-tests: New file.
2249         * tests/test-inet_pton.c: New file.
2250
2251 2009-11-05  Bruno Haible  <bruno@clisp.org>
2252
2253         Tests for module 'inet_ntop'.
2254         * modules/inet_ntop-tests: New file.
2255         * tests/test-inet_ntop.c: New file.
2256
2257 2009-11-04  Eric Blake  <ebb9@byu.net>
2258
2259         stdlib-safer: wrap all mkstemp variants
2260         * modules/mkostemp (configure.ac): Set witness.
2261         * modules/mkostemps (configure.ac): Likewise.
2262         * modules/mkstemps (configure.ac): Likewise.
2263         * lib/stdlib-safer.h (mkostemp_safer, mkostemps_safer)
2264         (mkstemps_safer): Wrap more functions.
2265         * lib/stdlib--.h (mkostemp, mkostemps, mkstemps): Default the
2266         wrapping.
2267         * lib/mkstemp-safer.c (mkostemp_safer, mkostemps_safer)
2268         (mkstemps_safer): Implement the wrappers.
2269
2270         mkstemps, mkostemps: new modules
2271         * modules/mkostemps: New module.
2272         * modules/mkstemps: Likewise.
2273         * lib/mkostemps.c (mkostemps): New file.
2274         * lib/mkstemps.c (mkstemps): Likewise.
2275         * m4/mkostemps.m4 (gl_FUNC_MKOSTEMPS): Likewise.
2276         * m4/mkstemps.m4 (gl_FUNC_MKSTEMPS): Likewise.
2277         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Add witnesses.
2278         * modules/stdlib (Makefile.am): Substitute them.
2279         * lib/stdlib.in.h (mkostemps, mkstemps): Declare them.
2280         * doc/glibc-functions/mkstemps.texi (mkstemps): New file.
2281         * doc/glibc-functions/mkostemps.texi (mkostemps): Likewise.
2282         * doc/gnulib.texi (Glibc stdlib.h): Include them.
2283         * MODULES.html.sh (File system functions): Mention them.
2284
2285         tempname: resync from glibc
2286         * lib/tempname.c (__gen_tempname): Add suffixlen argument.  Use
2287         same values for __GT_FILE as glibc.  Abort even when assertions
2288         are disabled.
2289         * lib/tempname.h (GT_FILE): Use glibc __GT_FILE, if available, and
2290         match its value otherwise.  Allow idempotent inclusion.
2291         * lib/mkdtemp.c (mkdtemp): Adjust caller.
2292         * lib/mkostemp.c (mkostemp): Likewise.
2293         * lib/mkstemp.c (mkstemp): Likewise.
2294         * lib/tmpfile.c (tmpfile): Likewise.
2295         * NEWS: Document this.
2296
2297         utimens: fix use of futimens on older Linux
2298         * lib/utimens.c (fdutimens): Use updated, rather than original,
2299         timespec to avoid bug in older Linux kernel.
2300         Reported by Simon Josefsson.
2301
2302 2009-11-04  Bruno Haible  <bruno@clisp.org>
2303
2304         Make num_processors more flexible and consistent.
2305         * lib/nproc.h (enum nproc_query): New type.
2306         (num_processors): Add a 'query' argument.
2307         * lib/nproc.c: Include <stdlib.h>, <sched.h>, c-ctype.h.
2308         (num_processors): Add a 'query' argument. Test the value of the
2309         OMP_NUM_THREADS environment variable if requested. On Linux, NetBSD,
2310         mingw, count the number of CPUs available for the current process.
2311         * m4/nproc.m4 (gl_PREREQ_NPROC): Require AC_USE_SYSTEM_EXTENSIONS.
2312         Check for sched_getaffinity and sched_getaffinity_np.
2313         * modules/nproc (Depends-on): Add c-ctype, extensions.
2314         * NEWS: Mention the change.
2315
2316 2009-11-03  Bruno Haible  <bruno@clisp.org>
2317
2318         * NEWS: Document the new library dependencies of inet_ntop, inet_pton.
2319
2320 2009-11-03  Jim Meyering  <meyering@redhat.com>
2321
2322         test-getaddrinfo: avoid compilation failure on FreeBSD 7.2
2323         * tests/test-getaddrinfo.c (simple): Test for EAI_NODATA only
2324         if it is defined.
2325
2326 2009-11-02  Eric Blake  <ebb9@byu.net>
2327
2328         mktime, timegm: share common declaration
2329         * lib/mktime-internal.h: New file.
2330         * lib/mktime.c: Use it rather than open-coding a declaration.
2331         * lib/timegm.c: Likewise.
2332         * modules/mktime (Files): Ship it.
2333         * modules/timegm (Files): Likewise.
2334         Suggested by Bruno Haible.
2335
2336         test-update-copyright: update test to match script changes
2337         * tests/test-update-copyright.sh: Avoid hard-coding perl
2338         location.  Don't update *.bak created by earlier runs.
2339
2340 2009-11-02  Paul Eggert  <eggert@cs.ucla.edu>
2341             Simon Josefsson  <simon@josefsson.org>
2342             Bruno Haible  <bruno@clisp.org>
2343
2344         Fix link error on Solaris 8.
2345         * m4/inet_pton.m4 (gl_INET_PTON): Search for the function inet_pton
2346         also in libnsl. Define also INET_PTON_LIB.
2347         * modules/inet_pton (Link): New section.
2348
2349 2009-11-02  Simon Josefsson  <simon@josefsson.org>
2350             Bruno Haible  <bruno@clisp.org>
2351
2352         * m4/inet_ntop.m4 (gl_INET_NTOP): Define also INET_NTOP_LIB.
2353         * modules/inet_ntop (Link): New section.
2354         Reported by Boyan Kasarov <bkasarov@gmail.com>.
2355
2356 2009-11-02  Eric Blake  <ebb9@byu.net>
2357
2358         maint: avoid compiler warnings in m4 macros
2359         * m4/ungetc.m4 (gl_FUNC_UNGETC_WORKS): Avoid unused variable.
2360         * m4/rmdir.m4 (gl_FUNC_RMDIR): Include correct header.
2361
2362 2009-11-02  Simon Josefsson  <simon@josefsson.org>
2363
2364         * m4/pmccabe2html.m4: Remove file.
2365         * modules/pmccabe2html: Drop pmccabe2html.m4.  Don't call m4
2366         function.  Change maintainer.
2367         * build-aux/pmccabe2html: Use /bin/sh with magic instead of
2368         hard-coding path to awk.  Tiny patch from ludo@gnu.org (Ludovic
2369         Courtès).
2370
2371 2009-10-31  Eric Blake  <ebb9@byu.net>
2372
2373         fseeko: fix m4 regression
2374         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Use modern macro.  Fixes
2375         regression from 2009-10-27.
2376         Reported by Ralf Wildenhues.
2377
2378 2009-10-31  Jim Meyering  <meyering@redhat.com>
2379
2380         inttostr: aesthetics and improved (compile-time) safety
2381         Define inttype_is_signed rather than inttype_is_unsigned,
2382         since the sole use is via "#if inttype_is_signed".
2383         * lib/imaxtostr.c (inttype_is_signed): Define this, rather than
2384         inttype_is_unsigned.
2385         * lib/offtostr.c (inttype_is_signed): Likewise.
2386         * lib/uinttostr.c (inttype_is_signed): Likewise.
2387         * lib/umaxtostr.c (inttype_is_signed): Likewise.
2388         * lib/inttostr.c (inttostr): Use verify to cross-check the
2389         inttype_is_signed value and the signedness of the actual type.
2390         * modules/inttostr (Depends-on): Add verify.
2391
2392 2009-10-30  Eric Blake  <ebb9@byu.net>
2393
2394         build: avoid compiler warnings
2395         * lib/fchmodat.c (lchmod): Mark unused variables.
2396         * lib/getopt.c (_getopt_initialize): Likewise.
2397         * lib/mktime.c (__mktime_internal): Provide prototype.
2398         * lib/inttostr.c (inttostr): Avoid compiler warning even with
2399         older gcc that do not understand #pragma GCC diagnostic.
2400         * lib/uinttostr.c (inttype_is_unsigned): Define.
2401         * lib/umaxtostr.c (inttype_is_unsigned): Likewise.
2402
2403 2009-10-30  Michael Haubenwallner  <michael.haubenwallner@salomon.at>
2404
2405         stat: fix compilation on AIX
2406         * lib/sys_stat.in.h (stat): Work with fact that large files on AIX
2407         only see struct stat64.
2408
2409 2009-10-30  Eric Blake  <ebb9@byu.net>
2410
2411         exclude: make more robust
2412         * lib/exclude.c (excluded_file_name): Abort on unexpected value,
2413         rather than masking a coding bug.
2414         Suggested by Bruno Haible.
2415
2416 2009-10-30  Jim Meyering  <meyering@redhat.com>
2417
2418         perl scripts: remove #!/usr/bin/perl in favor of more portable...
2419         Rather than putting #!/usr/bin/perl on the first line,
2420         start with a variant of what's recommended by "man perlrun" that
2421         invokes the first "perl" program from your shell's search path.
2422         * build-aux/gitlog-to-changelog: Replace #!... as above.
2423         Add a "Local Variables" perl mode setting.
2424         Prompted by a patch from Ludovic Courtès.
2425         Improved by Eric Blake.
2426         * build-aux/useless-if-before-free: Likewise.
2427         * build-aux/announce-gen: Likewise.
2428         * build-aux/update-copyright: Likewise.
2429
2430 2009-10-29  Eric Blake  <ebb9@byu.net>
2431
2432         filenamecat-lgpl: adjust clients
2433         * modules/linkat (Depends-on): Use filenamecat-lgpl, not
2434         filenamecat.
2435         * modules/renameat (Depends-on): Likewise.
2436
2437         filenamecat: split into filenamecat-lgpl
2438         * modules/filenamecat-lgpl: New module.
2439         * modules/filenamecat (Files): Move library-safe files into
2440         filenamecat-lgpl.
2441         (Depends-on): Add filenamecat-lgpl.
2442         (configure.ac): Declare witness.
2443         * lib/filenamecat.h (file_name_concat): Only declare when using
2444         GPL module.
2445         * lib/filenamecat.c (longest_relative_suffix, mfile_name_concat):
2446         Move...
2447         * lib/filenamecat-lgpl.c: ...into new file.
2448         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT_LGPL): New macro.
2449         (gl_FILE_NAME_CONCAT): Use it.
2450         * MODULES.html.sh (File system functions): Mention new module.
2451
2452         argp: avoid memory leak
2453         * modules/argp (Depends-on): Use dirname-lgpl, not dirname.
2454         * lib/argp-namefrob.h (__argp_base_name): Use last_component, not
2455         base_name, since the latter malloc()s and can call exit().
2456         Leak introduced 2006-07-03.
2457
2458         dirname-lgpl: adjust clients that don't need full dirname
2459         * modules/backupfile (Depends-on): Use dirname-lgpl, not dirname.
2460         * modules/filenamecat (Depends-on): Likewise.
2461         * modules/linkat (Depends-on): Likewise.
2462         * modules/mkancesdirs (Depends-on): Likewise.
2463         * modules/mkdir (Depends-on): Likewise.
2464         * modules/openat (Depends-on): Likewise.
2465         * modules/savewd (Depends-on): Likewise.
2466         * modules/rename (Depends-on): Likewise.
2467         (License): Relax license.
2468         * modules/mkdir-tests (Depends-on): Drop progname.
2469         (Makefile.am): Delete unneeded LDADD.
2470         * modules/rename-tests (Depends-on, Makefile.am): Likewise.
2471
2472         dirname: split into dirname-lgpl
2473         * modules/dirname-lgpl: New module.
2474         * modules/dirname (Files): Move library-safe files into
2475         dirname-lgpl.
2476         (Depends-on): Add dirname-lgpl.
2477         (configure.ac): Declare witness.
2478         * modules/double-slash-root (License): Relax license.
2479         * lib/dirname.h (base_name, dir_name): Only declare when using GPL
2480         module.
2481         * lib/dirname.c (dir_len, mdir_name): Move...
2482         * lib/dirname-lgpl.c: ...into new file.
2483         * lib/basename.c (last_component, base_len): Move...
2484         * lib/basename-lgpl.c: ...into new file.
2485         * m4/dirname.m4 (gl_DIRNAME_LGPL): New macro.
2486         (gl_DIRNAME): Use it.
2487         * MODULES.html.sh (Enhancements for POSIX:2008 functions):
2488         Mention new module.
2489         * modules/dirname-tests (Depends-on): Add progname.
2490         * tests/test-dirname.c (program_name): Delete.
2491
2492         mkdir: make safe for libraries
2493         * modules/mkdir (Depends-on): Drop xalloc.
2494         * lib/mkdir.c (rpl_mkdir): Fail with ENOMEM rather than calling
2495         exit.
2496
2497         tests: avoid some compiler warnings
2498         * tests/test-getaddrinfo.c (simple): Mark static, and allow string
2499         literals.
2500         * tests/test-memchr.c (main): Avoid type mismatch.
2501         * tests/test-arpa_inet.c (main): Avoid unused parameters.
2502         * tests/test-base64.c (main): Likewise.
2503         * tests/test-getdelim.c (main): Likewise.
2504         * tests/test-gethostname.c (main): Likewise.
2505         * tests/test-getline.c (main): Likewise.
2506         * tests/test-netinet_in.c (main): Likewise.
2507         * tests/test-select.c (open_server_socket, main): Likewise.
2508         * tests/test-select-stdin.c (main): Likewise.
2509         * tests/test-sockets.c (main): Likewise.
2510         * tests/test-strsignal.c (main): Likewise.
2511         * tests/test-sys_select.c (main): Likewise.
2512         * tests/test-sys_socket.c (main): Likewise.
2513         * tests/test-u64.c (main): Likewise.
2514         * tests/test-xfprintf-posix.c (main): Likewise.
2515         * tests/test-xvasprintf.c (test_xvasprintf, main): Likewise.
2516
2517         sockets: avoid compiler warning
2518         * lib/sockets.c (gl_sockets_startup): Mark unused parameter.
2519
2520         maint: detect usage(1) and other suspicious exits
2521         * top/maint.mk (sc_prohibit_magic_number_exit): New rule.
2522
2523 2009-10-29  Jim Meyering  <meyering@redhat.com>
2524
2525         timespec: long-to-int truncation could make timespec_cmp malfunction
2526         * lib/timespec.h (timespec_cmp): Do not interpret a difference of
2527         a multiple of 2^32 nanoseconds as no difference.
2528
2529 2009-10-28  Jim Meyering  <meyering@redhat.com>
2530
2531         fprintftime: wrap macro code argument in "do {...} while(0)"
2532         * lib/strftime.c (cpy) [FPRINTFTIME]: The second argument to the
2533         cpy macro must be a statement that can be followed by a semicolon.
2534         Now that the else clause contains a comment and is hence longer
2535         than one line, I require curly braces.  That in turn requires
2536         that we wrap this code block in the standard do...while(0).
2537
2538         fprintftime: remove stray semicolon from previous change
2539         * lib/strftime.c (cpy) [FPRINTFTIME]: Remove trailing semicolon.
2540
2541         fprintftime: avoid a warning about ignored fwrite return value
2542         * lib/strftime.c [FPRINTFTIME]: Include "ignore-value.h".
2543         (cpy) [FPRINTFTIME]: Ignore fwrite failure, even though technically,
2544         that is unsafe.
2545         * modules/fprintftime (Depends-on): Add ignore-value.
2546
2547         exclude: avoid an unwarranted warning
2548         * lib/exclude.c (excluded_file_name): Initialize "rc" before switch.
2549
2550 2009-10-27  Eric Blake  <ebb9@byu.net>
2551
2552         fseek: avoid compilation failure when fflush is replaced
2553         * m4/fseek.m4 (gl_REPLACE_FSEEK): New macro.
2554         * m4/fseeko.m4 (gl_REPLACE_FSEEKO): Also replace fseek, if fseek
2555         module is in use.
2556         * lib/stdio.in.h (GNULIB_FSEEKO): Only poison fseek if fseek
2557         module is not in use; since REPLACE_FSEEK worked otherwise.
2558         (GNULIB_FTELLO): Likewise for ftell.
2559         Reported by Ian Beckwith and others.
2560
2561 2009-10-27  Bruno Haible  <bruno@clisp.org>
2562
2563         * lib/isnan.c (rpl_isnan[fdl]): Repeat the specification declaration.
2564         Reported by Jim Meyering.
2565
2566 2009-10-27  Jim Meyering  <jim@meyering.net>
2567             Bruno Haible  <bruno@clisp.org>
2568
2569         Avoid warning despite dropping the return value of fwrite.
2570         * lib/unicodeio.c: Include ignore-value.h.
2571         (fwrite_success_callback): Explicitly ignore fwrite's return value.
2572         * modules/unicodeio (Depends-on): Add ignore-value.
2573
2574 2009-10-26  Eric Blake  <ebb9@byu.net>
2575
2576         areadlinkat: fix fallback path
2577         * lib/at-func.c (AT_FUNC_NAME): Avoid signed comparison between
2578         pointer and zero.
2579
2580 2009-10-22  Pádraig Brady  <P@draigBrady.com>
2581
2582         Use a better IO block size for modern systems
2583         * lib/copy-file.c (copy_file_preserving): Used a 32KiB malloced buffer.
2584         * lib/md2.c: Likewise.
2585         * lib/md4.c: Likewise.
2586         * lib/md5.c: Likewise.
2587         * lib/sha1.c: Likewise.
2588         * lib/sha256.c: Likewise.
2589         * lib/sha512.c: Likewise.
2590
2591 2009-10-22  Eric Blake  <ebb9@byu.net>
2592
2593         tests: avoid several compiler warnings
2594         * tests/test-getcwd.c (main): Avoid buffer underflow.
2595         * tests/test-getdate.c (main): String literals are not safe with
2596         putenv, so use setenv.  Declare unused argument.
2597         * modules/getdate-tests (Depends-on): Add setenv.
2598         * tests/test-argv-iter.c (main): Declare unused argument.  Avoid
2599         problems with string literals in char *.
2600         * tests/test-hash.c (main): Avoid shadowing declaration.
2601         (insert_new): Treat string literals as char const *.
2602         * tests/test-getopt.h (test_getopt): Likewise.
2603         (getopt_loop): Alter types to minimize casting elsewhere.
2604         * tests/test-getopt_long.h (test_getopt_long, getopt_long_loop)
2605         (test_getopt_long_posix): Likewise.
2606         (do_getopt_long): Add wrapper to minimize casting.
2607         * tests/test-atexit.c (clear_temp_file): Use void.
2608         * tests/test-areadlink-with-size.c (main): Declare unused
2609         arguments.
2610         * tests/test-areadlink.c (main): Likewise.
2611         * tests/test-areadlinkat-with-size.c (main): Likewise.
2612         * tests/test-areadlinkat.c (main): Likewise.
2613         * tests/test-canonicalize-lgpl.c (main): Likewise.
2614         * tests/test-canonicalize.c (main): Likewise.
2615         * tests/test-dirent-safer.c (main): Likewise.
2616         * tests/test-dirname.c (main): Likewise.
2617         * tests/test-dup2.c (main): Likewise.
2618         * tests/test-fchdir.c (main): Likewise.
2619         * tests/test-fcntl-h.c (main): Likewise.
2620         * tests/test-fcntl-safer.c (main): Likewise.
2621         * tests/test-fdopendir.c (main): Likewise.
2622         * tests/test-fdutimensat.c (main): Likewise.
2623         * tests/test-fflush.c (main): Likewise.
2624         * tests/test-filenamecat.c (main): Likewise.
2625         * tests/test-filevercmp.c (main): Likewise.
2626         * tests/test-fopen-safer.c (main): Likewise.
2627         * tests/test-fopen.c (main): Likewise.
2628         * tests/test-fpending.c (main): Likewise.
2629         * tests/test-fpurge.c (main): Likewise.
2630         * tests/test-freading.c (main): Likewise.
2631         * tests/test-fstatat.c (main): Likewise.
2632         * tests/test-fsync.c (main): Likewise.
2633         * tests/test-futimens.c (main): Likewise.
2634         * tests/test-getndelim2.c (main): Likewise.
2635         * tests/test-gettimeofday.c (main): Likewise.
2636         * tests/test-getopt.c (main): Likewise.
2637         * tests/test-i-ring.c (main): Likewise.
2638         * tests/test-inttypes.c (main): Likewise.
2639         * tests/test-link.c (main): Likewise.
2640         * tests/test-lstat.c (main): Likewise.
2641         * tests/test-math.c (main): Likewise.
2642         * tests/test-md5.c (main): Likewise.
2643         * tests/test-memchr2.c (main): Likewise.
2644         * tests/test-memrchr.c (main): Likewise.
2645         * tests/test-mkdir.c (main): Likewise.
2646         * tests/test-mkdirat.c (main): Likewise.
2647         * tests/test-mkfifoat.c (main): Likewise.
2648         * tests/test-open.c (main): Likewise.
2649         * tests/test-openat-safer.c (main): Likewise.
2650         * tests/test-openat.c (main): Likewise.
2651         * tests/test-quotearg.c (main): Likewise.
2652         * tests/test-rawmemchr.c (main): Likewise.
2653         * tests/test-readlink.c (main): Likewise.
2654         * tests/test-remove.c (main): Likewise.
2655         * tests/test-rename.c (main): Likewise.
2656         * tests/test-renameat.c (main): Likewise.
2657         * tests/test-rmdir.c (main): Likewise.
2658         * tests/test-sha1.c (main): Likewise.
2659         * tests/test-signal.c (main): Likewise.
2660         * tests/test-sigaction.c (main): Likewise.
2661         * tests/test-stat.c (main): Likewise.
2662         * tests/test-stat-time.c (main): Likewise.
2663         * tests/test-stddef.c (main): Likewise.
2664         * tests/test-stdint.c (main): Likewise.
2665         * tests/test-stdio.c (main): Likewise.
2666         * tests/test-stdlib.c (main): Likewise.
2667         * tests/test-strchrnul.c (main): Likewise.
2668         * tests/test-strerror.c (main): Likewise.
2669         * tests/test-string.c (main): Likewise.
2670         * tests/test-strtod.c (main): Likewise.
2671         * tests/test-strverscmp.c (main): Likewise.
2672         * tests/test-symlink.c (main): Likewise.
2673         * tests/test-symlinkat.c (main): Likewise.
2674         * tests/test-sys_stat.c (main): Likewise.
2675         * tests/test-sys_time.c (main): Likewise.
2676         * tests/test-time.c (main): Likewise.
2677         * tests/test-unistd.c (main): Likewise.
2678         * tests/test-unlink.c (main): Likewise.
2679         * tests/test-unlinkat.c (main): Likewise.
2680         * tests/test-utimens.c (main): Likewise.
2681         * tests/test-utimensat.c (main): Likewise.
2682         * tests/test-version-etc.c (main): Likewise.
2683         * tests/test-wchar.c (main): Likewise.
2684         * tests/test-wctype.c (main): Likewise.
2685         * tests/test-xprintf-posix.c (main): Likewise.
2686         * tests/test-posixtm.c (main): Likewise.
2687         (STREQ): Delete unused macro.
2688         * tests/test-linkat.c (main): Declare unused arguments.  Avoid
2689         shadowed variables.
2690         * tests/test-memchr.c (main): Likewise.
2691
2692 2009-10-21  Eric Blake  <ebb9@byu.net>
2693
2694         areadlinkat: avoid failure on older glibc
2695         * lib/at-func.c (AT_FUNC_NAME): Check for explicit FUNC_FAIL,
2696         rather than mis-comparing 0 against FUNC_RESULT of char*.
2697
2698 2009-10-21  Bruno Haible  <bruno@clisp.org>
2699
2700         * modules/stpncpy (License): Relicense under LGPLv2+.
2701         Reported by David Lutterkort <lutter@redhat.com>.
2702
2703 2009-10-20  Eric Blake  <ebb9@byu.net>
2704
2705         utimensat: work around Solaris 9 bug
2706         * lib/utimens.c (fdutimens, lutimens): Force a stat if platform
2707         has trailing slash bugs.
2708         * tests/test-lutimens.h (test_lutimens): Enhance test.
2709         * tests/test-utimens.h (test_utimens): Likewise.
2710         * doc/posix-functions/utime.texi (utime): Enhance documentation.
2711         * doc/posix-functions/utimes.texi (utimes): Likewise.
2712         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
2713         * doc/glibc-functions/futimesat.texi (futimesat): Likewise.
2714         * doc/glibc-functions/lutimes.texi (lutimes): Likewise.
2715         * doc/posix-functions/futimens.texi (futimens): Likewise.
2716
2717         fdutimensat: new module
2718         * modules/fdutimensat: New file.
2719         * lib/fdutimensat.c (fdutimensat): Likewise.
2720         * lib/utimens.h (fdutimensat, lutimensat): Declare new functions.
2721         * MODULES.html.sh (File system functions): Mention module.
2722         * modules/fdutimensat-tests: New test.
2723         * tests/test-fdutimensat.c: Likewise.
2724
2725         doc: regenerate INSTALL
2726         * doc/INSTALL: Reflect recent autoconf update.
2727         * doc/INSTALL.ISO: Likewise.
2728         * doc/INSTALL.UTF-8: Likewise.
2729
2730 2009-10-20  Pádraig Brady  <P@draigBrady.com>
2731
2732         acl: warn if ACL support is not detected
2733         * m4/acl.m4 (gl_FUNC_ACL): Output a warning if ACL support is not found.
2734
2735 2009-10-19  Giuseppe Scrivano  <gscrivano@gnu.org>
2736
2737         * lib/nproc.h: Add extern "C" block for C++.
2738
2739 2009-10-18  Reuben Thomas  <rrt@sc3d.org>
2740             Bruno Haible  <bruno@clisp.org>
2741
2742         * doc/posix-functions/isascii.texi: Document the 2 alternative APIs.
2743         * doc/posix-functions/isalnum.texi: Document the 4 alternative APIs.
2744         * doc/posix-functions/isalpha.texi: Likewise.
2745         * doc/posix-functions/isblank.texi: Likewise.
2746         * doc/posix-functions/iscntrl.texi: Likewise.
2747         * doc/posix-functions/isdigit.texi: Likewise.
2748         * doc/posix-functions/isgraph.texi: Likewise.
2749         * doc/posix-functions/islower.texi: Likewise.
2750         * doc/posix-functions/isprint.texi: Likewise.
2751         * doc/posix-functions/ispunct.texi: Likewise.
2752         * doc/posix-functions/isspace.texi: Likewise.
2753         * doc/posix-functions/isupper.texi: Likewise.
2754         * doc/posix-functions/isxdigit.texi: Likewise.
2755
2756 2009-10-18  Bruno Haible  <bruno@clisp.org>
2757
2758         Tests for module 'isblank'.
2759         * modules/isblank-tests: New file.
2760         * tests/test-isblank.c: New file.
2761
2762         New module 'isblank'.
2763         * lib/isblank.c: New file.
2764         * m4/isblank.m4: New file.
2765         * modules/isblank: New file.
2766         * doc/posix-functions/isblank.texi: Mention the new module.
2767
2768 2009-10-18  Bruno Haible  <bruno@clisp.org>
2769
2770         New module 'ctype'.
2771         * lib/ctype.in.h: New file.
2772         * m4/ctype.m4: New file.
2773         * modules/ctype: New file.
2774         * doc/posix-headers/ctype.texi: Mention the new module.
2775
2776 2009-10-18  Jim Meyering  <meyering@redhat.com>
2777
2778         m4: stylistic-only: hoist AC_SUBST to be adjacent to initialization
2779         Declare a variable like LIB_CLOCK_GETTIME to be AC_SUBSTituted
2780         right after its initialization, rather than farther down.
2781         Keeping these in close proximity makes it easier to ensure
2782         that each such variable is initialized.  E.g.,
2783
2784             LIB_CLOCK_GETTIME=
2785             AC_SUBST([LIB_CLOCK_GETTIME])
2786
2787         This change also increments these serial numbers.
2788         * m4/clock_time.m4 (gl_CLOCK_TIME): Hoist AC_SUBST use.
2789         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
2790         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
2791
2792 2009-10-18  Bruno Haible  <bruno@clisp.org>
2793
2794         Don't let environment variables perturb build.
2795         * m4/gethrxtime.m4 (gl_GETHRXTIME): Initialize LIB_GETHRXTIME here...
2796         (gl_PREREQ_GETHRXTIME): ... not here.
2797
2798 2009-10-18  Bruno Haible  <bruno@clisp.org>
2799
2800         Avoid symlink attack in localcharset module.
2801         * lib/localcharset.c: Include <fcntl.h>, <unistd.h>.
2802         (O_NOFOLLOW): Define fallback.
2803         (get_charset_aliases): Don't open the file if it is a symbolic link.
2804         * m4/fcntl_h.m4 (gl_FCNTL_O_FLAGS): New macro, extracted from
2805         gl_FCNTL_H.
2806         (gl_FCNTL_H): Require it.
2807         * m4/localcharset.m4 (gl_LOCALCHARSET): Likewise.
2808         * modules/localcharset (Files): Add m4/fcntl_h.m4.
2809         Reported by Fergal Glynn <fglynn@veracode.com>.
2810
2811 2009-10-18  Bruno Haible  <bruno@clisp.org>
2812
2813         Implement nproc for mingw.
2814         * lib/nproc.c: Include <windows.h>
2815         (num_processors): On native Windows platforms, try GetSystemInfo.
2816
2817 2009-10-18  Bruno Haible  <bruno@clisp.org>
2818
2819         Implement nproc for IRIX.
2820         * lib/nproc.c: Include <sys/sysmp.h>.
2821         (num_processors): On IRIX systems, try sysmp.
2822         * m4/nproc.m4 (gl_PREREQ_NPROC): Check for sys/sysmp.h and sysmp.
2823
2824 2009-10-18  Bruno Haible  <bruno@clisp.org>
2825
2826         Implement nproc for HP-UX.
2827         * lib/nproc.c: Include <sys/pstat.h>
2828         (num_processors): On HP-UX systems, try pstat_getdynamic.
2829         * m4/nproc.m4 (gl_PREREQ_NPROC): Check for sys/pstat.h and
2830         pstat_getdynamic.
2831
2832 2009-10-18  Giuseppe Scrivano  <gscrivano@gnu.org>
2833             Bruno Haible  <bruno@clisp.org>
2834
2835         Implement nproc for NetBSD, OpenBSD.
2836         * lib/nproc.c: Include <sys/types.h>, <sys/param.h>, <sys/sysctl.h>.
2837         (ARRAY_SIZE): New macro.
2838         (num_processors): On BSD systems, try sysctl of HW_NCPU.
2839         * m4/nproc.m4: New file.
2840         * modules/nproc (Files): Add m4/nproc.m4.
2841         (configure.ac): Invoke gl_NPROC. Remove AC_LIBOBJ invocation.
2842         (Makefile.am): Instead, augment lib_SOURCES.
2843
2844 2009-10-18  Bruno Haible  <bruno@clisp.org>
2845
2846         Fix recognition of sys/sysctl.h on OpenBSD 4.0.
2847         * m4/physmem.m4 (gl_PHYSMEM): Before including sys/sysctl.h, include
2848         sys/param.h.
2849
2850 2009-10-16  Eric Blake  <ebb9@byu.net>
2851
2852         utimensat: new module
2853         * modules/utimensat: New file.
2854         * lib/utimensat.c (utimensat): Likewise.
2855         * m4/utimensat.m4 (gl_FUNC_UTIMENSAT): Likewise.
2856         * lib/utimens.c (utimensat): Avoid recursion into rpl_utimensat,
2857         so we can work around Linux bugs.
2858         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
2859         * modules/sys_stat (Makefile.am): Substitute them.
2860         * lib/sys_stat.in.h (utimensat): Declare it.
2861         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
2862         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
2863         * modules/utimensat-tests: New test.
2864         * tests/test-utimensat.c: Likewise.
2865
2866         utimens: let lutimens work on non-symlinks
2867         * lib/utimens.c (lutimens): Fall back to utimens rather than
2868         failing with ENOSYS, when file is not a symlink.
2869         (utimens): Reduce redirection.
2870         * tests/test-lutimens.h (test_lutimens): Update test to cover
2871         non-symlinks.
2872         * tests/test-utimens.h (test_utimens): Update test to cover
2873         symlinks.
2874         * tests/test-utimens.c (main): Update caller.
2875
2876         utimens: cache whether utimensat syscall works
2877         * lib/utimens.c (utimensat_works_really): New cache variable.
2878         (fdutimens, lutimens): Use it to avoid failing syscall.
2879
2880         test-stat-time, test-utimens: improve portability
2881         * tests/test-stat-time.c (nap): Lengthen delay to 20ms, for
2882         ext4 on alpha, and for cygwin.
2883         * tests/test-utimens-common.h: New file.
2884         (nap): Factor delays into single function.
2885         * tests/test-lutimens.h (test_lutimens): Use new header.
2886         * tests/test-futimens.h (test_futimens): Likewise.
2887         * tests/test-utimens.h (test_utimens): Likewise.  Also, force NFS
2888         timestamps to occur from same machine, as was done previously for
2889         test_utimens.
2890         * modules/utimens-tests (Files): Ship new file.
2891         * modules/futimens-tests (Files): Likewise.
2892         Reported in part by Jim Meyering.
2893
2894         sys_stat: sort replacement declarations
2895         * lib/sys_stat.in.h: Sort declarations.
2896         * lib/futimens.c (futimens): Fix typo.
2897
2898 2009-10-15  Jim Meyering  <meyering@redhat.com>
2899
2900         don't let environment settings perturb build
2901         Setting the envvars, LIB_CLOCK_GETTIME, LIB_EACCESS or LIB_NANOSLEEP
2902         could cause a configure-time and/or build-time malfunction.
2903         Typically, a configure-time function-in-library test is performed
2904         via code like this:
2905
2906           LIB_VAR=
2907           AC_SUBST([LIB_VAR])
2908           prefix_saved_LIBS=$LIBS
2909             AC_SEARCH_LIBS([FUNC], [LIB_NAME],
2910                        [test "$ac_cv_search_FUNC" = "none required" ||
2911                         LIB_VAR=$ac_cv_search_FUNC])
2912           LIBS=$prefix_saved_LIBS
2913
2914         However, in each of the files affected by this change, the LIB_VAR=
2915         initialization was omitted.  Thus, when set in the environment, its
2916         value would propagate into generated Makefiles when FUNC is not found
2917         in LIB_NAME.
2918         * m4/clock_time.m4 (gl_CLOCK_TIME): Initialize AC_SUBST'd var.
2919         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
2920         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
2921
2922 2009-10-14  Eric Blake  <ebb9@byu.net>
2923
2924         fchdir: avoid infinite recursion in mingw
2925         * lib/fchdir.c (rpl_fstat): Call system fstat, rather than
2926         recursing.
2927
2928         test-stat-time: port to mingw
2929         * tests/test-stat-time.c (force_unlink): Return a value.
2930         (test_ctime) [W32]: Fix compilation error.
2931         (nap): Don't call usleep with too large an argument.  Use
2932         force_unlink.
2933         * doc/pastposix-functions/usleep.texi (usleep): Document the
2934         portability issue.
2935
2936 2009-10-13  Jim Meyering  <meyering@redhat.com>
2937
2938         use AC_CHECK_FUNCS_ONCE, not AC_CHECK_FUNCS in modules/*
2939         * modules/pipe-filter-gi: Use AC_CHECK_FUNCS_ONCE, not AC_CHECK_FUNCS.
2940         * modules/pipe-filter-ii: Likewise.
2941         * modules/sys_socket-tests: Likewise.
2942         * modules/tsearch-tests: Likewise.
2943         * Makefile (sc_prefer_ac_check_funcs_once): New rule.
2944         (check): Depend on it.
2945
2946 2009-10-12  Eric Blake  <ebb9@byu.net>
2947
2948         utimens-tests: port to NFS file systems
2949         * tests/test-utimens.h (test_utimens): Refactor utimecmp
2950         comparisons to avoid spurious failures from timestamp drift
2951         between NFS machines.
2952
2953 2009-10-12  Eric Blake  <ebb9@byu.net>
2954
2955         stat-time-tests: minor cleanups
2956         * modules/stat-time-tests (configure.ac): Use AC_CHECK_FUNCS_ONCE.
2957         * tests/test-stat-time.c (nap): Separate assignment from call.
2958         Suggested by Paolo Bonzini and Bruno Haible.
2959
2960         sys_stat: guarantee struct timespec
2961         * lib/sys_stat.in.h (includes): Always include <time.h>
2962         * modules/sys_stat (Depends-on): Add time.
2963         * tests/test-sys_stat.c: Guarantee struct timespec, as well as
2964         mode_t permission values.
2965         * doc/posix-headers/sys_stat.texi (sys/stat.h): Document how to
2966         get at subsecond timestamps.
2967
2968 2009-10-10  Eric Blake  <ebb9@byu.net>
2969
2970         futimens: new module
2971         * modules/futimens: New file.
2972         * lib/futimens.c (futimens): Likewise.
2973         * m4/futimens.m4 (gl_FUNC_FUTIMENS): Likewise.
2974         * lib/utimens.c (futimens): Avoid recursion into rpl_futimens, so
2975         we can work around Linux bugs.
2976         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
2977         * modules/sys_stat (Makefile.am): Substitute them.
2978         * lib/sys_stat.in.h (futimens): Declare it.
2979         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
2980         * doc/posix-functions/futimens.texi (futimens): Likewise.
2981         * modules/futimens-tests: New test.
2982         * tests/test-futimens.c: Likewise.
2983
2984         utimens: introduce fdutimens
2985         * lib/utimens.h (fdutimens): New prototype.
2986         * lib/utimens.c (gl_futimens): Move guts...
2987         (fdutimens): ...to new interface.
2988         * tests/test-utimens.c (do_fdutimens): Use it.
2989
2990         utimens: add UTIME_NOW and UTIME_OMIT support
2991         * lib/utimens.c (validate_timespec, update_timespec): New helper
2992         functions.
2993         (gl_futimens, lutimens): Use them.
2994         * modules/utimens (Depends-on): Add gettime, lstat, stat-time,
2995         stdbool, sys_stat.
2996         (Link): Mention resulting library dependency.
2997         * modules/utimecmp (Link): Likewise.
2998         * modules/utimens-tests (Depends-on): Drop stat-time, stdbool.
2999         (Makefile.am): Pick up library dependency.
3000         * lib/sys_stat.in.h (UTIME_NOW, UTIME_OMIT): Guarantee a
3001         definition.
3002         * tests/test-sys_stat.c: Test the definitions.
3003         * doc/posix-headers/sys_stat.texi (sys/stat.h): Document this.
3004         * NEWS: Document library dependency.
3005
3006         utimecmp: support symlink timestamps
3007         * lib/utimecmp.c (utimecmp): Use new interface.  Skip effort of
3008         hashing when possible.  Use pathconf when available.
3009         (SYSCALL_RESOLUTION): Recognize tighter resolution.
3010         * modules/utimecmp (Depends-on): Add lstat.
3011
3012         utimens: add lutimens interface
3013         * lib/utimens.c (lutimens): New function.
3014         * m4/utimens.m4 (gl_UTIMENS): Check for lutimes.
3015         * lib/utimens.h (lutimens): Declare new interface.
3016         * tests/test-utimens.c (main): Enhance test.
3017         * tests/test-lutimens.h (test_lutimens): New file.
3018         * modules/utimens-tests (Files): Distribute it.
3019         (Depends-on): Add symlink.
3020         (configure.ac): Check for usleep.
3021
3022         utimens: validate futimens usage
3023         * lib/utimens.c (gl_futimens): Require valid fd up front, using
3024         fewer syscalls on failure later on.  Avoid compiler warning on
3025         mingw.
3026         * modules/utimens (Depends-on): Add dup2.
3027
3028         utimens: add test
3029         * modules/utimens-tests: New test.
3030         * tests/test-utimens.h: New file.
3031         * tests/test-futimens.h: Likewise.
3032         * tests/test-utimens.c: Likewise.
3033
3034         doc: mention timestamp portability issues
3035         * doc/glibc-functions/lutimes.texi (lutimes): Refer to utimensat
3036         instead.
3037         * doc/posix-functions/utime.texi (utime): Likewise.
3038         * doc/posix-functions/utimes.texi (utimes): Likewise.
3039         * doc/glibc-functions/futimes.texi (futimes): Refer to futimens
3040         instead.
3041         * doc/posix-functions/futimens.texi (futimens): Mention utimens
3042         module.
3043         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
3044         Mention weakness with symlink timestamps.
3045         * doc/glibc-functions/futimesat.texi (futimesat): New file; refer
3046         to utimensat/futimens instead.
3047         * doc/gnulib.texi (Glibc sys/time.h): Include new file.
3048
3049         test-dup2: enhance test
3050         * tests/test-dup2.c (main): Also check AT_FDCWD.
3051
3052         test-stat-time: avoid more spurious failures
3053         * tests/test-stat-time.c (nap): Wait for 15ms rather than 2ms, for
3054         xfs; and avoid race if the two timestamps cross quantization edge.
3055
3056         relocatable: prefer 'file system' over 'filesystem'
3057         * m4/relocatable-lib.m4 (gl_RELOCATABLE_NOP): Use AS_HELP_STRING.
3058         (gl_RELOCATABLE_LIBRARY_BODY): Fix spelling.
3059         * doc/relocatable-maint.texi (Supporting Relocation): Likewise.
3060         * doc/relocatable.texi (Enabling Relocatability): Likewise.
3061         * lib/relocatable.c (compute_curr_prefix): Likewise.
3062
3063 2009-10-10  Jim Meyering  <meyering@redhat.com>
3064
3065         stat-time-tests: check for the usleep function
3066         * modules/stat-time-tests (configure.ac): Now that we test HAVE_USLEEP.
3067
3068 2009-10-10  Bruno Haible  <bruno@clisp.org>
3069
3070         * modules/xnanosleep: Put the Link section after the Include section.
3071
3072 2009-10-09  Eric Blake  <ebb9@byu.net>
3073
3074         dup2: work around FreeBSD 6.1 bug
3075         * m4/dup2.m4 (gl_FUNC_DUP2): Detect bug.
3076         * doc/posix-functions/dup2.texi (dup2): Document it.
3077         Reported by Nelson H. F. Beebe and Jim Meyering.
3078
3079         test-stat-time: port to buggy NFS clients
3080         * tests/test-stat-time.c (main) [W32]: Reduce ifdefs.
3081         (test_ctime): Also skip test if mtime and ctime are skewed.
3082
3083         maint: prefer 'file system' over 'filesystem'
3084         * doc/posix-functions/fstatat.texi (fstatat): Likewise.
3085         * doc/posix-functions/lstat.texi (lstat): Likewise.
3086         * lib/file-has-acl.c (file_has_acl): Likewise.
3087         * lib/fwriteerror.c [TEST]: Likewise.
3088         * tests/test-areadlink.h (test_areadlink): Likewise.
3089         * tests/test-areadlinkat-with-size.c (main): Likewise.
3090         * tests/test-areadlinkat.c (main): Likewise.
3091         * tests/test-canonicalize-lgpl.c (main): Likewise.
3092         * tests/test-canonicalize.c (main): Likewise.
3093         * tests/test-fstatat.c (main): Likewise.
3094         * tests/test-linkat.c (main): Likewise.
3095         * tests/test-lstat.h (test_lstat_func): Likewise.
3096         * tests/test-mkdir.h (test_mkdir): Likewise.
3097         * tests/test-readlink.h (test_readlink): Likewise.
3098         * tests/test-remove.c (main): Likewise.
3099         * tests/test-rename.h (test_rename): Likewise.
3100         * tests/test-renameat.c (main): Likewise.
3101         * tests/test-rmdir.h (test_rmdir_func): Likewise.
3102         * tests/test-symlink.h (test_symlink): Likewise.
3103         * tests/test-symlinkat.c (main): Likewise.
3104         * tests/test-unlink.h (test_unlink_func): Likewise.
3105         * tests/test-unlinkat.c (main): Likewise.
3106
3107         maint: make realtime library usage explicit
3108         * modules/gethrxtime (Link): Mention LIB_GETHRXTIME.
3109         * modules/gettime (Link): Mention LIB_CLOCK_GETTIME.
3110         * modules/settime (Link): Likewise.
3111         * modules/xnanosleep (Link): Mention LIB_NANOSLEEP.
3112
3113         test-stat-time: speed up execution
3114         * tests/test-stat-time.c (test_ctime) [!W32]: Avoid compiler
3115         warning on mingw.
3116         (nap): New helper function.
3117         (prepare_test): Use it to reduce sleep time.
3118         (test_mtime, test_ctime, test_birthtime): Allow for subsecond
3119         execution.
3120         * modules/stat-time-tests (configure.ac): Check for usleep.
3121
3122 2009-10-09  Jim Meyering  <meyering@redhat.com>
3123
3124         selinux-h: always use getfilecon wrappers
3125         * lib/getfilecon.c: New file.
3126         * lib/se-selinux.in.h: Use a better inclusion guard symbol name.
3127         [HAVE_SELINUX_SELINUX_H]: Include-next <selinux/selinux.h>.
3128         [!HAVE_SELINUX_SELINUX_H]: Use better parameter names.
3129         (fgetfilecon): Provide a stub.
3130         * m4/selinux-selinux-h.m4 (gl_HEADERS_SELINUX_SELINUX_H): Don't
3131         AC_SUBST SELINUX_SELINUX_H, since now we're generating that
3132         file unconditionally.
3133         When <selinux/selinux.h> is found, arrange to use wrappers.
3134         * modules/selinux-h (Files): Add getfilecon.c.
3135         (Makefile.am): Substitute include-next-related bits
3136         into the now-always-generated selinux/selinux.h file.
3137         * doc/glibc-functions/lgetfilecon.texi: New file.
3138         * doc/glibc-functions/fgetfilecon.texi: New file.
3139         * doc/glibc-functions/getfilecon.texi: New file.
3140         * doc/glibc-functions/getfilecon-desc.texi: New file.
3141         * doc/gnulib.texi (Glibc selinux/selinux.h): New section, by
3142         which to pull in the new files.
3143         * MODULES.html.sh (Misc): Add selinux-h.
3144
3145 2009-10-08  Jim Meyering  <meyering@redhat.com>
3146
3147         unistd: fix comment typo
3148         * lib/unistd.in.h (euidaccess): Fix a comment typo.
3149
3150 2009-10-08  Eric Blake  <ebb9@byu.net>
3151
3152         areadlink: use SIZE_MAX consistently
3153         * modules/areadlink (Depends-on): Add stdint.
3154         * modules/areadlink-with-size (Depends-on): Likewise.
3155         * lib/areadlink-with-size.c (includes): Drop stdio, since stdlib
3156         gives NULL; drop sys/types, since unistd gives size_t; and add
3157         stdint for SIZE_MAX.
3158         (SIZE_MAX): Rely on headers.
3159         * lib/areadlinkat-with-size.c (includes): Drop stdio, sys/types,
3160         and add stdint.
3161         * lib/areadlink.c (includes): Drop sys/types, and add stdint.
3162         (SIZE_MAX): Likewise.
3163         (INITIAL_BUF_SIZE): Turn into enum.
3164         * lib/areadlinkat.c (INITIAL_BUF_SIZE): Likewise.
3165
3166 2009-10-08  Jim Meyering  <meyering@redhat.com>
3167
3168         areadlinkat: avoid compilation failure
3169         * lib/areadlinkat.c: Include <stdint.h> for use of SIZE_MAX.
3170         Fix typo in comment.
3171
3172 2009-10-07  Eric Blake  <ebb9@byu.net>
3173
3174         areadlinkat-with-size: new module
3175         * modules/areadlinkat-with-size: New module.
3176         * lib/areadlinkat-with-size.c (areadlinkat_with_size): New file.
3177         * lib/areadlink.h (areadlinkat): Declare it.
3178         * MODULES.html.sh (File system functions): Mention it.
3179         * modules/areadlinkat-with-size-tests: New test.
3180         * tests/test-areadlinkat-with-size.c: New file.
3181
3182         xreadlinkat: new module
3183         * modules/xreadlinkat: New module.
3184         * lib/xreadlinkat.c (xreadlinkat): New file.
3185         * lib/xreadlink.h (xreadlinkat): Declare it.
3186         * MODULES.html.sh (File system functions): Mention it.
3187
3188         areadlinkat: new module
3189         * lib/at-func.c (FUNC_FAIL): New define.
3190         (AT_FUNC_NAME, VALIDATE_FLAG): Use it rather than raw -1.
3191         * modules/areadlinkat: New module.
3192         * lib/linkat.c (areadlinkat): Move...
3193         * lib/areadlinkat.c (areadlinkat): ...to new file.
3194         * lib/areadlink.h (areadlinkat): Declare it.
3195         * modules/linkat (Depends-on): Add areadlinkat.
3196         * MODULES.html.sh (File system functions): Mention it.
3197         * modules/areadlinkat-tests: New test.
3198         * tests/test-areadlinkat.c: New file.
3199
3200         areadlink, areadlink-with-size: add tests
3201         * modules/areadlink-tests: New test.
3202         * modules/areadlink-with-size-tests: Likewise.
3203         * tests/test-areadlink.h: New file.
3204         * tests/test-areadlink.c: Likewise.
3205         * tests/test-areadlink-with-size.c: Likewise.
3206
3207         maint: minor cleanups
3208         * lib/fts.c (ATTRIBUTE_UNUSED): Delete; use gnulib-guaranteed
3209         _UNUSED_PARAMETER_ instead.
3210         * lib/getdate.y (ATTRIBUTE_UNUSED): Likewise.
3211         * lib/utimens.c (ATTRIBUTE_UNUSED): Likewise.
3212         * modules/linkat-tests (Files): Distribute test-link.h.
3213
3214         openat, utimens: whitespace cleanup
3215         * lib/openat.c: Prefer space throughout, rather than mix of 8
3216         spaces vs. tabs.
3217         * lib/at-func.c: Likewise.
3218         * lib/utimens.c: Likewise.
3219
3220         openat: avoid using wrong fd
3221         * lib/openat.c (openat_permissive): Reject user's fd if saving the
3222         working directory chooses same fd.
3223         * lib/at-func.c (AT_FUNC_NAME): Likewise.
3224
3225         mkdir, mkdirat: fix cygwin 1.5.x bug
3226         * lib/mkdir.c (rpl_mkdir) [FUNC_MKDIR_DOT_BUG]: Work around bug.
3227         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Move...
3228         * m4/mkdir.m4 (gl_FUNC_MKDIR): ...here, and add check for cygwin
3229         bug.
3230         (gl_PREREQ_MKDIR): Delete unused macro.
3231         * modules/mkdir (Files): Track file rename.
3232         (configure.ac): Update macro name.
3233         * modules/openat (Depends-on): Add mkdir.
3234         * doc/posix-functions/mkdir.texi (mkdir): Document the bug.
3235
3236         mkdir, mkdirat: add tests
3237         * modules/mkdir-tests: New test.
3238         * tests/test-mkdir.h: New file.
3239         * tests/test-mkdir.c: Likewise.
3240         * tests/test-mkdirat.c: Likewise.
3241         * modules/openat-tests (Files): Add new files.
3242         (Makefile.am): Run new test.
3243
3244 2009-10-06  Eric Blake  <ebb9@byu.net>
3245
3246         doc: tweak *at function documentation
3247         * doc/posix-functions/faccessat.texi (faccessat): Mention
3248         known issue with replacement.
3249         * doc/posix-functions/fchdir.texi (fchdir): Likewise.
3250         * doc/posix-functions/linkat.texi (linkat): Likewise.
3251         * doc/posix-functions/mkfifoat.texi (mkfifoat): Likewise.
3252         * doc/posix-functions/mknodat.texi (mknodat): Likewise.
3253         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
3254         * doc/posix-functions/renameat.texi (renameat): Likewise.
3255         * doc/posix-functions/symlinkat.texi (symlinkat): Likewise.
3256
3257         openat: fix GNU/Hurd bug in unlinkat
3258         * m4/openat.m4 (gl_FUNC_OPENAT): Replace unlinkat if unlink is
3259         broken.
3260         * doc/posix-functions/unlink.texi (unlink): Document this.
3261         * doc/posix-functions/unlinkat.texi (unlinkat): Likewise.
3262
3263         fdopendir: fix GNU/Hurd bug
3264         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): Check for Hurd bug in
3265         allowing non-directory fds.
3266         * lib/fdopendir.c (rpl_fdopendir): Work around it.
3267         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): New witness.
3268         * modules/dirent (Makefile.am): Substitute it.
3269         * lib/dirent.in.h (fdopendir): Declare replacement.
3270         * doc/posix-functions/fdopendir.texi (fdopendir): Document this.
3271         * tests/test-fdopendir.c (main): Test something other than
3272         /dev/null, since on Hurd that behaves like a directory.
3273
3274         test-symlink: port to GNU/Hurd
3275         * tests/test-symlink.h (test_symlink): Relax expected errno.
3276
3277         doc: tweak more cygwin information
3278         * doc/glibc-headers/getopt.texi (getopt.h): Cygwin 1.7 getopt is
3279         now compatible with glibc.
3280         * doc/posix-functions/getopt.texi (getopt): Likewise.
3281
3282         getopt-gnu: add another test
3283         * tests/test-getopt_long.h (test_getopt_long_posix): New test, to
3284         guarantee behavior relied on by m4.
3285         * tests/test-getopt.c (main): Use it.
3286         * modules/getopt-posix-tests (Depends-on): Add setenv.
3287         See http://lists.gnu.org/archive/html/bug-m4/2006-09/msg00028.html.
3288
3289         getopt: fix compilation on darwin
3290         * lib/getopt.in.h (includes): Leave breadcrumbs during system
3291         include.
3292         * lib/unistd.in.h (getopt): Use them to avoid recursive include.
3293         Reported by Ludovic Courtès.
3294
3295 2009-10-06  Bruno Haible  <bruno@clisp.org>
3296
3297         * modules/size_max (Description): Discourage its use.
3298         Reported by Simon Josefsson.
3299
3300 2009-10-06  Jim Meyering  <meyering@redhat.com>
3301
3302         linkat: avoid compilation failure
3303         * lib/linkat.c: Include <stdint.h> for use of SIZE_MAX.
3304
3305 2009-10-05  Eric Blake  <ebb9@byu.net>
3306
3307         linkat: support Linux 2.6.17
3308         * m4/linkat.m4 (gl_FUNC_LINKAT): Default to always replacing
3309         linkat on Linux, but allow cache variable override.
3310         * lib/linkat.c (rpl_linkat): Define override.
3311         * modules/linkat (Depends-on): Add symlinkat.
3312         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add new default.
3313         * modules/unistd (Makefile.am): Substitute it.
3314         * lib/unistd.in.h (linkat): Declare replacement.
3315         Reported by Pádraig Brady.
3316
3317         quotearg: port test to systems with C.UTF-8 locale
3318         * tests/test-quotearg.c (struct result_strings): Add another
3319         member, differentiating between C.ASCII and C.UTF-8 handling.
3320         (compare_strings): Add parameter.
3321         (main): Adjust all callers.
3322
3323         getopt: avoid clash with FreeBSD _getopt_internal
3324         * lib/getopt.in.h (_getopt_internal): Override the name.
3325         * lib/getopt_int.h (includes): Pick up any overrides.
3326         Reported by Reuben Thomas.
3327
3328         hash: allow C89 compilation
3329         * lib/hash.c (check_tuning): Move declaration before statement.
3330         Reported by Reuben Thomas.
3331
3332 2009-10-05  Karl Berry  <karl@gnu.org>
3333
3334         * doc/gnulib.texi: @include execvpe.texi, missing for several days.
3335
3336 2009-10-04  Paolo Bonzini  <bonzini@gnu.org>
3337             Bruno Haible  <bruno@clisp.org>
3338
3339         * lib/uname.c (uname): Use a table-driven algorithm to compute
3340         Windows NT versions.
3341
3342 2009-10-04  Bruno Haible  <bruno@clisp.org>
3343
3344         * lib/progname.c (set_program_name): Also remove the "lt-" prefix from
3345         program_invocation_short_name.
3346         * modules/progname (configure.ac): Test for presence of
3347         program_invocation_short_name.
3348         Reported by Sergey Poznyakoff <gray@gnu.org.ua>.
3349
3350 2009-10-04  Bruno Haible  <bruno@clisp.org>
3351
3352         * lib/progname.c (set_program_name): Fix comment.
3353         Reported by Jim Meyering.
3354
3355 2009-10-03  Paolo Bonzini  <bonzini@gnu.org>
3356             Bruno Haible  <bruno@clisp.org>
3357
3358         * lib/uname.c: Include <string.h>.
3359         (uname): Do only one call to GetVersionEx in the common case.
3360
3361 2009-10-03  Paolo Bonzini  <bonzini@gnu.org>
3362             Bruno Haible  <bruno@clisp.org>
3363
3364         * lib/uname.c (VER_PLATFORM_WIN32_CE, PROCESSOR_ARCHITECTURE_AMD64,
3365         PROCESSOR_ARCHITECTURE_IA32_ON_WIN64): Define fallbacks.
3366         (uname): Add support for Windows CE and various non-x86 CPU types.
3367
3368 2009-10-03  Bruno Haible  <bruno@clisp.org>
3369
3370         * gnulib-tool (func_create_testdir): Conditionally emit AM_PROG_CC_C_O
3371         invocation to tests/configure.ac.
3372         Reported by Ian Beckwith <ianb@erislabs.net>.
3373
3374 2009-10-02  Eric Blake  <ebb9@byu.net>
3375
3376         fchdir: avoid compiler warning
3377         * lib/fchdir.c (canonicalize_file_name)
3378         [!HAVE_CANONICALIZE_FILE_NAME]: Avoid compiler warning on mingw.
3379
3380         test-open: support mingw errno values
3381         * tests/test-open.h (test_open): Relax test.
3382         * tests/test-fopen.h (test_fopen): Likewise.
3383         * tests/test-openat-safer.c (main): Likewise.
3384
3385         open: fix opening directory on mingw
3386         * lib/open.c (open) [REPLACE_OPEN_DIRECTORY]: Correct typo.
3387
3388         test-open: on GNU/Hurd, /dev/null is a directory
3389         * tests/test-fopen.h (main): Rename...
3390         (test_fopen): ...to this.  Use a guaranteed non-directory when
3391         confirming open behavior on trailing slash.
3392         * tests/test-openat-safer.c (main): Likewise.
3393         * tests/test-open.h (main): Likewise....
3394         (test_open): ...to this.
3395         * tests/test-fopen.c (main): Adjust caller.
3396         * tests/test-fopen-safer.c (main): Likewise.
3397         * tests/test-open.c (main): Likewise.
3398         * tests/test-fcntl-safer.c (main): Likewise.
3399         Reported by Samuel Thibault.
3400
3401         rename, fchdir: don't ignore chdir failure
3402         * lib/fchdir.c (get_name): Abort on unexpected chdir failure.
3403         * lib/rename.c (rpl_rename) [W32]: Likewise.
3404         (rpl_rename) [RENAME_DEST_EXISTS_BUG]: Avoid one case of losing
3405         an empty destination directory if source cannot be renamed,
3406         although there is still possibility for failure.
3407         * doc/posix-functions/rename.texi (rename): Document the race.
3408         Reported by Jim Meyering.
3409
3410         maint: cleanup whitespace in recent commits
3411         * lib/rename.c (rpl_rename): Remove tabs.
3412         * tests/test-link.h (test_link): Likewise.
3413         * lib/fchdir.c (get_name): Likewise.
3414         Reported by Jim Meyering.
3415
3416 2009-10-02  Ben Pfaff  <blp@gnu.org>
3417
3418         relocatable-prog-wrapper: Add missing dependency on
3419         double-slash-root.
3420         * modules/relocatable-prog-wrapper: Add dependency.
3421         Reported by Ian Beckwith <ianb@erislabs.net>.
3422
3423 2009-10-02  Eric Blake  <ebb9@byu.net>
3424
3425         renameat: fix Solaris bugs
3426         * m4/renameat.m4 (gl_FUNC_RENAMEAT): Replace renameat if rename
3427         needed fixing.
3428         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): New witness.
3429         * modules/stdio (Makefile.am): Substitute it.
3430         * lib/stdio.in.h (renameat): Declare replacement.
3431         * lib/renameat.c (rpl_renameat): Implement fix.
3432
3433         renameat: new module
3434         * modules/renameat: New file.
3435         * lib/renameat.c (renameat): Likewise.
3436         * m4/renameat.m4 (gl_FUNC_RENAMEAT): Likewise.
3437         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add witnesses.
3438         * modules/stdio (Makefile.am): Substitute them.
3439         * lib/stdio.in.h (renameat): Declare it.
3440         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
3441         * doc/posix-functions/renameat.texi (renameat): Likewise.
3442         * modules/renameat-tests: New test.
3443         * tests/test-renameat.c: Likewise.
3444
3445         rename: fix mingw bugs
3446         * lib/rename.c (rpl_rename) [W32]: Fix trailing slash and
3447         directory overwrite bugs.
3448
3449         rename: fix another cygwin 1.5 bug
3450         * m4/rename.m4 (gl_FUNC_RENAME): Split cygwin bugs into two
3451         checks.
3452         * lib/rename.c (rpl_rename): Don't penalize NetBSD with
3453         unnecessary cygwin workarounds.  Also work around bug with moving
3454         full directory onto an empty one.
3455         * modules/rename (Depends-on): Add canonicalize-lgpl, rmdir.
3456
3457         rename-dest-slash: merge into rename module
3458         * modules/rename-dest-slash (Status): Mark obsolete.
3459         (Depends-on): Add rename.
3460         (Files): Let rename do it all.
3461         * m4/rename.m4 (gl_FUNC_RENAME): Also test for NetBSD bugs,
3462         subsuming the test from gl_FUNC_RENAME_TRAILING_DEST_SLASH...
3463         * m4/rename-dest-slash.m4: ...so this file can be deleted.
3464         * lib/rename-dest-slash.c (rpl_rename_dest_slash): Delete.
3465         * lib/rename.c (rpl_rename): Update comments.
3466
3467         rename: fix cygwin 1.5.x bugs
3468         * m4/rename.m4 (gl_FUNC_RENAME): Detect cygwin bugs.
3469         * lib/rename.c (rpl_rename): Work around them.
3470         * modules/rename (Depends-on): Add same-inode.
3471
3472         rename: fix Solaris 10 bug
3473         * m4/rename.m4 (gl_FUNC_RENAME): Detect Solaris bug.
3474         * lib/rename.c (rpl_rename): Don't cripple POSIX behavior if this
3475         was the only bug.
3476
3477         rename: fix Solaris 9 bug
3478         * lib/rename.c (rpl_rename): Rewrite to recognize trailing slash
3479         on non-directory.  Avoid calling exit.
3480         * modules/rename (Depends-on): Drop xalloc; add lstat, stdbool,
3481         strdup.
3482         * modules/rename-tests (Depends-on): Drop lstat.
3483         * m4/rename.m4 (gl_FUNC_RENAME): Detect Solaris bug.
3484         (gl_PREREQ_RENAME): Delete unused macro.
3485
3486         rename-dest-slash: fix NetBSD bug
3487         * lib/rename-dest-slash.c (rpl_rename_dest_slash): Detect hard
3488         links.
3489         * modules/rename-dest-slash (Depends-on): Add same-inode.
3490
3491         rename-tests: new test, exposes several platform bugs
3492         * modules/rename-tests: New file.
3493         * tests/test-rename.h: Likewise.
3494         * tests/test-rename.c: Likewise.
3495         * doc/posix-functions/rename.texi (rename): Improve documentation,
3496         including bugs that will eventually be fixed in gnulib.
3497
3498 2009-10-02  Paolo Bonzini  <bonzini@gnu.org>
3499
3500         * lib/uname.c: Include <stdlib.h>
3501         (uname): Assume version info is available.
3502
3503 2009-10-02  Jim Meyering  <meyering@redhat.com>
3504
3505         gnu-web-doc-update: correct --help output
3506         * build-aux/gnu-web-doc-update: Make --help output relevant.
3507
3508         gnu-web-doc-update: add standard options
3509         * build-aux/gnu-web-doc-update: Add --help, --version, etc.
3510
3511         gnu-web-doc-update: New module.
3512         Use this script to automatically update the on-line web documentation
3513         for your GNU project at http://www.gnu.org/software/$pkg/manual/
3514         * modules/gnu-web-doc-update: New file, from coreutils.
3515         * build-aux/gnu-web-doc-update: New script.
3516
3517 2009-10-01  Paolo Bonzini  <bonzini@gnu.org>
3518
3519         link: LoadLibrary is not needed.
3520         * lib/link.c: Use GetModuleHandle.
3521
3522 2009-10-01  Eric Blake  <ebb9@byu.net>
3523
3524         getopt: bump serial number
3525         * m4/getopt.m4: Increment serial number, to account for 2009-09-24
3526         change.
3527
3528         tests: tighten link, rmdir, and remove tests
3529         * tests/test-link.h (includes): No need to use <config.h> here.
3530         Clean up if directory hard link was created, otherwise test for
3531         trailing '.'.
3532         * tests/test-linkat.c (main): Simplify.
3533         * tests/test-remove.c (main): Enhance test for trailing '.'.
3534         * tests/test-rmdir.h (test_rmdir_func): Likewise.
3535
3536 2009-10-01  Jim Meyering  <meyering@redhat.com>
3537
3538         maint.mk: requiring "make major" was annoying, for a "minor" release.
3539         What is intended is "stable", to contrast with alpha and beta,
3540         so require "make stable", not "make major".
3541         * build-aux/announce-gen (%valid_release_types): s/major/stable/.
3542         (get_tool_versions): Likewise.
3543         * top/maint.mk (ALL_RECURSIVE_TARGETS): s/major/stable/
3544
3545 2009-09-30  Ben Pfaff  <blp@gnu.org>
3546
3547         Fix broken build of replacement for Windows tmpfile().
3548         * lib/tmpfile.c (tmpfile): Fix call to gen_tempname() to provide
3549         flags argument added along with the 'mkostemp' module.
3550
3551 2009-09-28  Bruno Haible  <bruno@clisp.org>
3552
3553         Avoid identifier clash with POSIX function 'remove' defined as a macro.
3554         * lib/gl_list.h (struct gl_list_implementation): Rename field 'remove'
3555         to 'remove_elt'.
3556         (gl_list_remove): Update.
3557         * lib/gl_list.c (gl_list_remove): Update.
3558         * lib/gl_oset.h (struct gl_oset_implementation): Rename field 'remove'
3559         to 'remove_elt'.
3560         (gl_oset_remove): Update.
3561         * lib/gl_list.c (gl_oset_remove): Update.
3562         Reported by Eric Blake.
3563
3564 2009-09-28  Eric Blake  <ebb9@byu.net>
3565
3566         doc: mention yet more cygwin 1.7 status
3567         * doc/posix-functions/fexecve.texi (fexecve): Now implemented in
3568         cygwin.
3569         * doc/glibc-functions/execvpe.texi (execvpe): New file.
3570         * doc/gnulib.texi (Glibc unistd.h): Mention it.
3571
3572         argp: fix test failure
3573         * lib/argp-help.c (hol_entry_cmp): Don't use _tolower on values
3574         that are not upper-case.  Pass correct range to tolower.
3575
3576 2009-09-27  Jim Meyering  <meyering@redhat.com>
3577
3578         test-yesno: work around sparc-dash here-document infelicity
3579         Without this change, the literal \177 byte in a here document
3580         would make dash 0.5.5.1-3 access uninitialized memory.
3581         * tests/test-yesno.sh: Don't put the \177 byte in the here document.
3582         Instead, use a marker, "@", and filter through tr to create the desired
3583         contents.  Reported as <http://bugs.debian.org/548493> by Kurt Roeckx.
3584
3585 2009-09-27  Bruno Haible  <bruno@clisp.org>
3586
3587         Disable untested support for new flavours of ACLs on AIX.
3588         * lib/file-has-acl.c (file_has_acl): Mark newer AIX code as work in
3589         progress.
3590         * lib/set-mode-acl.c (qset_acl): Likewise.
3591
3592 2008-12-07  Bruno Haible  <bruno@clisp.org>
3593
3594         Add support for new flavours of ACLs on AIX. (Untested.)
3595         * lib/file-has-acl.c [AIX] (acl_nfs4_nontrivial): New function.
3596         (file_has_acl): Add support for newer AIX.
3597         * lib/set-mode-acl.c (qset_acl): Likewise.
3598         * tests/test-sameacls.c (main): Fix use of aclx_get function. Hint by
3599         Rainer Tammer <tammer@tammer.net>.
3600
3601 2009-09-26  Eric Blake  <ebb9@byu.net>
3602
3603         argp: fix compilation of getopt
3604         * lib/getopt.in.h (includes): Use different guard than glibc.
3605         Reported by Sergey Poznyakoff.
3606
3607         doc: mention more cygwin 1.7 status
3608         * doc/posix-functions/access.texi (access): Mention cygwin 1.5
3609         bug.
3610         * doc/posix-functions/execl.texi (execl): Likewise.
3611         * doc/posix-functions/execle.texi (execle): Likewise.
3612         * doc/posix-functions/execlp.texi (execlp): Likewise.
3613         * doc/posix-functions/execv.texi (execv): Likewise.
3614         * doc/posix-functions/execve.texi (execve): Likewise.
3615         * doc/posix-functions/execvp.texi (execvp): Likewise.
3616         * doc/glibc-functions/canonicalize_file_name.texi
3617         (canonicalize_file_name): Cygwin 1.7 now provides this.
3618         * doc/glibc-functions/euidaccess.texi (euidaccess): Likewise.
3619         * doc/posix-functions/fchmodat.texi (fchmodat): Mention limitation
3620         on AT_SYMLINK_NOFOLLOW.
3621
3622 2009-09-24  Eric Blake  <ebb9@byu.net>
3623
3624         test-linkat: make test more robust
3625         * tests/test-linkat.c (main): Avoid collision with EEXIST.
3626
3627         getopt: fix inclusion guards for cygwin
3628         * modules/getopt-posix (Depends-on): Add include-next.
3629         (Makefile.am): Substitute more items in replacement header.
3630         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Also check for native
3631         <getopt.h>.
3632         * lib/getopt.in.h (includes): Use split inclusion guard, and
3633         prefer <getopt.h> over include <unistd.h> when one is present.
3634         (option): Also override name of 'struct option'.
3635
3636         same-inode: revert prior change; it is not yet ready
3637         * NEWS: Undo mention of this change.
3638         * lib/same-inode.h (same-inode.h): Undo tri-state change.
3639         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Update caller.
3640         * lib/cycle-check.c (cycle_check): Likewise.
3641         * lib/same.c (same_name): Likewise.
3642         * lib/at-func2.c (at_func2): Likewise.
3643
3644 2009-09-23  Eric Blake  <ebb9@byu.net>
3645
3646         linkat: new module
3647         * modules/linkat: New file.
3648         * lib/at-func2.c (at_func2): Likewise.
3649         * lib/linkat.c (linkat): Likewise.
3650         * m4/linkat.m4 (gl_FUNC_LINKAT): Likewise.
3651         * lib/openat-priv.h (at_func2): Add declaration.
3652         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
3653         * modules/unistd (Makefile.am): Substitute them.
3654         * lib/unistd.in.h (linkat): Declare it.
3655         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
3656         * doc/posix-functions/linkat.texi (linkat): Likewise.
3657         * doc/posix-functions/link.texi (link): Tweak wording.
3658         * tests/test-link.c (main): Move guts...
3659         * tests/test-link.h (test_link): ...into new file.
3660         * modules/linkat-tests: New test.
3661         * tests/test-linkat.c: Likewise.
3662         * modules/link-tests (Files): Ship new file.
3663         (Depends-on): Add stdbool.
3664
3665         dirname: add library-safe mdir_name
3666         * lib/dirname.h (mdir_name): New prototype.
3667         * lib/dirname.c (dir_name): Move guts...
3668         (mdir_name): ...to new function that avoids xalloc_die.
3669
3670         fchdir: another mingw fix
3671         * modules/fchdir (Depends-on): Drop canonicalize-lgpl.
3672         * lib/fchdir.c (get_name): New helper method; skips canonicalize
3673         on mingw (where it has not yet been ported), and make it optional
3674         elsewhere.
3675         (_gl_register_fd): Use it.
3676
3677         same-inode: make SAME_INODE tri-state, to port to mingw
3678         * NEWS: Mention this change.
3679         * lib/same-inode.h (same-inode.h): Recognize mingw limitation of
3680         st_ino always being 0.
3681         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Update caller.
3682         * lib/cycle-check.c (cycle_check): Likewise.
3683         * lib/same.c (same_name): Likewise.
3684
3685         lstat: avoid mingw compilation error
3686         * m4/lstat.m4 (gl_FUNC_LSTAT): Avoid duplicate calls to
3687         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK, and deal with missing
3688         lstat ourselves.
3689         * lib/lstat.c [!HAVE_LSTAT]: Do nothing if <sys/stat.h> override
3690         was adequate.
3691         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Let lstat module handle
3692         the checks for lstat.
3693         (gl_SYS_STAT_H_DEFAULTS): Set default for HAVE_LSTAT.
3694
3695         link: fix test failure on Solaris 9
3696         * lib/link.c (rpl_link): Don't assume link will catch bogus
3697         trailing slash on source.
3698
3699         test-symlinkat: enhance test
3700         * tests/test-readlink.c (main): Move guts...
3701         * tests/test-readlink.h (test_readlink): ...into new file.
3702         * tests/test-symlink.c (main): Move guts...
3703         * tests/test-symlink.h (test_symlink): ...into new file.
3704         * tests/test-symlinkat.c (main): Use new files for further
3705         coverage.
3706         (do_symlink, do_readlink): New helper functions.
3707         * modules/symlink-tests (Files): Ship new file.
3708         (Depends-on): Add stdbool.
3709         * modules/readlink-tests (Files): Ship new file.
3710         (Depends-on): Add stdbool.
3711         * modules/symlinkat-tests (Files): Use new files.
3712
3713 2009-09-23  Eric Blake  <ebb9@byu.net>
3714
3715         readlink: document portability issue with symlink length
3716         * doc/posix-functions/lstat.texi (lstat): Mention that some file
3717         systems have bogus st_size on symlinks, and mention the
3718         areadlink-with-size module.
3719         * doc/posix-functions/fstatat.texi (fstatat): Likewise.
3720         * doc/posix-functions/readlink.texi (readlink): Mention the
3721         areadlink module, and ERANGE failure.
3722         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
3723         * tests/test-readlink.c (main): Relax test for AIX, HP-UX.
3724
3725         readlink: fix Solaris 9 bug with trailing slash
3726         * lib/readlink.c (rpl_readlink): Work around trailing slash bug.
3727         * m4/readlink.m4 (gl_FUNC_READLINK): Detect the bug.
3728         * doc/posix-functions/readlink.texi (readlink): Document this.
3729         * modules/readlink-tests: New test.
3730         * tests/test-readlink.c: Likewise.
3731
3732         readlink: fix cygwin 1.5.x bug with return type
3733         * m4/readlink.m4 (gl_FUNC_READLINK): Require correct signature.
3734         * lib/unistd.in.h (readlink): Use ssize_t.
3735         * lib/readlink.c (readlink): Likewise.
3736         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
3737         * modules/unistd (Makefile.am): Substitute it.
3738         * lib/unistd.in.h (readlink): Declare replacement.
3739         * doc/posix-functions/readlink.texi (readlink): Document this.
3740
3741         symlink: use throughout gnulib
3742         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Omit symlink check.
3743         * lib/symlinkat.c (symlinkat) [!HAVE_SYMLINK]: Document why
3744         symlink is not used.
3745         * modules/symlinkat (Depends-on): Add symlink.
3746         * modules/canonicalize-lgpl-tests (Depends-on): Likewise.
3747         * modules/canonicalize-tests (Depends-on): Likewise.
3748         * modules/lstat-tests (Depends-on): Likewise.
3749         * modules/openat-tests (Depends-on): Likewise.
3750         * modules/remove-tests (Depends-on): Likewise.
3751         * modules/rmdir-tests (Depends-on): Likewise.
3752         * modules/unlink-tests (Depends-on): Likewise.
3753         * tests/test-canonicalize-lgpl.c (symlink): Delete stub.
3754         * tests/test-canonicalize.c (symlink): Likewise.
3755         * tests/test-fstatat.c (symlink): Likewise.
3756         * tests/test-lstat.c (symlink): Likewise.
3757         * tests/test-remove.c (symlink): Likewise.
3758         * tests/test-rmdir.c (symlink): Likewise.
3759         * tests/test-unlink.c (symlink): Likewise.
3760         * tests/test-unlinkat.c (symlink): Likewise.
3761
3762         symlink: new module, for Solaris 9 bug
3763         * modules/symlink: New file.
3764         * m4/symlink.m4 (gl_FUNC_SYMLINK): Likewise.
3765         * lib/symlink.c: Likewise.
3766         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add defaults.
3767         * modules/unistd (Makefile.am): Substitute them.
3768         * lib/unistd.in.h (symlink): Declare replacement.
3769         * MODULES.html.sh (File system functions): Mention it.
3770         * doc/posix-functions/symlink.texi (symlink): Likewise.
3771         * modules/symlink-tests: New test.
3772         * tests/test-symlink.c: Likewise.
3773
3774 2009-09-23  Bruno Haible  <bruno@clisp.org>
3775
3776         * gnulib-tool (func_import): Add 'link-warning' to testsrelated_modules
3777         when needed.
3778         Test case: gnulib-tool --import --with-tests atexit inttypes.
3779         Reported by Pauli Miettinen <pauli.miettinen@cs.helsinki.fi>.
3780
3781 2009-09-23  Bruno Haible  <bruno@clisp.org>
3782
3783         * gnulib-tool (func_emit_tests_Makefile_am): Set uses_subdirs in a
3784         subcommand, not in a subshell.
3785
3786 2009-09-22  Eric Blake  <ebb9@byu.net>
3787
3788         unistd: sort replacement declarations
3789         * lib/unistd.in.h: Sort declarations.
3790
3791         open, openat: minor optimization
3792         * lib/open.c (open): If open succeeded, len is non-zero.
3793         * lib/openat.c (rpl_openat): Likewise.
3794
3795         link-follow: ensure correct result
3796         * m4/fcntl_h.m4 (gl_FCNTL_H): Clean up temporary file.
3797         * m4/link-follow.m4 (gl_FUNC_LINK_FOLLOWS_SYMLINK): Likewise, and
3798         distinguish between possible failures.
3799
3800 2009-09-21  Eric Blake  <ebb9@byu.net>
3801
3802         fts: avoid compiler warning
3803         * lib/fts.c (dirent_inode_sort_may_be_useful)
3804         (leaf_optimization_applies) [!__linux__]: Mark unused parameters.
3805
3806 2009-09-19  Bruno Haible  <bruno@clisp.org>
3807
3808         * lib/progreloc.c (canonicalize_file_name): New declaration.
3809
3810 2009-09-19  Eric Blake  <ebb9@byu.net>
3811
3812         link: fix quoting
3813         * m4/link.m4 (gl_FUNC_LINK): Fix shell quoting.
3814
3815         openat: fix openat bugs on Solaris 9
3816         * lib/openat.c (rpl_openat): Work around Solaris 9 bug.
3817         * m4/openat.m4 (gl_FUNC_OPENAT): Also replace openat on Solaris.
3818         * modules/openat (Depends-on): Add open.
3819         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Provide new default.
3820         * modules/fcntl-h (Makefile.am): Substitute it.
3821         * lib/fcntl.in.h (openat): Declare replacement.
3822         * doc/posix-functions/openat.texi (openat): Document this.
3823
3824         openat: move fstatat and unlinkat into correct files
3825         * m4/openat.m4 (gl_FUNC_OPENAT): Adjust which files will be
3826         compiled.
3827         * lib/openat.c (fstatat, unlinkat): Move...
3828         * lib/fstatat.c (fstatat): ...into correct files.
3829         * lib/unlinkat.c (unlinkat): Likewise.
3830
3831         openat: fix unlinkat bugs on Solaris 9
3832         * lib/unlinkat.c (unlinkat): New file.
3833         * modules/openat (Depends-on): Add unlink.
3834         (Files): Distribute it.
3835         * m4/openat.m4 (gl_FUNC_OPENAT): Mark unlinkat for replacement if
3836         trailing slash behavior is broken.
3837         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
3838         * modules/unistd (Makefile.am): Substitute it.
3839         * lib/unistd.in.h (unlinkat): Declare replacement.
3840         * doc/posix-functions/unlinkat.texi (unlinkat): Document this.
3841
3842         openat: fix fstatat bugs on Solaris 9
3843         * lib/fstatat.c (rpl_fstatat): Copy recent fixes from lstat and
3844         stat.
3845         * doc/posix-functions/fstatat.texi (fstatat): Document this.
3846
3847         test-unlinkat: enhance test, to expose Solaris 9 bug
3848         * tests/test-unlink.c (main): Factor guts...
3849         * tests/test-unlink.h (test_rmdir_func): ...into new file.
3850         * tests/test-rmdir.h (test_rmdir_func): Add parameter.
3851         * tests/test-rmdir.c (main): Adjust caller.
3852         * tests/test-unlinkat.c (main): Likewise.  Add unlink tests.
3853         (unlinker): New helper function.
3854         (rmdirat): Enhance check.
3855         * modules/rmdir-tests (Depends-on): Add stdbool.
3856         * modules/unlink-tests (Depends-on): Likewise.
3857         (Files): Add test-unlink.h.
3858         * modules/openat-tests (Files): Likewise.
3859         (Depends-on): Add unlinkdir.
3860
3861         test-fstatat: new test, to expose Solaris 9 bugs
3862         * tests/test-stat.c (main): Factor guts...
3863         * tests/test-stat.h (test_stat_func): ...into new file.
3864         * tests/test-lstat.c (main): Factor guts...
3865         * tests/test-lstat.h (test_lstat_func): ...into new file.
3866         * tests/test-fstatat.c: New file.
3867         * modules/stat-tests (Files): Add test-stat.h.
3868         * modules/lstat-tests (Files): Add test-lstat.h.
3869         (Depends-on): Add stdbool.
3870         * modules/openat-tests (Depends-on): Add pathmax.
3871         (Files): Add test-lstat.h, test-stat.h, test-fstatat.c.
3872         (Makefile.am): Run new test.
3873
3874         remove: new module, for mingw and Solaris 9 bugs
3875         * modules/remove: New file.
3876         * lib/remove.c: Likewise.
3877         * m4/remove.m4 (gl_FUNC_REMOVE): Likewise.
3878         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add witnesses.
3879         * modules/stdio (Makefile.am): Use them.
3880         * lib/stdio.in.h (remove): Declare replacement.
3881         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
3882         * doc/posix-functions/remove.texi (remove): Likewise.
3883         * modules/remove-tests: New test.
3884         * tests/test-remove.c: Likewise.
3885
3886         unlink: new module, for Solaris 9 bug
3887         * modules/unlink: New file.
3888         * lib/unlink.c: Likewise.
3889         * m4/unlink.m4 (gl_FUNC_UNLINK): Likewise.
3890         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
3891         * modules/unistd (Makefile.am): Use them.
3892         * lib/unistd.in.h (stat): Declare replacement.
3893         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
3894         * doc/posix-functions/unlink.texi (unlink): Likewise.
3895         * modules/unlink-tests: New test.
3896         * tests/test-unlink.c: Likewise.
3897
3898         lstat: fix Solaris 9 bug
3899         * lib/lstat.c (lstat): Also check for trailing slash on
3900         non-symlink, non-directories.  Use stat module to simplify logic.
3901         * doc/posix-functions/lstat.texi (lstat): Document it.
3902         * modules/lstat-tests (Depends-on): Add errno, same-inode.
3903         (configure.ac): Check for symlink.
3904         * tests/test-lstat.c (main): Add more tests.
3905
3906         stat: add as dependency to other modules
3907         * modules/chown (Depends-on): Add stat.
3908         * modules/euidaccess (Depends-on): Likewise.
3909         * modules/fchdir (Depends-on): Likewise.
3910         * modules/isdir (Depends-on): Likewise.
3911         * modules/link (Depends-on): Likewise.
3912         * modules/lstat (Depends-on): Likewise.
3913         * modules/mkdir-p (Depends-on): Likewise.
3914         * modules/modechange (Depends-on): Likewise.
3915         * modules/open (Depends-on): Likewise.
3916         * modules/readlink (Depends-on): Likewise.
3917         * modules/same (Depends-on): Likewise.
3918
3919         stat: fix Solaris 9 bug
3920         * m4/stat.m4 (gl_FUNC_STAT): Detect Solaris 9 bug with trailing
3921         slash.
3922         * lib/stat.c (rpl_stat): Work around it.
3923         * doc/posix-functions/stat.texi (stat): Update documentation.
3924
3925         stat: new module, for mingw bug
3926         * modules/stat: New file.
3927         * lib/stat.c: Likewise.
3928         * m4/stat.m4 (gl_FUNC_STAT): Likewise.
3929         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
3930         * modules/sys_stat (Makefile.am): Use them.
3931         * lib/sys_stat.in.h (stat): Declare replacement.
3932         * lib/openat.c (fstatat): Deal with lstat and stat being function
3933         macros.
3934         * modules/openat (Depends-on): Add inline.
3935         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
3936         * doc/posix-functions/stat.texi (stat): Likewise.
3937         * modules/stat-tests: New test.
3938         * tests/test-stat.c: Likewise.
3939
3940 2009-09-19  Jim Meyering  <meyering@redhat.com>
3941
3942         syntax-check: detect unnecessary inclusion of canonicalize.h
3943         * top/maint.mk (sc_prohibit_canonicalize_without_use): New rule.
3944
3945 2009-09-19  Eric Blake  <ebb9@byu.net>
3946
3947         canonicalize-lgpl: adjust clients to use correct header
3948         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE)
3949         (gl_CANONICALIZE_LGPL): Use correct shell quoting.
3950         * modules/relocatable-prog-wrapper (Files): Drop canonicalize.h.
3951         * lib/fchdir.c (includes): Use <stdlib.h>, not "canonicalize.h".
3952         * lib/progreloc.c (includes): Likewise.
3953
3954 2009-09-19  Jim Meyering  <meyering@redhat.com>
3955
3956         test-posixtm.c: correct a comment
3957         * tests/test-posixtm.c: Correct first-line comment.
3958         Spotted by Eric Blake.
3959
3960 2009-09-16  Jim Meyering  <meyering@redhat.com>
3961
3962         posixtm-tests: make T const-correct; add a test case
3963         * tests/test-posixtm.c (T): Declare const.
3964         Add a test for -(2^31+1).
3965         Remove useless can-succeed-only-in-2002 test.
3966
3967         posixtm-tests: adjust the sole failing test
3968         * tests/test-posixtm.c: Correct 0000-01-01 00:00:00 test so that
3969         expected output matches what mktime now produces.  Cross-checked via
3970         erlang's calendar:datetime_to_gregorian_seconds({{1970,1,1},{0,0,0}})
3971
3972         posixtm: move #ifdef'd tests into a new module
3973         * lib/posixtm.c (posixtime): Remove #ifdef'd tests.  Move to...
3974         * tests/test-posixtm.c: ... this new file.
3975         * modules/posixtm-tests: New module.
3976
3977 2009-09-19  Eric Blake  <ebb9@byu.net>
3978
3979         openat: simplify use of at-func.c
3980         * lib/at-func.c (includes): Include prerequisites here, to
3981         simplify requirements on client files.
3982         * lib/openat-priv.h: Add double-inclusion guard.
3983         * lib/faccessat.c (includes): Simplify.
3984         * lib/fchmodat.c (includes): Likewise.
3985         * lib/fchownat.c (includes): Likewise.
3986         * lib/mkdirat.c (includes): Likewise.
3987         * lib/mkfifoat.c (includes): Likewise.
3988         * lib/symlinkat.c (includes): Likewise.
3989
3990         openat: allow return of fd 0
3991         * modules/chdir-long (Depends-on): Relax openat-safer to openat.
3992         * modules/save-cwd (Depends-on): Replace fcntl-safer with
3993         unistd-safer.
3994         * lib/chdir-long.c (includes): Replace "fcntl--.h" with
3995         <fcntl.h>; this module does not leak fds.
3996         * lib/openat.c (includes): Do not use "fcntl_safer"; plain openat
3997         must be allowed to return 0, leaving openat_safer to add the
3998         safety.
3999         (openat_permissive): Avoid writing to just-opened fd 2 if
4000         restoring the current directory fails.
4001         * lib/openat-die.c (openat_restore_fail): Add comment.
4002         * lib/save-cwd.c (includes): Make "fcntl--.h" conditional.
4003         (save_cwd): Guarantee safe fd, but without use of open_safer.
4004         * tests/test-openat.c: New test.
4005         * modules/openat-tests (Files, Makefile.am): Distribute and build
4006         new file.
4007
4008         relocatable-prog-wrapper: fix build
4009         * modules/relocatable-prog-wrapper (Files): Update name of
4010         canonicalize m4 file, broken on 2009-09-17.
4011         Reported by emad hajjar <aleppos@hotmail.com>.
4012
4013 2009-09-19  Bruno Haible  <bruno@clisp.org>
4014
4015         * lib/safe-alloc.h: Use the standard header with GPL copyright.
4016         * lib/safe-alloc.c: Likewise.
4017         Reported by Ian Beckwith <ianb@erislabs.net>.
4018
4019 2009-09-18  Bruno Haible  <bruno@clisp.org>
4020
4021         * gnulib-tool: Add advice to "cannot find configure.ac" error message.
4022         Reported by <erobles@sensacd.com.mx>.
4023
4024 2009-09-17  Eric Blake  <ebb9@byu.net>
4025
4026         canonicalize: in CAN_ALL_BUT_LAST, allow trailing slash
4027         * lib/canonicalize.c (canonicalize_filename_mode): Skip trailing
4028         slashes when checking if last component is missing.
4029         * tests/test-canonicalize.c (main): Test this.
4030
4031         canonicalize, canonicalize-lgpl: honor // if distinct from /
4032         * modules/canonicalize (Files): Add double-slash-root.m4.
4033         * modules/canonicalize-lgpl (Files): Likewise.
4034         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE)
4035         (gl_CANONICALIZE_LGPL_SEPARATE): Add dependency.
4036         * lib/canonicalize.c (DOUBLE_SLASH_IS_DISTINCT_ROOT): Provide
4037         fallback definition.
4038         (canonicalize_filename_mode): Use it to protect //.
4039         * lib/canonicalize-lgpl.c (DOUBLE_SLASH_IS_DISTINCT_ROOT)
4040         (__realpath): Likewise.
4041         * tests/test-canonicalize.c (main): Test this.
4042         * tests/test-canonicalize-lgpl.c (main): Likewise.
4043         * modules/canonicalize-tests (Depends-on): Add same-inode.
4044         * modules/canonicalize-lgpl-tests (Depends-on): Likewise.
4045
4046         canonicalize-lgpl: fix glibc bug with trailing slash
4047         * m4/canonicalize-lgpl.m4: Move contents...
4048         * m4/canonicalize.m4: ...here.
4049         (gl_CANONICALIZE_LGPL): Factor realpath check...
4050         (gl_FUNC_REALPATH_WORKS): ...into new macro.  Enhance to catch
4051         glibc 2.3.5 bug, fixed 2005-04-27.
4052         (gl_FUNC_CANONICALIZE_FILENAME_MODE): Use it.
4053         (gl_PREREQ_CANONICALIZE_LGPL): Inline...
4054         (gl_CANONICALIZE_LGPL_SEPARATE): ...into this macro.
4055         * modules/canonicalize-lgpl (Files): Manage file rename.
4056         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide default.
4057         * modules/stdlib (Makefile.am): Substitute witness.
4058         * lib/stdlib.in.h (canonicalize_file_name): Declare if replacement
4059         is needed.
4060         * lib/canonicalize-lgpl.c: Also compile if canonicalize_file_name
4061         replacement is required.
4062         * lib/canonicalize.c (canonicalize_file_name): Likewise.
4063         * doc/glibc-functions/canonicalize_file_name.texi
4064         (canonicalize_file_name): Document this.
4065         * doc/posix-functions/realpath.texi (realpath): Likewise.
4066
4067         canonicalize-lgpl: reject non-directory with trailing slash
4068         * lib/canonicalize-lgpl.c (__realpath): Synchronize with glibc.
4069         * tests/test-canonicalize-lgpl.c (main): Enhance test.  This
4070         catches failures in glibc 2.3.5.
4071         * tests/test-canonicalize.c (main): Likewise.
4072
4073         canonicalize-lgpl: use native realpath if it works
4074         * lib/canonicalize-lgpl.c (realpath): Guard with
4075         FUNC_REALPATH_WORKS.
4076         * lib/stdlib.in.h (realpath): Make declaration optional based on
4077         HAVE_REALPATH.
4078         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL): Check whether
4079         native realpath works.
4080         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide default.
4081         * modules/stdlib (Makefile.am): Substitute witness.
4082
4083         canonicalize, canonicalize-lgpl: use <stdlib.h>
4084         * modules/canonicalize-lgpl (Files): Drop canonicalize.h.
4085         (Include): Mention <stdlib.h>.
4086         (configure.ac): Mention functions we provide.
4087         * modules/canonicalize (configure.ac): Likewise.
4088         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL): Always replace
4089         realpath if canonicalize_file_name is missing.
4090         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide defaults.
4091         * modules/stdlib (Makefile.am): Substitute witnesses.
4092         * lib/stdlib.in.h (canonicalize_file_name, realpath): Declare.
4093         * lib/canonicalize-lgpl.c (includes): Adjust accordingly.
4094         * lib/canonicalize.h (canonicalize_file_name): Drop declaration.
4095         * NEWS: Document this.
4096         * doc/glibc-functions/canonicalize_file_name.texi
4097         (canonicalize_file_name): Likewise.
4098         * doc/posix-functions/realpath.texi (realpath): Likewise.
4099         * tests/test-canonicalize-lgpl.c (includes): Use <stdlib.h>.
4100
4101         test-canonicalize: consolidate into single C program
4102         * tests/test-canonicalize.sh: Delete; move setup into...
4103         * tests/test-canonicalize.c (main): ...the program, making it
4104         easier to run in debugger.  Add some tests.
4105         * modules/canonicalize-tests (Files): Remove unused file.
4106         (Depends-on): Add progname.
4107         (configure.ac, Makefile.am): Simplify.
4108
4109         test-canonicalize-lgpl: consolidate into single C program
4110         * tests/test-canonicalize-lgpl.sh: Delete; move setup into...
4111         * tests/test-canonicalize-lgpl.c (main): ...the program, making it
4112         easier to run in debugger.  Add some tests.
4113         * modules/canonicalize-lgpl-tests (Files): Remove unused file.
4114         (configure.ac, Makefile.am): Simplify.
4115
4116         canonicalize: avoid resolvepath
4117         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE): Delete
4118         unnecessary checks.
4119         * lib/canonicalize.c (includes): Simplify.
4120         (canonicalize_file_name): Drop resolvepath implementation.
4121         * modules/canonicalize (Depends-on): Drop filenamecat.
4122
4123         canonicalize: don't lose errno
4124         * lib/canonicalize.c (canonicalize_filename_mode): Protect errno
4125         over calls to free.
4126
4127         canonicalize: simplify errno handling
4128         * lib/canonicalize.c (__set_errno): Delete macro, and use direct
4129         assignment.
4130
4131         canonicalize, canonicalize-lgpl: update module dependencies
4132         * modules/canonicalize (Depends-on): Add extensions, lstat,
4133         pathmax, stdlib.
4134         (Files): Drop pathmax.h.
4135         (configure.ac): Adjust macro name.
4136         * modules/canonicalize-lgpl (Depends-on): Add errno, extensions,
4137         lstat, stdlib, sys_stat.
4138         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Rename...
4139         (gl_FUNC_CANONICALIZE_FILENAME_MODE): ...to this, and require
4140         extensions.
4141         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL)
4142         (gl_CANONICALIZE_LGPL_SEPARATE): Require extensions.
4143         (gl_PREREQ_CANONICALIZE_LGPL): Assume unistd.h.
4144         * lib/canonicalize.h (canonicalize_file_name): Use <stdlib.h>
4145         declaration, if available.
4146         * lib/canonicalize-lgpl.c [HAVE_READLINK]: Delete this condition;
4147         we can rely on the readlink module.
4148         (MAXSYMLINKS): Also consult SYMLOOP_MAX.
4149         (includes): Use <unistd.h> unconditionally.
4150
4151 2009-09-17  Eric Blake  <ebb9@byu.net>
4152
4153         maint: make Include sections of modules consistent
4154         * modules/alloca: Use only header name; no need to list #include.
4155         * modules/alloca-opt: Likewise.
4156         * modules/arpa_inet: Likewise.
4157         * modules/canon-host: Likewise.
4158         * modules/configmake: Likewise.
4159         * modules/dirent: Likewise.
4160         * modules/eealloc: Likewise.
4161         * modules/environ: Likewise.
4162         * modules/fchdir: Likewise.
4163         * modules/fcntl: Likewise.
4164         * modules/fcntl-h: Likewise.
4165         * modules/gethrxtime: Likewise.
4166         * modules/gettime: Likewise.
4167         * modules/ignore-value: Likewise.
4168         * modules/inet_ntop: Likewise.
4169         * modules/inet_pton: Likewise.
4170         * modules/inttypes: Likewise.
4171         * modules/isnand-nolibm: Likewise.
4172         * modules/isnanf-nolibm: Likewise.
4173         * modules/mbchar: Likewise.
4174         * modules/mbfile: Likewise.
4175         * modules/mbiter: Likewise.
4176         * modules/mbuiter: Likewise.
4177         * modules/netdb: Likewise.
4178         * modules/netinet_in: Likewise.
4179         * modules/nproc: Likewise.
4180         * modules/pagealign_alloc: Likewise.
4181         * modules/poll: Likewise.
4182         * modules/printf-frexp: Likewise.
4183         * modules/pthread: Likewise.
4184         * modules/putenv: Likewise.
4185         * modules/random_r: Likewise.
4186         * modules/relocatable-prog: Likewise.
4187         * modules/search: Likewise.
4188         * modules/select: Likewise.
4189         * modules/selinux-h: Likewise.
4190         * modules/settime: Likewise.
4191         * modules/signal: Likewise.
4192         * modules/size_max: Likewise.
4193         * modules/socklen: Likewise.
4194         * modules/ssize_t: Likewise.
4195         * modules/stdarg: Likewise.
4196         * modules/stdbool: Likewise.
4197         * modules/stddef: Likewise.
4198         * modules/stdint: Likewise.
4199         * modules/stdio: Likewise.
4200         * modules/stdlib: Likewise.
4201         * modules/string: Likewise.
4202         * modules/strings: Likewise.
4203         * modules/sys_file: Likewise.
4204         * modules/sys_ioctl: Likewise.
4205         * modules/sys_select: Likewise.
4206         * modules/sys_socket: Likewise.
4207         * modules/sys_stat: Likewise.
4208         * modules/sys_time: Likewise.
4209         * modules/sys_times: Likewise.
4210         * modules/sys_utsname: Likewise.
4211         * modules/sys_wait: Likewise.
4212         * modules/sysexits: Likewise.
4213         * modules/time: Likewise.
4214         * modules/times: Likewise.
4215         * modules/tmpfile: Likewise.
4216         * modules/trim: Likewise.
4217         * modules/unistd: Likewise.
4218         * modules/wchar: Likewise.
4219         * modules/wctype: Likewise.
4220
4221 2009-09-17  Bruno Haible  <bruno@clisp.org>
4222
4223         Make getdate.y compile on QNX and NetBSD 5 / i386.
4224         * m4/getdate.m4 (gl_GETDATE): Conditionally define
4225         TIME_T_FITS_IN_LONG_INT.
4226         * lib/getdate.y (long_time_t): New type.
4227         (relative_time): Change type of 'seconds' field to long_time_t.
4228         (get_date): Update types of local variables. Check against overflow
4229         during conversion from long_time_t to time_t.
4230         Reported by Matt Kraai <kraai@ftbfs.org>
4231         and Hasso Tepper <hasso@netbsd.org>.
4232
4233 2009-09-17  Bruno Haible  <bruno@clisp.org>
4234
4235         * modules/COPYING: Update copyright years.
4236         * modules/README: Likeiwse.
4237         * doc/gnulib-intro.texi (Copyright): Use a wildcard year.
4238         Reported by Ian Beckwith <ianb@erislabs.net>.
4239
4240 2009-09-17  Ian Beckwith  <ianb@erislabs.net>  (tiny change)
4241
4242         * users.txt: Update references for gnuit package.
4243
4244 2009-09-17  Ian Beckwith  <ianb@erislabs.net>  (tiny change)
4245
4246         * m4/getdelim.m4: Fix typo in copyright line.
4247
4248 2009-09-17  Bruno Haible  <bruno@clisp.org>
4249
4250         * lib/atoll.c: Use the standard header with GPL copyright.
4251         * lib/argz.in.h: Likewise.
4252         * lib/glob.c: Likewise.
4253         * lib/glob-libc.h: Likewise.
4254         * lib/random_r.c: Likewise.
4255         * lib/siglist.h: Likewise.
4256         * lib/strsignal.c: Likewise.
4257         Reported by Ian Beckwith <ianb@erislabs.net>.
4258
4259 2009-09-17  Eric Blake  <ebb9@byu.net>
4260
4261         rmdir: ensure correct dependency order
4262         * m4/rmdir.m4 (gl_FUNC_RMDIR): Require unistd defaults.
4263
4264 2009-09-17  Bruno Haible  <bruno@clisp.org>
4265
4266         Disable assertion that fails on NetBSD 5 / i386.
4267         * lib/mktime.c (ydhms_diff): Disable assertion about time_t size.
4268         Reported by Sam Steingold <sds@gnu.org>
4269         and Hasso Tepper <hasso@netbsd.org>.
4270
4271 2009-09-16  Eric Blake  <ebb9@byu.net>
4272
4273         unlinkdir: port to mingw
4274         * m4/unlinkdir.m4 (gl_UNLINKDIR): Add mingw to list of platforms
4275         on which no one can unlink a directory.
4276
4277         stdlib: sort witness names
4278         * modules/stdlib (Makefile.am): Sort replacements.
4279         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Likewise.
4280         * lib/stdlib.in.h: Likewise.
4281
4282         parse-duration-tests: avoid link failure
4283         * modules/parse-duration-tests (test_parse_duration_LDADD): Add
4284         LIBINTL.
4285         Reported by Tom G. Christensen.
4286
4287         openat-tests: ensure unlinkat behaves like rmdir
4288         * tests/test-rmdir.c (main): Factor guts...
4289         * tests/test-rmdir.h (test_rmdir_func): ...into new file.
4290         * modules/rmdir-tests (Files): Ship new file.
4291         * modules/openat-tests: New test.
4292         * tests/test-unlinkat.c: Likewise.
4293
4294         rmdir-errno: mark obsolete, it is unsafe for cross-compilation
4295         * modules/rmdir-errno (Status, Notice): Now obsolete.
4296
4297         rmdir: work around cygwin 1.5.x and mingw bugs
4298         * m4/rmdir.m4 (gl_FUNC_RMDIR): Detect the bugs.
4299         * lib/rmdir.c (rmdir): Work around it.
4300         * modules/rmdir (Status, Notice): No longer obsolete.
4301         (Files): Add dos.m4.
4302         (Depends-on): Add unistd.
4303         (configure.ac): Set witnesses.
4304         (License): Relax to LGPLv2+.
4305         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set defaults.
4306         * modules/unistd (Makefile.am): Substitute witnesses.
4307         * lib/unistd.in.h (rmdir): Declare replacement.
4308         * doc/posix-functions/rmdir.texi (rmdir): Document this.
4309         * modules/rmdir-tests: New tests.
4310         * tests/test-rmdir.c: Likewise.
4311
4312 2009-09-15  Eric Blake  <ebb9@byu.net>
4313
4314         fchdir: improve use of replacement functions
4315         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Set appropriate witnesses.
4316         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add REPLACE_FSTAT.
4317         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Add REPLACE_OPENDIR,
4318         REPLACE_CLOSEDIR.
4319         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add REPLACE_DUP.
4320         * modules/sys_stat (Makefile.am): Substitute correct witness.
4321         * modules/dirent (Makefile.am): Likewise.
4322         * modules/unistd (Makefile.am): Likewise.
4323         * lib/dirent.in.h (opendir, closedir): Use better witnesses.
4324         * lib/unistd.in.h (dup): Likewise.
4325         * lib/sys_stat.in.h (fstat): Likewise.
4326
4327         maint: ignore gnulib-tool temp files
4328         * .gitignore: Ignore files created during gnulib-tool --test.
4329
4330 2009-09-13  Jim Meyering  <meyering@redhat.com>
4331
4332         posixtm: don't reject a time that specify "60" as the number of seconds
4333         * lib/posixtm.c (posixtime): The code to reject invalid dates
4334         would also reject a time specified with the .60 suffix.
4335         But POSIX allows that, in order to accommodate leap seconds.
4336         So don't reject it.
4337         (main): Adjust tests accordingly.
4338         * modules/posixtm (Depends-on): Add stpcpy.
4339
4340 2009-09-11  Jim Meyering  <meyering@redhat.com>
4341
4342         announce-gen: include [$release_type] in emitted Subject:
4343         * build-aux/announce-gen (get_tool_versions): Include [$release_type],
4344         e.g., [stable] in the emitted Subject: line.
4345
4346 2009-09-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4347
4348         Remove obsolete macros from several modules.
4349         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Replace
4350         obsolete Autoconf macros with their modern counterparts.
4351         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): Likewise.
4352         * m4/gc-camellia.m4 (gl_GC_CAMELLIA): Likewise.
4353         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Likewise.
4354         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
4355         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Likewise.
4356         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
4357         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Likewise.
4358         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): Likewise.
4359         * m4/poll.m4 (gl_FUNC_POLL): Likewise.
4360         * m4/readline.m4 (gl_FUNC_READLINE): Likewise.
4361         * m4/round.m4 (gl_FUNC_ROUND): Likewise.
4362         * m4/roundf.m4 (gl_FUNC_ROUNDF): Likewise.
4363         * m4/select.m4 (gl_FUNC_SELECT): Likewise.
4364         * m4/sockets.m4 (gl_SOCKETS): Likewise.
4365         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Likewise.
4366         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Likewise.
4367         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
4368         * m4/time_r.m4 (gl_TIME_R): Likewise.
4369         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Likewise.
4370         * m4/vararrays.m4 (AC_C_VARARRAYS): Likewise.
4371         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
4372
4373         Fix copyright header in build-aux scripts.
4374         * build-aux/git-version-gen: Fix copyright header to match GPLv3
4375         recommendation.
4376         * build-aux/ncftpput-ftp: Likewise.
4377         * build-aux/update-copyright: Likewise.
4378
4379 2009-09-09  Eric Blake  <ebb9@byu.net>
4380
4381         test-link: allow Linux choice of errno
4382         * tests/test-link.c (main): Relax test for alternate error.
4383
4384         strndup: fix improper m4 caching
4385         * m4/strndup.m4 (gl_FUNC_STRNDUP): Rework to avoid side effects
4386         inside AC_CACHE_CHECK.  Use REPLACE_STRNDUP, not HAVE_STRNDUP.
4387         (gl_PREREQ_STRNDUP): Delete.
4388         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Update default.
4389         * modules/string (Makefile.am): Substitute it.
4390         * lib/string.in.h (strndup): Modernize prototype.
4391
4392         getcwd: port to mingw
4393         * m4/getcwd.m4 (gl_FUNC_GETCWD): Mingw directories are very
4394         different from the POSIX assumptions made throughout the getcwd
4395         module; fortunately, the mingw getcwd does not need replacement.
4396         (gl_FUNC_GETCWD_NULL): Skip test on mingw.
4397         * modules/getcwd-tests: New test.
4398         * tests/test-getcwd.c: Likewise.
4399
4400         link: fix platform bugs
4401         * m4/link.m4 (gl_FUNC_LINK): Detect Solaris and Cygwin bugs.
4402         * lib/link.c (link): Work around them.  Fix related mingw bug.
4403         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add REPLACE_LINK.
4404         * modules/unistd (Makefile.am): Substitute it.
4405         * lib/unistd.in.h (link): Declare replacement.
4406         * doc/posix-functions/link.texi (link): Document this.
4407         * modules/link (Depends-on): Add strdup-posix, sys_stat.
4408
4409         test-link: consolidate into single C program, test more cases
4410         * tests/test-link.sh: Delete.
4411         * tests/test-link.c: Test more error conditions.  Exposes bugs on
4412         at least Cygwin and Solaris.
4413         * modules/link-tests (Files): Remove unused file.
4414         (Depends-on): Add errno, sys_stat.
4415         (Makefile.am): Simplify.
4416
4417 2009-09-08  Bruno Haible  <bruno@clisp.org>
4418
4419         Work around towlower, towupper bug on mingw.
4420         * lib/wctype.in.h (towlower, towupper) [__MINGW32__]: New replacements.
4421         * m4/wctype.m4 (gl_WCTYPE_H): Replace <wctype.h> also on mingw.
4422         * doc/posix-functions/towlower.texi: Mention the mingw bug.
4423         * doc/posix-functions/towupper.texi: Likewise.
4424         Reported by Eric Blake.
4425
4426 2009-09-08  Jim Meyering  <meyering@redhat.com>
4427
4428         build: don't try to run autoheader if we don't use it
4429         * build-aux/bootstrap: Define AUTOHEADER=true when AC_CONFIG_HEADERS
4430         is not used in configure.ac.
4431
4432 2009-09-08  Eric Blake  <ebb9@byu.net>
4433
4434         euidaccess: fix compilation error
4435         * lib/euidaccess.c (includes): Add <fcntl.h>, for AT_EACCESS.
4436
4437         rawmemchr: relax license
4438         * modules/rawmemchr (License): Derived from glibc, so LGPLv2+ is
4439         okay.
4440         Reported by Jim Meyering.
4441
4442         mkfifoat: new module
4443         * modules/mkfifoat: New file.
4444         * lib/mkfifoat.c: Likewise.
4445         * m4/mkfifoat.m4 (gl_FUNC_MKFIFOAT): Likewise.
4446         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
4447         * modules/sys_stat (Makefile.am): Use them.
4448         * lib/sys_stat.in.h (mkfifoat, mknodat): Declare them.
4449         * MODULES.html.sh (File system functions): Mention module.
4450         * doc/posix-functions/mkfifoat.texi (mkfifoat): Likewise.
4451         * doc/posix-functions/mknodat.texi (mknodat): Likewise.
4452         * modules/mkfifoat-tests: New test.
4453         * tests/test-mkfifoat.c: Likewise.
4454
4455         strchrnul: relax license
4456         * modules/strchrnul (License): Derived from glibc, so LGPLv2+ is
4457         okay.
4458         Reported by Jim Meyering.
4459
4460 2009-09-08  Eric Blake  <ebb9@byu.net>
4461
4462         fstatat: fix compilation on Solaris
4463         * lib/fstatat.c (includes): Add fcntl.h.
4464         Reported by Pádraig Brady.
4465
4466 2009-09-07  Eric Blake  <ebb9@byu.net>
4467
4468         rename: modernize replacement
4469         * modules/rename (Depends-on): Add stdio.
4470         (configure.ac): Declare witness.
4471         * m4/rename.m4 (gl_FUNC_RENAME): Ensure dependency order, and let
4472         stdio take care of replacement.
4473         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
4474         * modules/stdio (Makefile.am): Substitute them.
4475         * lib/stdio.in.h (rename): Declare replacement.
4476         * lib/rename.c (includes): Allow cross-compilation to non-windows
4477         machines.
4478         * doc/posix-functions/rename.texi (rename): Improve
4479         documentation.
4480
4481         stdio: sort witness names
4482         * modules/stdio (Makefile.am): Sort replacements.
4483         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
4484         * lib/stdio.in.h: Likewise.
4485
4486         getcwd: minor cleanups
4487         * lib/getcwd.c (AT_FDCWD): Delete; rely on <fcntl.h> instead.
4488         (is_ENAMETOOLONG): Delete; ENAMETOOLONG is portable.
4489
4490         openat: provide more convenience names
4491         * modules/faccessat (configure.ac): Add C witness.
4492         * lib/unistd.in.h (readlinkat): Fix typo.
4493         * lib/openat.h (statat, lstatat, accessat, euidaccessat): New
4494         convenience wrappers.
4495         * top/maint.mk (sc_prohibit_openat_without_use): Allow these
4496         wrappers in syntax checks.
4497
4498 2009-09-06  Eric Blake  <ebb9@byu.net>
4499
4500         doc: fix comments in recent patches
4501         * lib/faccessat.c: Mention correct function.
4502         * lib/fchmodat.c: Likewise.
4503         * lib/fchownat.c: Likewise.
4504         * lib/symlinkat.c: Likewise.
4505         * doc/posix-headers/fcntl.texi (fcntl.h): Cygwin 1.7 has AT_*
4506         constants.
4507
4508         faccessat, symlinkat: continue cleanup of previous patch
4509         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Ensure dependency order.
4510         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Likewise.
4511         * modules/unistd (Makefile.am): Substitute GNULIB_READLINKAT.
4512         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Offer GNULIB_READLINKAT.
4513         * modules/symlinkat (configure.ac): Set GNULIB_READLINKAT.
4514         * lib/unistd.in.h (readlinkat): Declare if GNULIB_READLINKAT is
4515         set.
4516
4517 2009-09-06  Bruno Haible  <bruno@clisp.org>
4518
4519         * lib/sys_stat.in.h (fchmodat): Declare if GNULIB_FCHMODAT is set.
4520         (fstatat): Declare if GNULIB_FSTATAT is set.
4521         (mkdirat): Declare if GNULIB_MKDIRAT is set.
4522         * lib/unistd.in.h (fchownat): Declare if GNULIB_FCHOWNAT is set.
4523         (unlinkat): Declare if GNULIB_UNLINKAT is set.
4524         * modules/fcntl-h (Files): Remove m4/openat.m4.
4525         * modules/sys_stat (Files): Remove m4/openat.m4.
4526         (Makefile.am): Substitute GNULIB_FCHMODAT, GNULIB_FSTATAT,
4527         GNULIB_MKDIRAT instead of GNULIB_OPENAT.
4528         * modules/unistd (Files): Remove m4/openat.m4.
4529         (Makefile.am): Substitute GNULIB_FCHOWNAT, GNULIB_UNLINKAT instead of
4530         GNULIB_OPENAT.
4531         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Initialize GNULIB_OPENAT,
4532         HAVE_OPENAT here. Don't require gl_OPENAT_DEFAULTS.
4533         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize
4534         GNULIB_FCHMODAT, GNULIB_FSTATAT, GNULIB_MKDIRAT, HAVE_FCHMODAT,
4535         HAVE_FSTATAT, HAVE_MKDIRAT, REPLACE_FSTATAT here. Don't require
4536         gl_OPENAT_DEFAULTS.
4537         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_FCHOWNAT,
4538         GNULIB_UNLINKAT, HAVE_FCHOWNAT, HAVE_UNLINKAT, REPLACE_FCHOWNAT here.
4539         Don't require gl_OPENAT_DEFAULTS.
4540         * m4/openat.m4 (gl_FUNC_OPENAT): Require gl_FCNTL_H_DEFAULTS,
4541         gl_SYS_STAT_H_DEFAULTS, gl_UNISTD_H_DEFAULTS. Set GNULIB_FCHMODAT,
4542         GNULIB_FSTATAT, GNULIB_MKDIRAT, GNULIB_FCHOWNAT, GNULIB_UNLINKAT.
4543         (gl_OPENAT_DEFAULTS): Remove macro.
4544
4545 2009-09-06  Bruno Haible  <bruno@clisp.org>
4546
4547         * modules/openat (configure.ac): Remove unneeded witness.
4548
4549 2009-09-06  Bruno Haible  <bruno@clisp.org>
4550
4551         Set errno to ENOSYS when a function is entirely unsupported.
4552         * lib/chown.c (rpl_chown) [!HAVE_CHOWN]: Set errno to ENOSYS instead of
4553         EOPNOTSUPP.
4554         * lib/lchown.c (lchown) [!HAVE_CHOWN]: Likewise.
4555         * modules/chown (Depends-on): Remove errno.
4556
4557 2009-09-06  Bruno Haible  <bruno@clisp.org>
4558
4559         * doc/posix-headers/fcntl.texi (AT_*): Mention affected platforms.
4560
4561 2009-09-06  Bruno Haible  <bruno@clisp.org>
4562
4563         * lib/sys_stat.in.h: Fix preprocessor command indentation.
4564
4565 2009-09-06  Ben Pfaff  <blp@gnu.org>
4566             Bruno Haible  <bruno@clisp.org>
4567
4568         Work around a glibc bug in strtok_r.
4569         * lib/string.in.h (strtok_r): Replace if REPLACE_STRTOK_R is set.
4570         Undefine if UNDEFINE_STRTOK_R is set.
4571         * lib/strtok_r.c (strtok_r, __strtok_r) [!_LIBC]: Don't undefine.
4572         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
4573         REPLACE_STRTOK_R and UNDEFINE_STRTOK_R.
4574         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Check against the glibc bug.
4575         * modules/string (Makefile.am): Substitute REPLACE_STRTOK_R,
4576         UNDEFINE_STRTOK_R.
4577         * doc/posix-functions/strtok_r.texi: Mention the glibc 2.7 bug.
4578
4579 2009-09-06  Sergey Poznyakoff  <gray@gnu.org.ua>
4580
4581         exclude: minor fix
4582         * lib/exclude.c: Include wctype.h
4583
4584 2009-09-06  Akim Demaille  <demaille@gostai.com>
4585
4586         bootstrap: improve error message
4587         * build-aux/bootstrap (find_tool): Upon failure, report the list
4588         of candidates.
4589         Honor the initial value of the envvar.
4590
4591 2009-09-05  Eric Blake  <ebb9@byu.net>
4592
4593         symlinkat: new module
4594         * modules/symlinkat: New file.
4595         * lib/symlinkat.c: Likewise.
4596         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Likewise.
4597         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
4598         * modules/unistd (Makefile.am): Use them.
4599         * lib/unistd.in.h (symlinkat, readlinkat): Declare them.
4600         (faccessat) [GNULIB_POSIXCHECK]: Fix typo.
4601         * lib/at-func.c (FUNC_RESULT): New macro, defaulting to int.
4602         * MODULES.html.sh (File system functions): Mention module.
4603         * doc/posix-functions/symlinkat.texi (symlinkat): Likewise.
4604         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
4605         * modules/symlinkat-tests: New test.
4606         * tests/test-symlinkat.c: Likewise.
4607
4608         test-openat-safer: add more checks
4609         * tests/test-openat-safer.c (main): Check more code paths.
4610
4611 2009-09-05  Jim Meyering  <meyering@redhat.com>
4612
4613         syntax-check: detect unnecessary inclusion of openat.h
4614         * top/maint.mk (sc_prohibit_openat_without_use): New rule.
4615
4616 2009-09-05  Bruno Haible  <bruno@clisp.org>
4617
4618         Support towlower, towupper.
4619         * doc/posix-functions/towlower.texi: Mention module wctype.
4620         * doc/posix-functions/towupper.texi: Likewise.
4621         * lib/wctype.in.h (towlower, towupper): New functions.
4622         * tests/test-wctype.c: Include stdio.h, stdlib.h.
4623         (ASSERT): New macro.
4624         (e): New variable.
4625         (main): Test also towlower, towupper. Test WEOF argument.
4626         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
4627
4628 2009-09-05  Bruno Haible  <bruno@clisp.org>
4629
4630         Fix conversion behaviour when the input is invalid.
4631         * lib/striconveh.c (mem_cd_iconveh_internal): Fix storing of question
4632         mark occurring in first pass of indirect conversion.
4633         * tests/test-striconveh.c (main): Test conversion of invalid ASCII
4634         input.
4635         Found by clang's static analyzer.
4636
4637 2009-09-05  Bruno Haible  <bruno@clisp.org>
4638
4639         * tests/test-striconveh.c (main): Test indirect conversion on platforms
4640         where direct conversion is possible.
4641
4642 2009-09-04  Eric Blake  <ebb9@byu.net>
4643
4644         openat: fail with ENOENT on empty name
4645         * lib/openat-proc.c (openat_proc_name): Special-case the empty
4646         buffer.
4647
4648         link-follow: fix logic bug in prior patch
4649         * m4/link-follow.m4 (gl_FUNC_LINK_FOLLOWS_SYMLINK): Fix bug that
4650         reversed sense of yes and no in prior patch.  Avoid confusing
4651         compilation failure with desired semantics.
4652
4653         link-follow: accomodate mingw and cross-compilation
4654         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Rename...
4655         (gl_FUNC_LINK_FOLLOWS_SYMLINK): ...to this.  Change
4656         cross-compilation results to -1, to make linkat easier to
4657         implement when cross-compiling.  Trivially support mingw.
4658         * modules/link-follow (configure.ac): Call new name.
4659         * NEWS: Mention this.
4660
4661 2009-09-03  Eric Blake  <ebb9@byu.net>
4662
4663         faccessat: compile replacement
4664         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Build replacement when
4665         needed.
4666
4667         fts: fix compilation error
4668         * lib/fts.c (includes): Re-add "openat.h", for
4669         openat_needs_fchdir.
4670
4671         faccessat: new module
4672         * modules/faccessat: New file.
4673         * lib/faccessat.c: Likewise.
4674         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Likewise.
4675         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
4676         * modules/unistd (Makefile.am): Use it.
4677         * lib/unistd.in.h (faccessat): Declare it.
4678         (F_OK, X_OK, W_OK, R_OK): Provide definitions.
4679         * lib/fcntl.in.h (AT_SYMLINK_FOLLOW, AT_EACCESS): Likewise.
4680         * MODULES.html.sh (File system functions): Mention it.
4681         * doc/posix-functions/faccessat.texi (faccessat): Likewise.
4682         * doc/posix-headers/fcntl.texi (fcntl.h): Likewise.
4683
4684         euidaccess: prefer POSIX over non-standard implementation
4685         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Check for faccessat.
4686         * lib/euidaccess.c (euidaccess): Use it if available.
4687
4688         openat: make template easier to use
4689         * lib/at-func.c (CALL_FUNC): Allow AT_FUNC_USE_F1_COND and
4690         AT_FUNC_F2 to be undefined.
4691         (VALIDATE_FLAG): New macro; use it to reject bad flags.
4692         (AT_FUNC_USE_F1_COND): Change sense to just flag bit.
4693         * lib/fchmodat.c (AT_FUNC_USE_F1_COND): Adjust.
4694         * lib/fchownat.c (AT_FUNC_USE_F1_COND): Likewise.
4695         * lib/openat.c (AT_FUNC_USE_F1_COND) [fstatat, unlinkat]:
4696         Likewise.
4697         * lib/mkdirat.c (AT_FUNC_F2, AT_FUNC_USE_F1_COND): Delete.
4698         * lib/selinux-at.c (AT_FUNC_F2, AT_FUNC_USE_F1_COND)
4699         [getfileconat, lgetfileconat, setfileconat, lsetfileconat]:
4700         Likewise.
4701
4702         openat: declare in POSIX headers
4703         * NEWS: Mention this.
4704         * modules/openat (configure.ac): Declare witnesses.
4705         (Depends-on): Add fcntl-h, sys_stat, unistd.
4706         (Include): Mention correct headers.
4707         * modules/fcntl-h (Depends-on): Add link-warning.
4708         (Files): Add openat.m4.
4709         (Makefile.am): Substitute witnesses.
4710         * modules/sys_stat (Files, Makefile.am): Likewise.
4711         * modules/unistd (Files, Makefile.am): Likewise.
4712         * m4/openat.m4 (gl_FUNC_OPENAT, gl_FUNC_FCHOWNAT): Set witnesses.
4713         (gl_OPENAT_DEFAULTS): New macro.
4714         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Use it.
4715         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Likewise.
4716         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Likewise.
4717         (SYS_STAT_H): Remove unused variable.
4718         * doc/posix-headers/fcntl.texi (fcntl.h): Update content.
4719         * lib/fcntl--.h (includes): Remove unneeded header.
4720         * lib/openat-safer.c (includes): Likewise.
4721         * lib/openat.h (AT_FDCWD, AT_SYMLINK_NOFOLLOW, AT_REMOVEDIR)
4722         (openat, fstatat, unlinkat, mkdirat, fchmodat, fchownat): Move to
4723         appropriate headers.
4724         (__OPENAT_PREFIX): Delete.
4725         * lib/fcntl.in.h (openat): Provide declaration.
4726         (AT_FDCWD): Fix Solaris bug.
4727         (AT_SYMLINK_NOFOLLOW, AT_REMOVEDIR): Provide macros.
4728         * lib/sys_stat.in.h (fstatat, mkdirat): Provide declaration.
4729         * lib/fchmodat.c (includes):  Adjust to find declaration.
4730         * lib/fchownat.c (includes): Likewise.
4731         * lib/mkdirat.c (includes): Likewise.
4732         * lib/fstatat.c (includes): Likewise.  Ensure original fstatat is
4733         still visible.
4734
4735 2009-09-02  Eric Blake  <ebb9@byu.net>
4736
4737         errno: use consistently
4738         * lib/c-stack.c (ENOTSUP): <errno.h> guarantees a definition.
4739         * lib/canonicalize-lgpl.c (ENAMETOOLONG): Likewise.
4740         * lib/canonicalize.c (ELOOP): Likewise.
4741         * lib/inet_ntop.c (EAFNOSUPPORT): Likewise.
4742         * lib/inet_pton.c (EAFNOSUPPORT): Likewise.
4743         * lib/lchown.c (EOPNOTSUPP): Likewise.
4744         * lib/openat-priv.h (ENOSYS, EOPNOTSUPP): Likewise.
4745         * lib/savewd.c (ESTALE): Likewise.
4746         * lib/settime.c (ENOSYS): Likewise.
4747         * lib/utimens.c (ENOSYS): Likewise.
4748         * lib/xgethostname.c (ENAMETOOLONG): Likewise.
4749         * lib/chdir-safer.c (ELOOP): Likewise.
4750         (chdir_no_follow): Use HAVE_READLINK, not ELOOP, as witness.
4751         * modules/c-stack (Depends-on): Add errno.
4752         * modules/canonicalize (Depends-on): Likewise.
4753         * modules/chdir-safer (Depends-on): Likewise.
4754         * modules/fdopendir (Depends-on): Likewise.
4755         * modules/inet_ntop (Depends-on): Likewise.
4756         * modules/inet_pton (Depends-on): Likewise.
4757         * modules/lchown (Depends-on): Likewise.
4758         * modules/openat (Depends-on): Likewise.
4759         * modules/savewd (Depends-on): Likewise.
4760         * modules/settime (Depends-on): Likewise.
4761         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Check for readlink.
4762
4763         fts: avoid leaking fds
4764         * modules/fts (Depends-on): Add cloexec.
4765         * lib/fts.c (opendirat, diropen, fts_build): Set close-on-exec
4766         flag.
4767
4768         fts: make directory fds more robust
4769         * lib/fts.c (O_DIRECTORY): Let <fcntl.h> take care of this.
4770         (opendirat): Specify O_DIRECTORY, and add fallbacks for safety.
4771
4772         backupfile, chdir-long, fts, savedir: make safer
4773         * lib/backupfile.c (includes): Use "dirent--.h", since
4774         numbered_backup can write to stderr during readdir.
4775         * lib/savedir.c (includes): Likewise.
4776         * lib/chdir-long.c (includes): Use "fcntl--.h", since openat
4777         emulation can write to stderr on failure.
4778         * lib/fts.c (includes) [!_LIBC]: Likewise for opendir and openat.
4779         * lib/getcwd.c: Document why opendir_safer is unused.
4780         * lib/glob.c: Likewise.
4781         * lib/scandir.c: Likewise.
4782         * lib/openat-proc.c: Likewise, for open_safer.
4783         * modules/backupfile (Depends-on): Add dirent-safer.
4784         * modules/savedir (Depends-on): Likewise.
4785         * modules/fts (Depends-on): Add dirent-safer and openat-safer.
4786         * modules/chdir-long (Depends-on): Add openat-safer.
4787
4788         openat-safer: new module
4789         * modules/openat-safer: New file.
4790         * lib/openat-safer.c: Likewise.
4791         * m4/fcntl-safer.m4 (gl_OPENAT_SAFER): New macro.
4792         * lib/fcntl-safer.h (openat_safer): Declare.
4793         * lib/fcntl--.h (openat): Override.
4794         * MODULES.html.sh (File descriptor based I/O): Mention it.
4795         * lib/openat.h: Add double-inclusion guards.
4796         * lib/openat.c (includes): Only include "fcntl-safer.h", not
4797         "fcntl--.h", so we can implement openat.
4798         * modules/openat-safer-tests: New test.
4799         * tests/test-openat-safer.c: New file.
4800
4801         dirent-safer: new module
4802         * modules/dirent-safer: New file.
4803         * lib/dirent--.h: Likewise.
4804         * lib/dirent-safer.h: Likewise.
4805         * lib/opendir-safer.c: Likewise.
4806         * m4/dirent-safer.m4: Likewise.
4807         * MODULES.html.sh (Enhancements for POSIX:2008): Mention it.
4808         * modules/dirent-safer-tests: New test.
4809         * tests/test-dirent-safer.c: New file.
4810         * lib/fdopendir.c (includes): Ensure fdopendir is also safe.
4811
4812         fdopendir: optimize on mingw
4813         * lib/unistd.in.h (_gl_directory_name): New prototype.
4814         * lib/fchdir.c (_gl_directory_name): Implement it.
4815         (fchdir): Use it to simplify implementation.
4816         * lib/fdopendir.c (fdopendir) [REPLACE_FCHDIR]: Use metadata from
4817         fchdir, when available, to avoid calling [f]chdir().
4818
4819         fdopendir: split into its own module
4820         * lib/openat.c (fdopendir): Move...
4821         * lib/fdopendir.c: ...into new file.
4822         * modules/fdopendir: New module.
4823         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): New file.
4824         * modules/openat (Depends-on): Add fdopendir.
4825         * m4/openat.m4 (gl_FUNC_OPENAT): No longer need to check for
4826         fdopendir here.
4827         * modules/savedir (Depends-on): Only need fdopendir, not full
4828         openat.
4829         * lib/savedir.c (include): Use <dirent.h>, not "openat.h".
4830         * lib/openat.h (fdopendir): Drop prototype.
4831         * lib/dirent.in.h (fdopendir): Provide prototype.
4832         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Add replacements.
4833         * modules/dirent (Makefile.am): Substitute them.
4834         * MODULES.html.sh (File system functions): Mention it.
4835         * doc/posix-functions/fdopendir.texi (fdopendir): Likewise.
4836         * modules/fdopendir-tests: New file.
4837         * tests/test-fdopendir.c: Likewise.
4838
4839         fchdir: use more consistent macro convention
4840         * lib/fcntl.in.h (_gl_register_fd): Move declaration to unistd.
4841         * lib/sys_stat.in.h (rpl_fstat): Declare via make-time
4842         REPLACE_FCHDIR, rather than relying on config.h macros.
4843         * lib/unistd.in.h (fchdir): Move all fchdir internal declarations
4844         inside a single make-time REPLACE_FCHDIR block, rather than using
4845         the config.h FCHDIR_REPLACEMENT.
4846         * m4/fchdir.m4 (gl_FUNC_FCHDIR): REPLACE_FCHDIR was already
4847         AC_SUBST'd, also AC_DEFINE it.  Don't define FCHDIR_REPLACEMENT.
4848         Manage fstat replacement.
4849         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Pick up
4850         REPLACE_FCHDIR.
4851         * modules/sys_stat (Files): Add m4/unistd_h.m4.
4852         (Makefile.am): Substitute REPLACE_FCHDIR.
4853         * lib/close.c (rpl_close): Use REPLACE_FCHDIR, not
4854         FCHDIR_REPLACEMENT.
4855         * lib/dup-safer.c (dup_safer): Likewise.
4856         * lib/dup2.c (rpl_dup2): Likewise.
4857         * lib/dup3.c (rpl_dup3): Likewise.
4858         * lib/open.c (rpl_open): Likewise.
4859
4860         fchdir: simplify error handling, and support dup3
4861         * modules/fchdir (Depends-on): Use strdup-posix, not strdup.  Add
4862         stdbool, malloc-posix, realloc-posix.
4863         * lib/fchdir.c (struct dir_info_t): Delete saved_errno.
4864         (ensure_dirs_slot): Return false on allocation failure.
4865         (rpl_dup2): Delete.
4866         (_gl_register_dup): New function.
4867         (_gl_unregister_fd, rpl_opendir, rpl_dup): Update callers.
4868         (_gl_register_fd): Close fd on allocation failure.
4869         * lib/fcntl.in.h (_gl_register_fd): Update signature.
4870         * lib/unistd.in.h (_gl_register_dup) [FCHDIR_REPLACEMENT]: New
4871         prototype.
4872         (rpl_dup2_fchdir): Delete prototype.
4873         * lib/open.c (open): Update caller.
4874         * lib/dup2.c (dup2): Track fchdir metadata.
4875         * lib/dup3.c (dup3): Likewise.
4876         * m4/dup2.m4 (gl_REPLACE_DUP2): New macro.
4877         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Use it.
4878
4879 2009-09-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4880
4881         * gnulib-tool (func_create_testdir, func_create_megatestdir): Use
4882         AC_CONFIG_HEADERS instead of AM_CONFIG_HEADER. Use AC_CONFIG_FILES and
4883         don't pass arguments to AC_OUTPUT.
4884
4885 2009-09-02  Bruno Haible  <bruno@clisp.org>
4886
4887         * modules/mkdtemp (License): Relicense under LGPLv2+.
4888         Reported by Paolo Bonzini.
4889
4890 2009-09-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4891
4892         Replace uses of obsolete autoconf macros in Jim's modules.
4893         The Autoconf macros AC_TRY_CPP, AC_TRY_COMPILE, AC_TRY_LINK and
4894         AC_TRY_RUN have been obsolete since Autoconf 2.55, and each use
4895         can evoke a warning from autoconf when run with -Wobsolete
4896         enabled.  They were declared obsolete for good reasons (see
4897         the `AC_FOO_IFELSE vs AC_TRY_FOO' node in the Autoconf manual,
4898         recently renamed to `AC_ACT_IFELSE vs AC_TRY_ACT'), and we
4899         should not continue using the deprecated macros.
4900         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Replace
4901         obsolete Autoconf macros with modern counterparts.
4902         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
4903         * m4/dos.m4 (gl_AC_DOS): Likewise.
4904         * m4/fpending.m4 (gl_FUNC_FPENDING): Likewise.
4905         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Likewise.
4906         * m4/getloadavg.m4 (gl_PREREQ_GETLOADAVG): Likewise.
4907         * m4/jm-winsz1.m4 (gl_WINSIZE_IN_PTEM): Likewise.
4908         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Likewise.
4909         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Likewise.
4910         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Likewise.
4911         * m4/mode_t.m4 (gl_PROMOTED_TYPE_MODE_T): Likewise.
4912         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
4913         Likewise.
4914         * m4/rename.m4 (gl_FUNC_RENAME): Likewise.
4915         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
4916         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Likewise.
4917         * m4/st_dm_mode.m4 (AC_STRUCT_ST_DM_MODE): Likewise.
4918         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
4919         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
4920
4921 2009-09-01  Eric Blake  <ebb9@byu.net>
4922
4923         fchdir: fix off-by-one bug in previous patch
4924         * lib/fchdir.c (rpl_fstat): Use correct bounds.
4925         (_gl_unregister_fd): Delete useless if.
4926
4927 2009-09-01  Daniel P. Berrange  <berrange@redhat.com>
4928
4929         maint.mk: sort the list of syntax-check rules
4930         * top/maint.mk (syntax-check-rules): Sort syntax-check rules, so it's
4931         easier to get a sense of progress when the rules are run sequentially
4932         and take a long time.
4933
4934 2009-09-01  Simon Josefsson  <simon@josefsson.org>
4935
4936         * modules/arpa_inet: Use $(MKDIR_P) instead of @MKDIR_P@.
4937         * modules/netinet_in: Likewise.
4938         * modules/sys_file: Likewise.
4939         * modules/sys_ioctl: Likewise.
4940         * modules/sys_select: Likewise.
4941         * modules/sys_socket: Likewise.
4942         * modules/sys_stat: Likewise.
4943         * modules/sys_time: Likewise.
4944         * modules/sys_times: Likewise.
4945         * modules/sys_utsname: Likewise.
4946         * modules/sys_wait: Likewise.
4947
4948 2009-09-01  Jim Meyering  <meyering@redhat.com>
4949
4950         fts: help ensure that return values are not ignored
4951         * lib/fts_.h (__GNUC_PREREQ): Define.
4952         (__attribute_warn_unused_result__): Define.
4953         (fts_children, fts_close, fts_open, fts_read): Declare with
4954         __attribute_warn_unused_result__.
4955
4956         fts: fts_close now fails also when closing a dir file descriptor fails
4957         * lib/fts.c (fts_close): Detect close failure, not just fchdir failure,
4958         and propagate to caller, along with errno.
4959
4960         announce-gen: correct formatting in --help output
4961         * build-aux/announce-gen (usage): Move the one-line description in
4962         --help output "up", to where it belongs, just after Usage:.
4963
4964 2009-08-31  Eric Blake  <ebb9@byu.net>
4965
4966         fchdir: port to mingw
4967         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Check for mingw bug.
4968         * lib/open.c (open) [FCHDIR_REPLACEMENT]: If directories can't be
4969         opened, then use a substitute.
4970         * lib/sys_stat.in.h (fstat) [REPLACE_OPEN_DIRECTORY]: Declare
4971         replacement.
4972         * lib/fchdir.c (fstat) [REPLACE_OPEN_DIRECTORY]: Implement it.
4973         (_gl_register_fd): No need to check stat if open already filters
4974         all directories.
4975         (fchdir): Fix error condition to match POSIX.
4976         * modules/fchdir (Depends-on): Add sys_stat.
4977         * doc/posix-functions/open.texi (open): Document the limitation.
4978         * modules/fchdir-tests: New file.
4979         * tests/test-fchdir.c: Likewise.
4980
4981         canonicalize: allow cross-testing from cygwin to mingw
4982         * modules/canonicalize-tests (configure.ac): Define HAVE_SYMLINK.
4983         (Makefile.am): Pass it through TESTS_ENVIRONMENT.
4984         * modules/canonicalize-lgpl-tests (configure.ac, Makefile.am):
4985         Likewise.
4986         * tests/test-canonicalize.sh: Also skip test if 'ln -s' works, but
4987         target does not support symlinks.
4988         * tests/test-canonicalize-lgpl.sh: Likewise.
4989
4990         chown: avoid compilation warning on mingw
4991         * m4/chown.m4 (gl_FUNC_CHOWN): Recognize missing chown.
4992         * lib/chown.c (rpl_chown) [!HAVE_CHOWN]: Always return failure on
4993         mingw.
4994         * lib/lchown.c (lchown) [!HAVE_CHOWN]: Likewise.
4995         * modules/chown (Depends-on): Add errno.
4996
4997 2009-08-31  Stefano Lattarini  <stefano.lattarini@gmail.com>  (tiny change)
4998
4999         * gnulib-tool: Fix test whether $CONFIG_SHELL has a working 'echo'
5000         command.
5001
5002 2009-08-31  Jim Meyering  <meyering@redhat.com>
5003
5004         canonicalize: remove useless initialization
5005         * lib/canonicalize.c (canonicalize_filename_mode): Remove useless
5006         initialization of local, "end".
5007
5008 2009-08-30  Bruno Haible  <bruno@clisp.org>
5009
5010         Fix an unnecessary error on Solaris 10 on NFSv3 file systems.
5011         * lib/set-mode-acl.c (qset_acl) [Solaris 10 new]: Treat EOPNOTSUPP like
5012         ENOSYS.
5013
5014 2009-08-30  Bruno Haible  <bruno@clisp.org>
5015
5016         * tests/test-pipe-filter-ii1.sh: Prefer /usr/xpg6/bin/tr over
5017         /usr/xpg4/bin/tr when it exists.
5018         * tests/test-pipe-filter-gi1.sh: Likewise.
5019
5020 2009-08-30  Bruno Haible  <bruno@clisp.org>
5021
5022         Work around deficient /usr/bin/id program on Solaris.
5023         * tests/test-file-has-acl.sh (ID): New variable.
5024         * tests/test-set-mode-acl.sh (ID): Likewise.
5025         * tests/test-copy-acl.sh (ID): Likewise.
5026         * tests/test-copy-file.sh (ID): Likewise.
5027
5028 2009-08-30  Bruno Haible  <bruno@clisp.org>
5029
5030         New module 'xstriconveh'.
5031         * lib/xstriconveh.h: New file.
5032         * lib/xstriconveh.c: New file.
5033         * modules/xstriconveh: New file.
5034
5035 2009-08-30  Bruno Haible  <bruno@clisp.org>
5036
5037         Make it easier to use mem_cd_iconveh.
5038         * lib/striconveh.h (iconveh_t): New type.
5039         (iconveh_open, iconveh_close): New declarations.
5040         (mem_cd_iconveh, str_cd_iconveh): Replace the three iconv_t arguments
5041         with a single 'const iconveh_t *' argument.
5042         * lib/striconveh.c (iconveh_open, iconveh_close): New functions.
5043         (mem_cd_iconveh, str_cd_iconveh): Replace the three iconv_t arguments
5044         with a single 'const iconveh_t *' argument.
5045         (mem_iconveh, str_iconveh): Use iconveh_open, iconveh_close.
5046         * tests/test-striconveh.c (main): Update.
5047         * NEWS: Mention the change.
5048
5049 2009-08-30  Bruno Haible  <bruno@clisp.org>
5050
5051         * doc/posix-functions/iconv_open.texi: Mention indirect conversion
5052         problem.
5053
5054 2009-08-30  Bruno Haible  <bruno@clisp.org>
5055
5056         Work around iconv_open problem on Solaris.
5057         * lib/iconv_open-solaris.gperf: New file.
5058         * lib/iconv_open.c (ICONV_FLAVOR_SOLARIS): New macro.
5059         * m4/iconv_open.m4 (gl_FUNC_ICONV_OPEN): Also handle Solaris.
5060         * modules/iconv_open (Files): Add lib/iconv_open-solaris.gperf.
5061         (Makefile.am): Add rule for iconv_open-solaris.h. Augment
5062         BUILT_SOURCES, MOSTLYCLEANFILES, MAINTAINERCLEANFILES, EXTRA_DIST.
5063         * doc/posix-functions/iconv_open.texi: Mention the Solaris problem.
5064
5065 2009-08-29  Jim Meyering  <meyering@redhat.com>
5066
5067         maint.mk: remove more coreutils-specific targets; XZ_OPT=-9ev
5068         * top/maint.mk (cvs-check): Remove target; it was just an alias
5069         to the better-named vc-diff-check.
5070         (maintainer-distcheck): Remove rule.  It was used only from
5071         the (alpha/beta/major) target, and all of its commands but one
5072         were coreutils-specific.
5073         (vc-dist): Remove rule.
5074         (alpha beta major): Run "$(MAKE) distcheck" explicitly.
5075         Run vc-diff-check, not vc-dist.
5076         Run $(MAKE) dist with XZ_OPT=-9ev.  Note spelling, with "-".
5077
5078 2009-08-27  Bruno Haible  <bruno@clisp.org>
5079
5080         * tests/test-bitrotate.c (main): Remove test that uses a shift count
5081         of 0.
5082
5083 2009-08-27  Bruno Haible  <bruno@clisp.org>
5084
5085         * tests/test-func.c (main): Don't verify sizeof __func__ on SunPRO C
5086         compilers.
5087         * doc/func.texi: Document the SunPRO C bug.
5088
5089 2009-08-27  Bruno Haible  <bruno@clisp.org>
5090
5091         Fix link error on Solaris.
5092         * tests/test-parse-duration.c (xstrdup): Remove function.
5093
5094 2009-08-26  Pádraig Brady  <P@draigbrady.com>
5095
5096         ignore-value: handle pointer types, too
5097         * lib/ignore-value.h (__attribute__): Remove definition.
5098         (ignore_value): Remove use of "__attribute__ ((unused))" in favor
5099         of a more concise and more-often effective "(void) i" statement.
5100         (ignore_ptr): New function to suppress warnings from functions that
5101         return pointers, and to make it explicit that one function doesn't
5102         handle all cases.
5103
5104 2009-08-25  Bruno Haible  <bruno@clisp.org>
5105
5106         dup2: work around a Linux bug.
5107         * m4/dup2.m4 (gl_FUNC_DUP2): Test for the Linux bug.
5108         * lib/dup2.c (rpl_dup2): Correct the return value if it is -EBADF.
5109         * doc/posix-functions/dup2.texi: Mention the Linux bug.
5110         Reported by Simon Josefsson.
5111
5112 2009-08-25  Jim Meyering  <meyering@redhat.com>
5113
5114         libguestfs uses gnulib
5115         * users.txt: Add libguestfs.
5116
5117 2009-08-24  Eric Blake  <ebb9@byu.net>
5118
5119         dup2, pipe2: fix some recent test failures on cygwin 1.5.x
5120         * lib/pipe2.c (includes): Add binary-io.h.
5121         * lib/dup2.c (rpl_dup2): Correct buggy errno value.
5122
5123 2009-08-24  Bruno Haible  <bruno@clisp.org>
5124
5125         Tolerate declared but missing accept4 syscall.
5126         * lib/accept4.c (accept4): Invoke original accept4 function first, if
5127         available.
5128         * lib/sys_socket.in.h (accept4): If the function is already present,
5129         override it.
5130         * m4/accept4.m4 (gl_FUNC_ACCEPT4): Remove AC_LIBOBJ invocation.
5131         * modules/accept4 (Makefile.am): Compile accept4.c always.
5132         Reported by Paolo Bonzini and Eric Blake.
5133
5134 2009-08-23  Bruno Haible  <bruno@clisp.org>
5135
5136         New module 'accept4'.
5137         * lib/sys_socket.in.h (accept4): New declaration.
5138         * lib/accept4.c: New file.
5139         * m4/accept4.m4: New file.
5140         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Initialize
5141         GNULIB_ACCEPT4, HAVE_ACCEPT4.
5142         * modules/sys_socket (Makefile.am): Substitute GNULIB_ACCEPT4,
5143         HAVE_ACCEPT4.
5144         * modules/accept4: New file.
5145         * doc/glibc-functions/accept4.texi: Mention the new module.
5146
5147 2009-08-24  Jim Meyering  <meyering@redhat.com>
5148
5149         progname: also set global program_invocation_name, when possible
5150         Before this change, a libtool-enabled program that calls glibc's
5151         error function would report the program name as
5152         "/abs/dir/.libs/lt-program_name" rather than the desired program_name.
5153         * modules/progname (configure.ac): Check for a declaration of
5154         program_invocation_name.
5155         * lib/progname.c:  Include <errno.h>.
5156         (set_program_name) [HAVE_DECL_PROGRAM_INVOCATION_NAME]:
5157         Set program_invocation_name.
5158
5159 2009-08-23  Bruno Haible  <bruno@clisp.org>
5160
5161         * lib/dup3.c: Include <string.h>.
5162
5163 2009-08-23  Bruno Haible  <bruno@clisp.org>
5164
5165         * lib/dup3.c (dup3): Test only once whether the system actually exists.
5166         * lib/pipe2.c (pipe2): Likewise.
5167         Suggested by Eric Blake.
5168
5169 2009-08-23  Bruno Haible  <bruno@clisp.org>
5170
5171         Tolerate declared but missing dup3 syscall.
5172         * lib/dup3.c (dup3): Invoke original dup3 function first, if available.
5173         * lib/unistd.in.h (dup3): If the function is already present,
5174         override it.
5175         * m4/dup3.m4 (gl_FUNC_DUP3): Remove AC_LIBOBJ invocation.
5176         * modules/dup3 (Makefile.am): Compile dup3.c always.
5177         Reported by Paolo Bonzini.
5178
5179 2009-08-23  Bruno Haible  <bruno@clisp.org>
5180
5181         Tolerate declared but missing pipe2 syscall.
5182         * lib/pipe2.c (pipe2): Invoke original pipe2 function first, if
5183         available.
5184         * lib/unistd.in.h (pipe2): If the function is already present,
5185         override it.
5186         * m4/pipe2.m4 (gl_FUNC_PIPE2): Remove AC_LIBOBJ invocation.
5187         * modules/pipe2 (Makefile.am): Compile pipe2.c always.
5188         Reported by Paolo Bonzini.
5189
5190 2009-08-23  Bruno Haible  <bruno@clisp.org>
5191
5192         * lib/pipe2.c (pipe2): Move #ifs inside function.
5193
5194 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
5195
5196         quotearg: document limitations of quote_these_too
5197         * lib/quotearg.c (quotearg_buffer_restyled): Add comments where
5198         those limitations are created.
5199         * lib/quotearg.h (set_char_quoting): Document that digits and
5200         letters that are special after backslash are not permitted.
5201         (quotearg_char): Cross-reference set_char_quoting documentation.
5202
5203 2009-08-23  Joel E. Denny  <jdenny@clemson.edu>
5204
5205         quotearg: implement custom_quoting_style
5206         * lib/quotearg.c: (struct quoting_options): Add left_quote and
5207         right_quote fields.
5208         (set_custom_quoting): New public function.
5209         (quotearg_buffer_restyled): Add left_quote and right_quote
5210         arguments, handle them very much like locale quoting, and update
5211         all uses.
5212         (quotearg_n_custom): New public function.
5213         (quotearg_n_custom_mem): New public function.
5214         (quotearg_custom): New public function.
5215         (quotearg_custom_mem): New public function.
5216         * lib/quotearg.h: Prototype and document new public functions.
5217         (enum quoting_style): For escape_quoting_style and
5218         clocale_quoting_style, comment that QA_SPLIT_TRIGRAPHS is
5219         ignored even though they're otherwise like c_quoting_style.
5220         Add custom_quoting_style member and document with comparison to
5221         clocale_quoting_style.
5222         * tests/test-quotearg.c (custom_quotes): New array.
5223         (custom_results): New array.
5224         (main): Extend to test custom quoting.
5225
5226 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
5227
5228         quotearg: fix right quote escaping when it's in quote_these_too
5229         * lib/quotearg.c (quotearg_buffer_restyled): Upon seeing a right
5230         quote, be sure to prepend only one backslash.
5231         * tests/test-quotearg.c (use_quote_double_quotes): New function.
5232         (main): Test it.
5233
5234 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
5235
5236         quotearg-tests: test escaping of embedded locale quotes
5237         * tests/test-quotearg.c (struct result_strings): Add member for
5238         new input.
5239         (LQ_ENC, RQ_ENC, RQ_ESC): New macros.
5240         (inputs): Add new input.
5241         (results_g): Add expected results.
5242         (flag_results): Likewise.
5243         (locale_results): Likewise.
5244         (compare_strings): Check those.
5245
5246 2009-08-23  Bruno Haible  <bruno@clisp.org>
5247
5248         Tests for module 'dup3'.
5249         * modules/dup3-tests: New file.
5250         * tests/test-dup3.c: New file.
5251
5252         New module 'dup3'.
5253         * lib/unistd.in.h (dup3): New declaration.
5254         * lib/dup3.c: New file.
5255         * m4/dup3.m4: New file.
5256         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_DUP3 and
5257         HAVE_DUP3.
5258         * modules/unistd (Makefile.am): Substitute GNULIB_DUP3 and HAVE_DUP3.
5259         * modules/dup3: New file.
5260         * doc/glibc-functions/dup3.texi: Mention the new module.
5261
5262 2009-08-23  Bruno Haible  <bruno@clisp.org>
5263
5264         Tweak the dup2 test.
5265         * tests/test-dup2.c (main): Create the test file empty. Verify that an
5266         out-of-range fd yields EBADF. Verify that after writing to /dev/null,
5267         the test file is still empty. Fix argument order of lseek.
5268
5269 2009-08-23  Bruno Haible  <bruno@clisp.org>
5270
5271         Avoid test link errors when the modules getopt-gnu, gettext are used.
5272         * modules/getopt-posix-tests (Makefile.am): Define test_getopt_LDADD.
5273         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
5274
5275 2009-08-23  Bruno Haible  <bruno@clisp.org>
5276
5277         Fix getdtablesize() on mingw.
5278         * lib/getdtablesize.c (getdtablesize): Implement differently.
5279         * lib/unistd.in.h (getdtablesize): Improve comment.
5280
5281 2009-08-23  Bruno Haible  <bruno@clisp.org>
5282
5283         New module 'mkostemp'.
5284         Based on Ulrich Drepper's 2007-08-10 change in glibc.
5285         * lib/stdlib.in.h (mksotemp): New declaration.
5286         * lib/mkostemp.c: New file, from glibc with modifications.
5287         * lib/tempname.h (GT_FILE): Remove outdated comment.
5288         (gen_tempname): Add flags argument.
5289         * lib/tempname.c (__GT_BIGFILE): Remove macro.
5290         (__GT_FILE): Map to 1.
5291         (small_open, large_open): Remove macros.
5292         (__gen_tempname): Add flags argument. Remove code for __GT_BIGFILE.
5293         * lib/mkstemp.c (mkstemp): Update.
5294         * lib/mkdtemp.c (mkdtemp): Likewise.
5295         * m4/mkostemp.m4: New file.
5296         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_MKOSTEMP,
5297         HAVE_MKOSTEMP.
5298         * modules/stdlib (Makefile.am): Substitute GNULIB_MKOSTEMP,
5299         HAVE_MKOSTEMP.
5300         * modules/mkostemp: New file, based on modules/mkstemp.
5301         * doc/glibc-functions/mkostemp.texi: Mention the new module.
5302         * NEWS: Mention the change.
5303
5304 2009-08-23  Bruno Haible  <bruno@clisp.org>
5305
5306         * lib/pipe2.c (pipe2): Support O_TEXT, O_BINARY on all platforms.
5307         Reported by Eric Blake.
5308
5309 2009-08-23  Bruno Haible  <bruno@clisp.org>
5310
5311         * lib/pipe2.c (pipe2): Fix test of fcntl's return value.
5312         Reported by Eric Blake.
5313
5314 2009-08-23  Bruno Haible  <bruno@clisp.org>
5315
5316         * modules/fchdir (Depends-on): Use fcntl-h instead of fcntl.
5317         * modules/pipe2 (Depends-on): Likewise.
5318
5319 2009-08-23  Eric Blake  <ebb9@byu.net>
5320
5321         fcntl-h: add O_TTY_INIT support
5322         * lib/fcntl.in.h (O_TTY_INIT): Support another POSIX macro.
5323         * tests/test-fcntl-h.c (o): Test it.
5324         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
5325
5326         fcntl-h: rename from fcntl, in preparation for fcntl(2)
5327         * modules/fcntl: Move <fcntl.h> header replacement...
5328         * modules/fcntl-h: ...to new name, so as not to collide with
5329         like-named function.
5330         * tests/test-fcntl.c: Rename...
5331         * tests/test-fcntl-h.c: ...to this.  Test FD_CLOEXEC.
5332         * modules/fcntl-tests: Rename...
5333         * modules/fcntl-h-tests: ...to this.  Update test file name.
5334         * modules/chdir-long (Depends-on): Update clients.
5335         * modules/chdir-safer (Depends-on): Likewise.
5336         * modules/fcntl-safer (Depends-on): Likewise.
5337         * modules/fts (Depends-on): Likewise.
5338         * modules/mkancesdirs (Depends-on): Likewise.
5339         * modules/mkdir-p (Depends-on): Likewise.
5340         * modules/open (Depends-on): Likewise.
5341         * modules/savewd (Depends-on): Likewise.
5342         * MODULES.html.sh (systems lacking POSIX:2008): Update name.
5343         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
5344
5345 2009-08-22  Bruno Haible  <bruno@clisp.org>
5346
5347         * modules/binary-io (License): Relicense under LGPL.
5348         * modules/pipe2 (License): Likewise.
5349
5350 2009-08-22  Bruno Haible  <bruno@clisp.org>
5351
5352         * lib/pipe-filter-ii.c (pipe_filter_ii_execute): Fix test of fcntl's
5353         return value.
5354         * lib/pipe-filter-gi.c (filter_init): Likewise.
5355         Reported by Eric Blake.
5356
5357 2009-08-22  Bruno Haible  <bruno@clisp.org>
5358
5359         * lib/pipe.c (create_pipe): Use pipe2 instead of _pipe.
5360         * modules/pipe (Depends-on): Add pipe2.
5361
5362 2009-08-22  Bruno Haible  <bruno@clisp.org>
5363
5364         Tests for module 'pipe2'.
5365         * modules/pipe2-tests: New file.
5366         * tests/test-pipe2.c: New file.
5367
5368         New module 'pipe2'.
5369         * lib/unistd.in.h (pipe2): New declaration.
5370         * lib/pipe2.c: New file.
5371         * m4/pipe2.m4: New file.
5372         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_PIPE2 and
5373         HAVE_PIPE2.
5374         * modules/unistd (Makefile.am): Substitute GNULIB_PIPE2 and HAVE_PIPE2.
5375         * modules/pipe2: New file.
5376         * doc/glibc-functions/pipe2.texi: Mention the new module.
5377
5378 2009-08-22  Bruno Haible  <bruno@clisp.org>
5379
5380         Reference some new glibc functions.
5381         * doc/glibc-functions/accept4.texi: New file.
5382         * doc/glibc-functions/dup3.texi: New file.
5383         * doc/glibc-functions/mkostemp.texi: New file.
5384         * doc/glibc-functions/pipe2.texi: New file.
5385         * doc/gnulib.texi (Glibc stdlib.h): Refer to mkostemp.
5386         (Glibc sys/socket.h): Refer to accept4.
5387         (Glibc unistd.h): Refer to dup3, pipe2.
5388         Reported by Eric Blake.
5389
5390 2009-08-22  Jim Meyering  <meyering@redhat.com>
5391             Bruno Haible  <bruno@clisp.org>
5392
5393         annotate automake snippets with $(AM_V_GEN) and $(AM_V_at)
5394         This makes it so packages using automake-1.11's silent-rules option
5395         can print e.g., a single "GEN    configmake.h" line, rather than
5396         the 30+ statements that perform the job.  If you want to see the
5397         actual commands, you can still run "make V=1".
5398         * modules/alloca-opt: Add $(AM_V_GEN) and $(AM_V_at) prefixes
5399         so that make output is abbreviated when those variables are defined
5400         appropriately.
5401         * modules/argz: Likewise.
5402         * modules/arpa_inet: Likewise.
5403         * modules/byteswap: Likewise.
5404         * modules/configmake: Likewise.
5405         * modules/dirent: Likewise.
5406         * modules/errno: Likewise.
5407         * modules/fcntl: Likewise.
5408         * modules/float: Likewise.
5409         * modules/fnmatch: Likewise.
5410         * modules/getopt-posix: Likewise.
5411         * modules/glob: Likewise.
5412         * modules/iconv_open: Likewise.
5413         * modules/inttypes: Likewise.
5414         * modules/localcharset: Likewise.
5415         * modules/locale: Likewise.
5416         * modules/math: Likewise.
5417         * modules/netdb: Likewise.
5418         * modules/netinet_in: Likewise.
5419         * modules/poll: Likewise.
5420         * modules/posix_spawnp-tests: Likewise.
5421         * modules/sched: Likewise.
5422         * modules/search: Likewise.
5423         * modules/selinux-h: Likewise.
5424         * modules/signal: Likewise.
5425         * modules/spawn: Likewise.
5426         * modules/stdarg: Likewise.
5427         * modules/stdbool: Likewise.
5428         * modules/stddef: Likewise.
5429         * modules/stdint: Likewise.
5430         * modules/stdio: Likewise.
5431         * modules/stdlib: Likewise.
5432         * modules/string: Likewise.
5433         * modules/strings: Likewise.
5434         * modules/sys_file: Likewise.
5435         * modules/sys_ioctl: Likewise.
5436         * modules/sys_select: Likewise.
5437         * modules/sys_socket: Likewise.
5438         * modules/sys_stat: Likewise.
5439         * modules/sys_time: Likewise.
5440         * modules/sys_times: Likewise.
5441         * modules/sys_utsname: Likewise.
5442         * modules/sys_wait: Likewise.
5443         * modules/sysexits: Likewise.
5444         * modules/time: Likewise.
5445         * modules/unistd: Likewise.
5446         * modules/wchar: Likewise.
5447         * modules/wctype: Likewise.
5448
5449 2009-08-22  Jim Meyering  <meyering@redhat.com>
5450
5451         announce-gen: detect write failure
5452         * build-aux/announce-gen: Add Coda at end.
5453         Remove equivalent-but-more-verbose block at top.
5454
5455 2009-08-19  Akim Demaille  <demaille@gostai.com>
5456
5457         bootstrap: --help to stdout.
5458         * bootstrap (usage): Don't send --help to stderr.
5459         Use a here doc instead of a long string.
5460
5461 2009-08-21  Eric Blake  <ebb9@byu.net>
5462
5463         test-popen-safer: split from test-popen
5464         * tests/test-popen.c (main): Move...
5465         * tests/test-popen.h: ...into new file.
5466         * tests/test-popen-safer2.c: New file.
5467         * modules/popen-tests (Files): Add test-popen.h.
5468         * modules/popen-safer-tests (Files): Add test-popen-safer2.c.
5469         Suggested by Bruno Haible.
5470
5471         test-fcntl-safer: split from test-open
5472         * tests/test-open.c (main): Move...
5473         * tests/test-open.h: ...into new file.
5474         * tests/test-fcntl-safer.c: New file.
5475         * modules/open-tests (Files): Add test-open.h.
5476         * modules/fcntl-safer-tests: New file.
5477         Suggested by Bruno Haible.
5478
5479         test-fopen-safer: split from test-fopen
5480         * tests/test-fopen.c (main): Move...
5481         * tests/test-fopen.h: ...into new file.
5482         * tests/test-fopen-safer.c: New file.
5483         * modules/fopen-tests (Files): Add test-fopen.h.
5484         * modules/fopen-safer-tests: New file.
5485         Suggested by Bruno Haible.
5486
5487 2009-08-21  Paolo Bonzini  <bonzini@gnu.org>
5488
5489         popen-safer: test O_CLOEXEC at run-time.
5490         * lib/popen-safer.c: Test O_CLOEXEC at run-time.
5491
5492 2009-08-21  Paolo Bonzini  <bonzini@gnu.org>
5493
5494         fcntl: move more flags to the header
5495         * lib/cloexec.c: Do not define FD_CLOEXEC here.
5496         * lib/popen-safer.c: Do not alias O_NOINHERIT to O_CLOEXEC here.
5497         * lib/fcntl.in.h: Do both things here.
5498
5499 2009-08-21  Jim Meyering  <meyering@redhat.com>
5500
5501         consistently remove $@-t before redirecting to it
5502         * modules/argz: Remove $@-t and $@ before redirecting to the former.
5503         * modules/alloca-opt: Likewise.
5504         * modules/byteswap: Likewise.
5505         * modules/fnmatch: Likewise.
5506         * modules/getopt-posix: Likewise.
5507         * modules/glob: Likewise.
5508         * modules/poll: Likewise.
5509         * modules/posix_spawnp-tests: Likewise.
5510         * modules/sys_socket: Likewise.
5511         * modules/sysexits: Likewise.
5512
5513 2009-08-21  Eric Blake  <ebb9@byu.net>
5514
5515         popen: simplify access to original popen
5516         * lib/popen.c (rpl_popen): No need to worry about popen being a
5517         macro.
5518         Reported by Bruno Haible.
5519
5520 2009-08-20  Eric Blake  <ebb9@byu.net>
5521
5522         build: avoid some compiler warnings
5523         * lib/selinux-at.h: Use dir_fd, not dirfd, to avoid shadowing.
5524         * lib/exclude.c (fnmatch_pattern_has_wildcards): Use correct
5525         type.
5526         (new_exclude_segment, excluded_file_pattern_p)
5527         (excluded_file_name_p): Reduce scope.
5528         * lib/vasnprintf.c (decimal_point_char): Avoid warning on
5529         old-style declaration.
5530
5531 2009-08-20  Simon Josefsson  <simon@josefsson.org>
5532
5533         * tests/test-exclude1.sh: Handle Windows EOL.
5534         * tests/test-exclude2.sh: Likewise.
5535         * tests/test-exclude3.sh: Likewise.
5536         * tests/test-exclude4.sh: Likewise.
5537         * tests/test-exclude5.sh: Likewise.
5538         * tests/test-exclude6.sh: Likewise.
5539         * tests/test-exclude7.sh: Likewise.
5540
5541 2009-08-19  Akim Demaille  <demaille@gostai.com>
5542
5543         bootstrap: find sha1sum when named gsha1sum.
5544         * bootstrap (find_tool): New.
5545         ($SHA1SUM): New.
5546         Use it.
5547
5548 2009-08-20  Jim Meyering  <meyering@redhat.com>
5549
5550         maint.mk: _header_without_use: fix a quoting bug and remove a bash'ism
5551         * top/maint.mk (_header_without_use): Use "\\\\", not "\\" in the sed
5552         expression that converts "." in a file name to "\." in the resulting
5553         regexp.  Start with a dummy statement, so that prior shell variable
5554         definitions are expanded portably.  Reported by Simon Josefsson.
5555
5556 2009-08-20  Paolo Bonzini  <bonzini@gnu.org>
5557
5558         Fix polling for writeability of a screen buffer.
5559         * lib/poll.c: Distinguish input and screen buffers for the
5560         Win32 implementation.
5561         * lib/select.c: Likewise.
5562
5563 2009-08-19  Eric Blake  <ebb9@byu.net>
5564
5565         popen-safer: prevent popen from clobbering std descriptors
5566         * modules/popen-safer: New file.
5567         * lib/popen-safer.c: Likewise.
5568         * m4/stdio-safer.m4 (gl_POPEN_SAFER): New macro.
5569         * lib/stdio--.h (popen): Provide override.
5570         * lib/stdio-safer.h (popen_safer): Provide declaration.
5571         * tests/test-popen.c (includes): Partially test this.
5572         * modules/popen-safer-tests: New file, for more tests.
5573         * tests/test-popen-safer.c: Likewise.
5574         * MODULES.html.sh (file stream based Input/Output): Mention it.
5575
5576         tests: test some of the *-safer modules
5577         * modules/fopen-safer (Depends-on): Add fopen.
5578         * modules/fcntl-safer (Depends-on): Add fcntl.
5579         * modules/stdlib-safer (Depends-on): Add stdlib.
5580         (configure.ac): Set indicator.
5581         * modules/unistd-safer (configure.ac): Likewise.
5582         * modules/tmpfile-safer (configure.ac): Likewise.
5583         (Depends-on): Add tmpfile.
5584         * lib/stdio--.h (fopen, tmpfile): Don't override unless module is
5585         active.
5586         * tests/test-fopen.c (includes): Test safer versions when they are
5587         in use.
5588         * tests/test-open.c (includes): Likewise.
5589
5590         popen: fix cygwin 1.5 bug when stdin closed
5591         * doc/posix-functions/popen.texi (popen): Document cygwin bugs.
5592         * modules/popen: New file.
5593         * modules/popen-tests: Likewise.
5594         * tests/test-popen.c: Likewise.
5595         * m4/popen.m4: Likewise.
5596         * lib/popen.c: Likewise.
5597         * lib/stdio.in.h (popen): New declaration.
5598         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add popen.
5599         * modules/stdio (Makefile.am): Likewise.
5600         * MODULES.html.sh (systems lacking POSIX:2008): Mention it.
5601
5602 2009-08-17  Joel E. Denny  <jdenny@clemson.edu>
5603
5604         maint.mk: give full control over update-copyright exclusions
5605         * top/maint.mk (VC_LIST_EXCEPT): Instead of ChangeLog, use
5606         ${VC_LIST_EXCEPT_DEFAULT-ChangeLog} as the default exclusion.
5607         (update-copyright): Don't force inclusion of top-level
5608         ChangeLog.  Don't force exclusion of all COPYING files, but make
5609         them the default exclusion instead.
5610
5611 2009-08-16  Bruno Haible  <bruno@clisp.org>
5612
5613         Fix test failures on Solaris 10.
5614         * tests/uniconv/test-u8-conv-from-enc.c (main): Disable autodetect_jp
5615         tests when Solaris iconv() is used.
5616         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
5617         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
5618         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
5619         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
5620         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
5621
5622 2009-08-16  Bruno Haible  <bruno@clisp.org>
5623
5624         Fix test failures on Solaris 10.
5625         * tests/test-pipe-filter-ii1.sh: Determine the filename of a working
5626         'tr' program and pass it as first argument.
5627         * tests/test-pipe-filter-gi1.sh: Likewise.
5628         * tests/test-pipe-filter-ii1.c (main): Except the filename of a 'tr'
5629         program as first argument.
5630         * tests/test-pipe-filter-gi1.c (main): Likewise.
5631
5632 2009-08-16  Eric Blake  <ebb9@byu.net>
5633
5634         fpurge: fix previous commits
5635         * modules/fpurge (Makefile.am): Make replacement conditional,
5636         partially reverting 2007-04-29 change; missed in previous
5637         attempt.
5638         * m4/fpurge.m4 (gl_FUNC_FPURGE): Also compile fpurge.c when fpurge
5639         is missing.
5640
5641 2009-08-16  Bruno Haible  <bruno@clisp.org>
5642
5643         Clarify fpurge's effect on the file position.
5644         * lib/stdio.in.h (fpurge): Specify the file position after fpurge.
5645         * tests/test-fpurge.c (main): Make a second pass for checking the file
5646         position.
5647
5648 2009-08-16  Bruno Haible  <bruno@clisp.org>
5649
5650         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't compile fpurge.c if only the
5651         declaration of fpurge is missing.
5652         * tests/test-fpurge.c (main): Check that the file has not more contents
5653         than expected. Close the file before removing it.
5654
5655 2009-08-15  Eric Blake  <ebb9@byu.net>
5656
5657         fpurge: don't wrap working cygwin implementation
5658         * lib/fpurge.c (fpurge): Fix comment typo.
5659         * m4/fpurge.m4 (gl_FUNC_FPURGE): Detect BSD bug, allowing cygwin
5660         1.7 to avoid replacement.
5661         * tests/test-fpurge.c (main): Enhance test.
5662
5663 2009-08-15  Eric Blake  <ebb9@byu.net>
5664         and Jim Meyering  <meyering@redhat.com>
5665
5666         test-update-copyright: skip if perl is insufficient
5667         * tests/test-update-copyright.sh: Failure to run maintainer tool
5668         should not cause testsuite failure on cygwin 1.5.
5669
5670 2009-08-14  Eric Blake  <ebb9@byu.net>
5671
5672         doc: mention more functions added in cygwin 1.7.0
5673         * doc/posix-headers/limits.texi (limits.h): Update for recent
5674         cygwin additions.
5675         * doc/posix-headers/wordexp.texi (wordexp.h): Likewise.
5676         * doc/posix-functions/wordexp.texi (wordexp): Likewise.
5677         * doc/posix-functions/wordfree.texi (wordfree): Likewise.
5678         * doc/posix-functions/setlocale.texi (setlocale): Likewise.
5679         * doc/posix-functions/nl_langinfo.texi (nl_langinfo): Likewise.
5680
5681 2009-08-14  Eric Blake  <ebb9@byu.net>
5682
5683         maint.mk: simplify update-copyright rule
5684         * top/maint.mk (update-copyright-local): Delete, and document how
5685         to do it in cfg.mk instead.
5686         (update-copyright-exclude-regexp): Delete, and document how to do
5687         it in .x-update-copyright instead.
5688         (update-copyright): Simplify, thanks to VC_LIST_EXCEPT.  Don't
5689         exclude ChangeLog.
5690
5691 2009-08-14  Bruno Haible  <bruno@clisp.org>
5692
5693         * m4/wchar.m4 (gl_WCHAR_H): Undo invalid optimization in last commit.
5694
5695 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
5696
5697         maint.mk: support update-copyright-env
5698         * top/maint.mk (update-copyright-env): Define place-holder.
5699         (update-copyright): Expand $(update-copyright-env) before
5700         invoking update-copyright.
5701
5702 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
5703
5704         update-copyright: implement forced reformatting
5705         * build-aux/update-copyright: Implement and document
5706         UPDATE_COPYRIGHT_FORCE.
5707         * tests/test-update-copyright.sh: Test it.
5708
5709 2009-08-14  Eric Blake  <ebb9@byu.net>
5710         and Bruno Haible  <bruno@clisp.org>
5711
5712         stddef: fix NetBSD 5.0 NULL bug, rather than working around it
5713         * tests/test-locale.c: Revert previous patch related to NULL.
5714         * tests/test-stdio.c: Likewise.
5715         * tests/test-stdlib.c: Likewise.
5716         * tests/test-string.c: Likewise.
5717         * tests/test-unistd.c: Likewise.
5718         * modules/time-tests (Depends-on): Add verify.
5719         * modules/wchar-tests (Depends-on): Likewise.
5720         * tests/test-time.c: Test for NULL compliance.
5721         * tests/test-wchar.c: Likewise.
5722         * modules/locale (Depends-on): Add stddef.
5723         * modules/stdio (Depends-on): Likewise.
5724         * modules/stdlib (Depends-on): Likewise.
5725         * modules/string (Depends-on): Likewise.
5726         * modules/time (Depends-on): Likewise.
5727         * modules/unistd (Depends-on): Likewise.
5728         * modules/wchar (Depends-on): Likewise.
5729         * lib/locale.in.h (includes): Use <stddef.h> to fix NULL.
5730         * lib/stdlib.in.h (includes): Likewise.
5731         * lib/string.in.h (includes): Likewise.
5732         * lib/time.in.h (includes): Likewise.
5733         * lib/unistd.in.h (includes): Likewise.
5734         * m4/locale_h.m4 (gl_LOCALE_H): Replace locale.h if stddef.h was
5735         replaced.
5736         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
5737         * m4/stddef_h.m4: New file.
5738         * modules/stddef: Likewise.
5739         * lib/stddef.in.h: Likewise.
5740         * modules/stddef-tests: Likewise.
5741         * tests/test-stddef.c: Likewise.
5742         * MODULES.html.sh (Basic types <stddef.h>): Mention new module.
5743         * doc/posix-headers/stddef.texi (stddef.h): Document the bug.
5744         * doc/posix-headers/locale.texi (locale.h): Likewise.
5745         * doc/posix-headers/stdio.texi (stdio.h): Likewise.
5746         * doc/posix-headers/stdlib.texi (stdlib.h): Likewise.
5747         * doc/posix-headers/string.texi (string.h): Likewise.
5748         * doc/posix-headers/time.texi (time.h): Likewise.
5749         * doc/posix-headers/unistd.texi (unistd.h): Likewise.
5750         * doc/posix-headers/wchar.texi (wchar.h): Likewise.
5751
5752 2009-08-14  Eric Blake  <ebb9@byu.net>
5753
5754         doc: improve git diff of texinfo files
5755         * .gitattributes: Add rule for *.texi files, with hint on how to
5756         use it.
5757         Copied from m4, and based on a report by Bruno Haible.
5758
5759 2009-08-14  Bruno Haible  <bruno@clisp.org>
5760
5761         Disable multithread support by default on Cygwin 1.5.x for real.
5762         * m4/threadlib.m4 (gl_THREADLIB_EARLY_BODY): Fix last commit.
5763
5764 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
5765
5766         update-copyright: much ado about intervals
5767         * build-aux/update-copyright: Implement and document
5768         UPDATE_COPYRIGHT_USE_INTERVALS to control expansion and collapse
5769         of copyright year intervals.
5770         Also, document UPDATE_COPYRIGHT_YEAR.
5771         * tests/test-update-copyright.sh: Test it.
5772
5773         update-copyright: convert 2-digit to 4-digit years
5774         * build-aux/update-copyright: Implement and document.
5775         * tests/test-update-copyright.sh: Update.
5776
5777 2009-08-14  Jim Meyering  <meyering@redhat.com>
5778
5779         test-exclude: avoid coreutils "make check" failure
5780         * tests/test-exclude.c (ARGMATCH_DIE_DECL) [ARGMATCH_DIE_DECL]: Define,
5781         just as in test-argmatch.c.
5782
5783 2009-08-13  Eric Blake  <ebb9@byu.net>
5784
5785         test-dup2: fix bad assumption
5786         * tests/test-dup2.c (main): Tolerate leaked fds from environment.
5787         Reported by Peter Breitenlohner <peb@mppmu.mpg.de>.
5788
5789         test-version-etc: fix CRLF portability issue
5790         * tests/test-version-etc.sh: Use tr, not sed, as not all sed
5791         recognize \r.
5792         * tests/test-argp-version-etc-1.sh: Likewise.
5793
5794         getopt: update client modules
5795         * modules/argp (Depends-on): Use getopt-gnu.
5796         * modules/git-merge-changelog (Depends-on): Likewise.
5797         * modules/long-options (Depends-on): Likewise.
5798         * modules/xstrtol (Depends-on): Likewise.
5799
5800 2009-08-13  Simon Josefsson  <simon@josefsson.org>
5801
5802         * tests/test-version-etc.sh: Don't fail on different
5803         project/version.  Don't fail on CRLF differences.  Rewrite to use
5804         multiple -e instead of multiple sed forks, suggested by Eric Blake
5805         <ebb9@byu.net>.
5806         * tests/test-argp-version-etc-1.sh: Likewise.
5807
5808 2009-08-13  Simon Josefsson  <simon@josefsson.org>
5809
5810         * tests/test-version-etc.sh: Don't fail on different
5811         project/version.
5812
5813 2009-08-12  Bruno Haible  <bruno@clisp.org>
5814
5815         Tests for modules 'getopt-posix', 'getopt-gnu'.
5816         * modules/getopt-posix-tests: New file.
5817         * tests/test-getopt.c: New file.
5818         * tests/test-getopt.h: New file.
5819         * tests/test-getopt_long.h: New file.
5820
5821         New modules 'getopt-posix', 'getopt-gnu'.
5822         * modules/getopt-gnu: New file, renamed from modules/getopt.
5823         * modules/getopt-posix: New file.
5824         * modules/getopt: Turn into an obsolete alias for getopt-gnu.
5825         * m4/getopt.m4 (gl_FUNC_GETOPT_POSIX, gl_FUNC_GETOPT_GNU): New macros.
5826         (gl_GETOPT): Remove macro.
5827         (gl_GETOPT_CHECK_HEADERS): Do some checks only for gl_FUNC_GETOPT_GNU.
5828         Disable the test against BSD systems that declare optreset. Test
5829         against mingw bug. Test against lack of support of optional arguments
5830         on many platforms.
5831         * doc/glibc-headers/getopt.texi: Update module name and list of
5832         relevant platforms.
5833         * doc/posix-functions/getopt.texi: Mention modules 'getopt-posix' and
5834         'getopt-gnu' and more portability problems.
5835         * NEWS: Mention the changes.
5836
5837 2009-08-12  Bruno Haible  <bruno@clisp.org>
5838
5839         Ensure that optarg etc. get declared by <unistd.h>.
5840         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Require
5841         AC_USE_SYSTEM_EXTENSIONS.
5842         * modules/getopt (Depends-on): Add 'extensions'.
5843
5844 2009-08-12  Bruno Haible  <bruno@clisp.org>
5845
5846         Avoid test link errors.
5847         * modules/pipe-filter-ii-tests (Makefile.am): Define
5848         test_pipe_filter_ii1_LDADD and test_pipe_filter_ii2_main_LDADD.
5849         * modules/pipe-filter-gi-tests (Makefile.am): Define
5850         test_pipe_filter_gi1_LDADD and test_pipe_filter_gi2_main_LDADD.
5851         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
5852
5853 2009-08-12  Bruno Haible  <bruno@clisp.org>
5854
5855         * m4/getopt.m4 (gl_REPLACE_GETOPT): New macro, was called
5856         gl_GETOPT_SUBSTITUTE before.
5857         (gl_GETOPT): Use it.
5858         * m4/argp.m4 (gl_ARGP): Update.
5859         Reported by Sergey Poznyakoff.
5860
5861         * m4/getopt.m4: Reorder macros.
5862         (gl_GETOPT): Inline gl_GETOPT_SUBSTITUTE.
5863         (gl_GETOPT_SUBSTITUTE): Remove macro.
5864
5865 2009-08-12  Sergey Poznyakoff  <gray@gnu.org.ua>
5866
5867         Minor improvement in gitlog-to-changelog
5868
5869         * build-aux/gitlog-to-changelog: New option `--format' makes
5870         output format string configurable.
5871
5872 2009-08-12  Sergey Poznyakoff  <gray@gnu.org.ua>
5873
5874         Optimize exclude: use hash tables for non-wildcard patterns.
5875
5876         * lib/exclude.c: Include hash.h and mbuiter.h
5877         (struct exclude_pattern, exclude_segment): New data types.
5878         (struct exclude): Rewrite.
5879         (fnmatch_pattern_has_wildcards): New function.
5880         (new_exclude_segment, free_exclude_segment): New functions.
5881         (excluded_file_pattern_p, excluded_file_name_p): New functions.
5882         (excluded_file_name, add_exclude): Rewrite using new struct exclude.
5883         * lib/exclude.h (is_fnmatch_pattern): New prototype.
5884         * modules/exclude: Depend on hash and mbuiter.
5885
5886         * modules/exclude-tests: New file.
5887         * tests/test-exclude.c: New file.
5888         * tests/test-exclude1.sh: New file.
5889         * tests/test-exclude2.sh: New file.
5890         * tests/test-exclude3.sh: New file.
5891         * tests/test-exclude4.sh: New file.
5892         * tests/test-exclude5.sh: New file.
5893         * tests/test-exclude6.sh: New file.
5894         * tests/test-exclude7.sh: New file.
5895
5896 2009-08-12  Bruno Haible  <bruno@clisp.org>
5897
5898         Ensure that getopt() gets declared by <unistd.h>.
5899         * lib/unistd.in.h: Conditionally include getopt.h.
5900         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Require gl_UNISTD_H_DEFAULTS.
5901         Set GNULIB_UNISTD_H_GETOPT.
5902         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
5903         GNULIB_UNISTD_H_GETOPT.
5904         * modules/unistd (Makefile.am): Substitute GNULIB_UNISTD_H_GETOPT.
5905
5906 2009-08-12  Bruno Haible  <bruno@clisp.org>
5907
5908         Clarify logic.
5909         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS, gl_GETOPT_IFELSE): Use
5910         gl_replace_getopt instead of GETOPT_H.
5911
5912 2009-08-12  Bruno Haible  <bruno@clisp.org>
5913
5914         * m4/getopt.m4: Add comments.
5915
5916 2009-08-12  Bruno Haible  <bruno@clisp.org>
5917
5918         Disable multithread support by default on Cygwin 1.5.x.
5919         * m4/threadlib.m4 (gl_THREADLIB_EARLY_BODY): On Cygwin 1.5.x and older,
5920         set gl_use_threads=no if not specified otherwise.
5921
5922 2009-08-11  Bruno Haible  <bruno@clisp.org>
5923
5924         Avoid compilation error on NetBSD 5.0.
5925         * tests/test-locale.c: Write sizeof (NULL) instead of sizeof NULL.
5926         * tests/test-stdio.c: Likewise.
5927         * tests/test-stdlib.c: Likewise.
5928         * tests/test-string.c: Likewise.
5929         * tests/test-unistd.c: Likewise.
5930         Reported by Greg Troxel <gdt@ir.bbn.com>
5931         at <https://savannah.gnu.org/support/?106973>.
5932
5933 2009-08-11  Bruno Haible  <bruno@clisp.org>
5934
5935         * modules/dup2-tests (Depends-on): Remove close.
5936
5937         Undo 2009-07-19 commit.
5938         * modules/acl-tests (Depends-on): Remove close.
5939         * modules/binary-io-tests (Depends-on): Likewise.
5940         * modules/closein-tests (Depends-on): Likewise.
5941         * modules/flock-tests (Depends-on): Likewise.
5942         * modules/fsync-tests (Depends-on): Likewise.
5943         * modules/lseek-tests (Depends-on): Likewise.
5944         * modules/pipe-tests (Depends-on): Likewise.
5945         * modules/posix_spawn-tests (Depends-on): Likewise.
5946         * modules/posix_spawnp-tests (Depends-on): Likewise.
5947         * modules/stat-time-tests (Depends-on): Likewise.
5948         * modules/yesno-tests (Depends-on): Likewise.
5949
5950 2009-08-10  Bruno Haible  <bruno@clisp.org>
5951
5952         * lib/vasnprintf.c (DCHAR_SET): Undefine at the end.
5953
5954 2009-08-10  Bruno Haible  <bruno@clisp.org>
5955
5956         Fix a gcc warning.
5957         * lib/write.c (rpl_write): Cast result of _get_osfhandle.
5958
5959 2009-08-10  Bruno Haible  <bruno@clisp.org>
5960
5961         Don't optimize AC_LIBOBJs, as they may appear in different contexts.
5962         * m4/close.m4 (gl_REPLACE_CLOSE): Execute AC_LIBOBJ unconditionally,
5963         not only the first time.
5964         * m4/fclose.m4 (gl_REPLACE_FCLOSE): Likewise.
5965         * m4/open.m4 (gl_REPLACE_OPEN): Likewise.
5966         * m4/strstr.m4 (gl_FUNC_STRSTR): Execute AC_LIBOBJ when REPLACE_STRSTR
5967         is 1, not only the the first time.
5968
5969 2009-08-10  Bruno Haible  <bruno@clisp.org>
5970
5971         Make it possible to use module 'gethostname' without module 'close'.
5972         * lib/unistd.in.h (close): Evoke a link error only if
5973         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS is set.
5974         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
5975         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
5976         * modules/unistd (Makefile.am): Substitute
5977         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
5978         * lib/sys_ioctl.in.h (ioctl): Evoke a link error only if
5979         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS is set.
5980         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H_DEFAULTS): Initialize
5981         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
5982         * modules/sys_ioctl (Makefile.am): Substitute
5983         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
5984         * modules/socket (configure.ac): On native Windows, set
5985         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS and
5986         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
5987         Reported by Sam Steingold <sds@gnu.org>.
5988
5989 2009-08-10  Bruno Haible  <bruno@clisp.org>
5990
5991         * m4/close.m4 (gl_FUNC_CLOSE): Add comment.
5992         * modules/ioctl (configure.ac): Likewise.
5993
5994 2009-08-10  Bruno Haible  <bruno@clisp.org>
5995
5996         Avoid collision between gnulib wrapper and libintl wrapper.
5997         * lib/stdio-write.c (printf): Don't define if a printf wrapper is
5998         already defined in intl/printf.c.
5999         (vprintf): Test REPLACE_VPRINTF_POSIX, not REPLACE_VFPRINTF_POSIX.
6000         (vfprintf): Test REPLACE_VFPRINTF_POSIX, not REPLACE_VPRINTF_POSIX.
6001
6002 2009-08-09  Bruno Haible  <bruno@clisp.org>
6003
6004         Make <sys/select.h> really self-contained, also on Solaris 10.
6005         * lib/sys_select.in.h: Include <string.h>.
6006         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Test also against
6007         Solaris 10 problem.
6008         * tests/test-sys_select.c (main): Add check that FD_ZERO can be used.
6009         * doc/posix-headers/sys_select.texi: Mention the Solaris 10 problem.
6010         Reported by Jim Meyering.
6011
6012 2009-08-09  Bruno Haible  <bruno@clisp.org>
6013
6014         Avoid warnings from 'aclocal' that are due to a use of macro name
6015         AM_XGETTEXT_OPTION that is not defined in automake.
6016         * modules/argp (configure.ac): Hide use of AM_XGETTEXT_OPTION from
6017         automake.
6018         * modules/error (configure.ac): Likewise.
6019         * modules/propername (configure.ac): Likewise.
6020         * modules/vasprintf (configure.ac): Likewise.
6021         * modules/verror (configure.ac): Likewise.
6022         * modules/xprintf (configure.ac): Likewise.
6023         * modules/xvasprintf (configure.ac): Likewise.
6024
6025 2009-08-08  Bruno Haible  <bruno@clisp.org>
6026
6027         Avoid compilation error in C++ mode.
6028         * lib/gettimeofday.c (rpl_gettimeofday): Cast timezone argument.
6029         Reported by Sam Steingold <sds@gnu.org>.
6030
6031 2009-08-08  Bruno Haible  <bruno@clisp.org>
6032
6033         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Define HOST_NAME_MAX also
6034         for the various Unix platforms.
6035         * doc/posix-headers/limits.texi: Update platforms list regarding
6036         HOST_NAME_MAX.
6037         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
6038
6039 2009-08-07  Jim Meyering  <meyering@redhat.com>
6040
6041         selinux-at: fix typo in a comment
6042         * lib/selinux-at.h: s/getfileconat/getfilecon/ in a comment.
6043         Spotted by Paolo Bonzini.
6044
6045         selinux-at: remove redundant m4 code, add documentation
6046         * modules/selinux-at (configure.ac): Remove redundant code.
6047         LIB_SELINUX is already set via the dependent module, selinux-h.
6048         (Include): Add quotes around selinux-at.h.
6049         * lib/selinux-at.h: Add documentation.
6050         Reported by Bruno Haible in
6051         http://marc.info/?l=gnulib-bug&m=124958988300749
6052
6053 2009-08-07  Bruno Haible  <bruno@clisp.org>
6054
6055         Avoid link error on MacOS X 10.3 and 10.4.
6056         * lib/argp-ba.c (argp_program_bug_address): Explicitly zero-initialize
6057         on non-ELF systems.
6058         * lib/argp-pv.c (argp_program_version): Likewise.
6059         Reported by Simon Josefsson.
6060
6061 2009-08-07  Simon Josefsson  <simon@josefsson.org>
6062
6063         * tests/test-version-etc.sh: Use $EXEEXT.
6064
6065 2009-08-06  Joel E. Denny  <jdenny@clemson.edu>
6066
6067         update-copyright: update documentation to point to maint.mk
6068         * build-aux/update-copyright: Here.
6069
6070 2009-08-06  Jim Meyering  <meyering@redhat.com>
6071
6072         maint.mk: support update-copyright-local
6073         * top/maint.mk (update-copyright-local): Define place-holder.
6074         (update-copyright): Depend on $(update-copyright-local).
6075
6076 2009-08-06  Jim Meyering  <meyering@redhat.com>
6077
6078         selinux-at: new module
6079         Initially written for coreutils, this module will soon be
6080         used by findutils, too.
6081         * MODULES.html.sh [Misc]: Add selinux-at.
6082         * lib/selinux-at.h: New file, from coreutils.
6083         * lib/selinux-at.c: Likewise.
6084         * modules/selinux-at: Likewise.
6085         (License): Change from LGPL to GPL, since it depends
6086         on the GPL'd openat module.
6087
6088         doc: update README
6089         * README: Remove references to cogito.
6090         Remove cvs-repo-updating instructions from 2007.
6091         Don't imply that CVS is better if you have limited disk space.
6092
6093 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
6094
6095         update-copyright: support C-style comments
6096         * build-aux/update-copyright: Implement and document.
6097         * tests/test-update-copyright.sh: Test.
6098
6099 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
6100
6101         update-copyright: support omitted "(C)"
6102         * build-aux/update-copyright: Implement and document.  Also,
6103         allow variable whitespace before "(C)".
6104         * tests/test-update-copyright.sh: Test.
6105
6106 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
6107
6108         update-copyright: don't trip on non-FSF copyright statements
6109         * build-aux/update-copyright: Fix so that the first correctly
6110         formatted FSF copyright statement is recognized no matter what
6111         appears before it.  Update documentation.
6112         * tests/test-update-copyright.sh: Test that.
6113
6114 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
6115
6116         update-copyright: clean up code a little
6117         * build-aux/update-copyright: Append "_re" to the name of any
6118         variable holding a regular expression.
6119         Replace "old" and "new" with "stmt" in variable names.
6120         Do not accept 2-digit UPDATE_COPYRIGHT_YEAR, which was not
6121         handled correctly.
6122         Format code more consistently.
6123
6124 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
6125
6126         update-copyright-tests: improve portability
6127         * tests/test-update-copyright.sh: Use cmp if diff cannot handle
6128         -u or /dev/null.  Suggested by Jim Meyering and Eric Blake.
6129
6130 2009-08-03  Joel E. Denny  <jdenny@clemson.edu>
6131
6132         update-copyright: support @copyright{} and &copy;
6133         * build-aux/update-copyright: Implement and document.
6134         * tests/test-update-copyright.sh: Test.
6135
6136 2009-08-04  Jim Meyering  <meyering@redhat.com>
6137
6138         update-copyright-tests: correctly test EOL=\r\n handling
6139         * tests/test-update-copyright.sh: Put \r at the end of some lines
6140         for the dos-eol tests.  Based on a patch by Joel E. Denny.
6141
6142         maint.mk: make update-copyright exclusion list more configurable
6143         * top/maint.mk (update-copyright): Default to excluding COPYING,
6144         but allow an override, in case someone does want to update that file.
6145
6146         maint.mk: don't update copyright date in COPYING
6147         * top/maint.mk (update-copyright): Exclude COPYING.
6148
6149         maint.mk: add a copyright-updating rule
6150         * top/maint.mk (update-copyright): New rule.
6151         Derived from coreutils/Makefile.am.
6152
6153         update-copyright: rename some variables
6154         * build-aux/update-copyright: Rename a few variables for clarity.
6155         Tweak syntax.  List Joel E. Denny as coauthor.
6156
6157 2009-08-03  Joel E. Denny  <jdenny@clemson.edu>
6158
6159         update-copyright: fix bug for 2-digit last year and add tests
6160         * build-aux/update-copyright: Fix bug.
6161         Use UPDATE_COPYRIGHT_YEAR from environment as current year if
6162         specified.
6163         * modules/update-copyright-tests: New
6164         * tests/test-update-copyright.sh: New.
6165
6166 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
6167
6168         update-copyright: handle leading tabs in line prefix
6169         * build-aux/update-copyright: Count leading tabs as 8 spaces
6170         when computing margin.  This helps with the formatting of
6171         ChangeLogs, for example.
6172         Fix documentation a little.
6173
6174 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
6175
6176         update-copyright: support EOL=\r\n
6177         * build-aux/update-copyright: Implement that.
6178
6179 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
6180
6181         update-copyright: automatically format copyright statements
6182         * build-aux/update-copyright: Implement that.
6183         Also, be a little more predictable and safer by always failing
6184         when the full copyright format is not perfectly recognized as an
6185         unbroken whole.  Discussed at
6186         <http://lists.gnu.org/archive/html/bug-gnulib/2009-07/msg00131.html>.
6187         Rewrite documentation.
6188
6189 2009-08-03  Bruno Haible  <bruno@clisp.org>
6190
6191         * m4/iconv.m4 (AM_ICONV): Fix displayed message with autoconf-2.64.
6192
6193 2009-08-02  Bruno Haible  <bruno@clisp.org>
6194
6195         Tests for module 'uname'.
6196         * modules/uname-tests: New file.
6197         * tests/test-uname.c: New file.
6198
6199         New module 'uname'.
6200         * lib/uname.c: New file.
6201         * m4/uname.m4: New file.
6202         * modules/uname: New file.
6203         * doc/posix-functions/uname.texi: Mention the new module.
6204
6205 2009-08-02  Bruno Haible  <bruno@clisp.org>
6206
6207         Tests for module 'sys_utsname'.
6208         * modules/sys_utsname-tests: New file.
6209         * tests/test-sys_utsname.c: New file.
6210
6211         New module 'sys_utsname'.
6212         * lib/sys_utsname.in.h: New file, based on glibc's <sys/utsname.h>.
6213         * m4/sys_utsname_h.m4: New file.
6214         * modules/sys_utsname: New file.
6215         * doc/posix-headers/sys_utsname.texi: Mention the new module.
6216
6217 2009-08-02  Bruno Haible  <bruno@clisp.org>
6218
6219         Implicitly initialize the sockets library.
6220         * lib/gethostname.c: Include sockets.h.
6221         (rpl_gethostname): Invoke gl_sockets_startup.
6222         * lib/socket.c: Include sockets.h.
6223         (rpl_socket): Invoke gl_sockets_startup.
6224         * modules/gethostname (Depends-on): Add sockets.
6225         * modules/socket (Depends-on): Likewise.
6226         * tests/test-poll.c: Don't include sockets.h.
6227         (main): Don't invoke gl_sockets_startup.
6228         * tests/test-select.c: Don't include sockets.h.
6229         (main): Don't invoke gl_sockets_startup.
6230
6231 2009-08-02  Bruno Haible  <bruno@clisp.org>
6232
6233         Allow multiple calls to gl_sockets_startup.
6234         * lib/sockets.c (initialized_sockets_version): New variable.
6235         (gl_sockets_startup): Do nothing if already called for this or a higher
6236         version.
6237         (gl_sockets_cleanup): Reset initialized_sockets_version.
6238
6239 2009-08-03  Simon Josefsson  <simon@josefsson.org>
6240
6241         * tests/test-argp-version-etc-1.sh: Use EXEEXT.  Don't fail on
6242         different project/version.
6243
6244 2009-08-02  Paolo Bonzini  <bonzini@gnu.org>
6245             Bruno Haible  <bruno@clisp.org>
6246
6247         Tests for module 'pipe-filter-gi'.
6248         * modules/pipe-filter-gi-tests: New file.
6249         * tests/test-pipe-filter-gi1.sh: New file.
6250         * tests/test-pipe-filter-gi1.c: New file.
6251         * tests/test-pipe-filter-gi2.sh: New file.
6252         * tests/test-pipe-filter-gi2-main.c: New file.
6253         * tests/test-pipe-filter-gi2-child.c: New file.
6254
6255         New module 'pipe-filter-gi'.
6256         * lib/pipe-filter-gi.c: New file.
6257         * modules/pipe-filter-gi: New file.
6258
6259 2009-08-02  Bruno Haible  <bruno@clisp.org>
6260             Paolo Bonzini  <bonzini@gnu.org>
6261
6262         Tests for module 'pipe-filter-ii'.
6263         * modules/pipe-filter-ii-tests: New file.
6264         * tests/test-pipe-filter-ii1.sh: New file.
6265         * tests/test-pipe-filter-ii1.c: New file.
6266         * tests/test-pipe-filter-ii2.sh: New file.
6267         * tests/test-pipe-filter-ii2-main.c: New file.
6268         * tests/test-pipe-filter-ii2-child.c: New file.
6269
6270         New module 'pipe-filter-ii'.
6271         * lib/pipe-filter.h: New file.
6272         * lib/pipe-filter-ii.c: New file.
6273         * lib/pipe-filter-aux.h: New file.
6274         * modules/pipe-filter-ii: New file.
6275
6276 2009-08-02  Simon Josefsson  <simon@josefsson.org>
6277
6278         * lib/gc-libgcrypt.c: Change copyright to FSF.
6279         * lib/gc-gnulib.c: Likewise.
6280
6281 2009-08-02  Martin Lambers  <marlam@marlam.de>  (tiny change)
6282
6283         * lib/gethostname.c: Include limits.h.
6284
6285 2009-08-02  Simon Josefsson  <simon@josefsson.org>
6286             Bruno Haible  <bruno@clisp.org>
6287
6288         Ensure HOST_NAME_MAX as part of the gethostname module.
6289         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): On native Windows platforms,
6290         define also HOST_NAME_MAX.
6291         * tests/test-gethostname.c: Include <limits.h>.
6292         (main): Check also HOST_NAME_MAX.
6293         * doc/posix-headers/limits.texi: Document the mingw problem.
6294
6295 2009-08-02  Bruno Haible  <bruno@clisp.org>
6296
6297         * lib/gethostname.c (gethostname): Fix handling of large len argument.
6298         Add comments.
6299
6300 2009-03-31  Simon Josefsson  <simon@josefsson.org>
6301
6302         * lib/gethostname.c: Add Windows wrapper.
6303         * m4/gethostname.m4: Look for gethostname in -lws2_32.
6304         * modules/gethostname: Depend on sys_socket & errno, for also
6305         added lib/w32sock.h.  Add GETHOSTNAME_LIB link directive.
6306         * modules/gethostname-tests: Link to @GETHOSTNAME_LIB@.
6307
6308 2009-07-31  Jim Meyering  <meyering@redhat.com>
6309
6310         getloadavg: fix symbol name in comment
6311         * lib/getloadavg.c: Correct a typo I introduced when adding
6312         comments to Matt's change: s/NLIST_POINTER/N_NAME_POINTER/.
6313         Matt Kraai spotted the problem.
6314
6315 2009-07-29  Matt Kraai  <mkraai@beckman.com>
6316
6317         getloadavg: check whether n_name is a pointer, for QNX 6.4.1
6318         * lib/getloadavg.c (getloadavg): Use the strcpy-into-nlist.n_name
6319         code also if ! defined N_NAME_POINTER.
6320         * m4/getloadavg.m4 (gl_GETLOADAVG): Add a link-test for N_NAME_POINTER.
6321         This is required on QNX 6.4.1, where /usr/include/nlist.h exists,
6322         but the n_name member is a 12-byte array.
6323
6324 2009-07-29  Joel E. Denny  <jdenny@clemson.edu>
6325
6326         update-copyright: generalize comment handling
6327         * build-aux/update-copyright: Handle copyright statements
6328         within more comment styles.
6329         Document usage.
6330         Report any file with an external copyright holder or parse failure.
6331
6332 2009-07-29  Jim Meyering  <meyering@redhat.com>
6333
6334         mktime: correct setting of REPLACE_MKTIME
6335         * m4/mktime.m4 (gl_FUNC_MKTIME): Set REPLACE_MKTIME=0, when required.
6336
6337         update-copyright: new module
6338         * modules/update-copyright: New file.
6339         * build-aux/update-copyright: New file.
6340         * MODULES.html.sh (maint+release support): Add update-copyright.
6341
6342 2009-07-27  Bruno Haible  <bruno@clisp.org>
6343
6344         Fix compilation error when <ctime> is used and mktime is replaced.
6345         * lib/time.in.h (mktime): New declaration.
6346         * m4/mktime.m4 (gl_FUNC_MKTIME): Require gl_HEADER_TIME_H_DEFAULTS. Set
6347         REPLACE_MKTIME instead of defining mktime in config.h.
6348         * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize REPLACE_MKTIME.
6349         * modules/time (Makefile.am): Substitute REPLACE_MKTIME.
6350         Reported by Ross McFarland <rwmcfa1@neces.com>.
6351
6352 2009-07-27  Bruno Haible  <bruno@clisp.org>
6353
6354         * lib/math.in.h (cosl, logl, sinl): Undefine before declaring it.
6355         Reported by Matt Kraai <mkraai@beckman.com>.
6356
6357 2009-07-25  Jim Meyering  <meyering@redhat.com>
6358
6359         maint.mk: avoid warnings about missing files
6360         * top/maint.mk (PREV_VERSION): Suppress stderr, to hide a
6361         diagnostic when .prev-version does not exist.
6362         (_cfg_mk): Define, so it can be empty when cfg.mk does not exist.
6363         (syntax-check-rules): Use $(_cfg_mk) to avoid a diagnostic about
6364         nonexistent cfg.mk.
6365         Suggestions from Simon Josefsson.
6366
6367 2009-07-25  Bruno Haible  <bruno@clisp.org>
6368
6369         * lib/math.in.h (cosl, logl, sinl): Don't declare if they are already
6370         defined as macros. Needed on QNX 6.4.1.
6371         Reported by Matt Kraai <mkraai@beckman.com>.
6372
6373 2009-07-23  Jim Meyering  <meyering@redhat.com>
6374
6375         maint.mk: invoke "make dist" with a working value of XZ_OPT
6376         * top/maint.mk (vc-dist): Use no "-" in the value of XZ_OPT.
6377
6378 2009-07-22  Matt Kraai  <mkraai@beckman.com>  (tiny change)
6379
6380         Make fseeko.c compile on QNX.
6381         * lib/fseeko.c (rpl_fseeko): Use the numerical value of _MWRITE.
6382
6383 2009-07-22  Peter Simons  <simons@cryp.to>
6384
6385         C++: wrap md2,md5,sha1,etc. function declarations in extern "C" scope
6386         * lib/md2.h [__cplusplus]: Wrap declarations in extern "C" scope.
6387         * lib/md4.h: Likewise.
6388         * lib/md5.h: Likewise.
6389         * lib/sha1.h: Likewise.
6390         * lib/sha256.h: Likewise.
6391         * lib/sha512.h: Likewise.
6392
6393         tests-sha1: don't assign literal string to 'char *' variable
6394         * tests/test-sha1.c (main): Declare locals with "const" to match
6395         attributes of the right hand side.
6396
6397 2009-07-21  Eric Blake  <ebb9@byu.net>
6398
6399         dup2: fix more mingw problems
6400         * lib/dup2.c (rpl_dup2) [_WIN32]: Avoid hanging when duplicating
6401         fd to itself.
6402         * doc/posix-functions/dup2.texi (dup2): Document the bug.
6403         * lib/unistd.in.h (dup2) [REPLACE_FCHDIR]: Avoid name collision.
6404         * lib/fchdir.c (dup2): Manage preprocessor macros correctly.
6405         (rpl_dup2_fchdir): Rename from rpl_dup2, and let dup2 module take
6406         care of mingw bugs.
6407
6408 2009-07-21  Jim Meyering  <meyering@redhat.com>
6409
6410         vc-list-files: avoid failure when /bin/sh is dash
6411         * build-aux/vc-list-files: Avoid a shell portability problem with dash.
6412         On some Debian based systems, /bin/sh is a symlink to dash, and running
6413         this command would omit the "/" following each 'tests' prefix:
6414           dash -x build-aux/vc-list-files -C . tests
6415         That is because bash and dash work differently:
6416           $ for i in bash dash; do $i -c 'a=odd; a=ok b=$a; echo '$i' $b'; done
6417           bash ok
6418           dash odd
6419
6420 2009-07-21  Eric Blake  <ebb9@byu.net>
6421
6422         dup2-tests: test previous patch
6423         * modules/dup2-tests: New file.
6424         * tests/test-dup2.c: Likewise.
6425         * tests/test-open.c (main): Avoid unspecified behavior.
6426         * tests/test-pipe.c (child_main): Use dup2 semantics to simplify
6427         test.
6428
6429         dup2: work around mingw and cygwin 1.5 bug
6430         * m4/dup2.m4 (gl_FUNC_DUP2): Detect mingw bug.
6431         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
6432         * modules/unistd (Makefile.am): Substitute it.
6433         * lib/unistd.in.h (dup2): Declare the replacement.
6434         * lib/dup2.c (dup2) [REPLACE_DUP2]: Implement it.
6435         * doc/posix-functions/dup2.texi (dup2): Document the bugs.
6436         * lib/fchdir.c (rpl_dup2): Don't collide with mingw replacement.
6437         * modules/execute (Depends-on): Add dup2.
6438         * modules/fseterr (Depends-on): Likewise.
6439         * modules/pipe (Depends-on): Likewise.
6440         * modules/posix_spawn-internal (Depends-on): Likewise.
6441
6442 2009-07-21  Bruno Haible  <bruno@clisp.org>
6443
6444         * modules/.gitattributes: New file.
6445
6446 2009-07-20  Bruno Haible  <bruno@clisp.org>
6447
6448         * tests/test-pipe.c (BACKUP_STDERR_FILENO): New macro.
6449         (main): Use it.
6450
6451 2009-07-20  Eric Blake  <ebb9@byu.net>
6452
6453         test-pipe: make a bit more robust.
6454         * tests/test-pipe.c (myerr): Allow error messages regardless of
6455         what we do to stderr.
6456         (test_pipe): Rearrange to avoid deadlock.
6457         (child_main): Try a larger read, to ensure we avoided deadlock.
6458         * lib/pipe.c (create_pipe) [_WIN32]: Fix comment.
6459         * lib/pipe.h (create_pipe_bidi): Document potential for deadlock
6460         if misused.
6461
6462 2009-07-19  Jim Meyering  <meyering@redhat.com>
6463
6464         fts: avoid false-positive cycle-detection
6465         * lib/fts.c (fts_read): Reinitialize cycle-detection data structures
6466         for each new command line argument.
6467
6468 2009-07-19  Bruno Haible  <bruno@clisp.org>
6469
6470         Fix build error on mingw with the modules sys_select and unistd.
6471         * modules/acl-tests (Depends-on): Add close.
6472         * modules/binary-io-tests (Depends-on): Likewise.
6473         * modules/closein-tests (Depends-on): Likewise.
6474         * modules/flock-tests (Depends-on): Likewise.
6475         * modules/fsync-tests (Depends-on): Likewise.
6476         * modules/lseek-tests (Depends-on): Likewise.
6477         * modules/pipe-tests (Depends-on): Likewise.
6478         * modules/posix_spawn-tests (Depends-on): Likewise.
6479         * modules/posix_spawnp-tests (Depends-on): Likewise.
6480         * modules/stat-time-tests (Depends-on): Likewise.
6481         * modules/yesno-tests (Depends-on): Likewise.
6482
6483 2009-07-19  Bruno Haible  <bruno@clisp.org>
6484
6485         Unify conditionals.
6486         * lib/pipe.h: Detect native Win32 by looking at _WIN32 and __WIN32__
6487         macros, not at the compiler macros.
6488         * lib/pipe.c: Likewise.
6489         * lib/execute.c: Likewise.
6490         * lib/spawni.c: Likewise.
6491
6492 2009-07-19  Bruno Haible  <bruno@clisp.org>
6493
6494         Fix handling of closed stdin/stdout/stderr on mingw.
6495         * lib/w32spawn.h: Include unistd.h.
6496         (dup_noinherit): Return -1 if the old handle is invalid. Allocate new
6497         file descriptor with O_NOINHERIT flag.
6498         (fd_safer_noinherit): New function, based on fd-safer.c.
6499         (dup_safer_noinherit): New function, based on dup-safer.c.
6500         (undup_safer_noinherit): New function.
6501         * lib/execute.c (execute) [WIN32]: Use dup_safer_noinherit instead of
6502         dup_noinherit. Use undup_safer_noinherit instead of dup2 and close.
6503         * lib/pipe.c (create_pipe) [WIN32]: Likewise. Use fd_safer_noinherit
6504         instead of fd_safer.
6505         * tests/test-pipe.c: Include <windows.h>.
6506         (child_main) [WIN32]: Test the handle of STDERR_FILENO, not its close() result.
6507
6508         * tests/test-pipe.c (child_main, parent_main): New functions, extracted
6509         from main.
6510         (test_pipe): Pass an extra argument for disambiguation.
6511         (main): Invoke parent_main or child_main.
6512
6513         * tests/test-pipe.c (test_pipe): Pass slave_process = true argument
6514         consistently.
6515
6516 2009-07-18  Eric Blake  <ebb9@byu.net>
6517
6518         test-pipe: fix mingw build
6519         * tests/test-pipe.c (main): Avoid fcntl on mingw.
6520
6521 2009-07-18  Bruno Haible  <bruno@clisp.org>
6522
6523         * modules/pipe-tests (Makefile.am): Fix typo.
6524
6525 2009-07-18  Eric Blake  <ebb9@byu.net>
6526
6527         error: fix mingw build
6528         * lib/error.c (error, error_at_line): Avoid fcntl on mingw.
6529         Reported by Bruno Haible.
6530
6531         error: avoid undefined use of stdout
6532         * lib/error.c (error, error_at_line): Check that fd 1 is open
6533         before flushing stdout.  Avoids a crash on cygwin when libsigsegv
6534         is handling faults and the close_stdout module wants to report the
6535         detection of closed stdout as an error.
6536
6537 2009-07-17  Eric Blake  <ebb9@byu.net>
6538
6539         pipe: be robust in face of closed fds
6540         * lib/pipe.c (create_pipe): Closed standard descriptors in parent
6541         should cause child to misbehave.
6542         * modules/pipe-tests: New module.
6543         * tests/test-pipe.c: New file.
6544         * tests/test-pipe.sh: New file.
6545         Reported by Akim Demaille.
6546
6547 2009-07-14  Bruno Haible  <bruno@clisp.org>
6548
6549         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Guess it works on glibc systems.
6550         Reported by anonymous kc.
6551
6552 2009-07-07  Jim Meyering  <meyering@redhat.com>
6553
6554         maint.mk: don't look for translatable strings in *.m4 or *.mk
6555         * top/maint.mk (sc_po_check): Skip *.m4 and *.mk files,
6556         when searching for translatable strings.
6557
6558 2009-07-05  Jim Meyering  <meyering@redhat.com>
6559
6560         remove superfluous parentheses in STREQ definition
6561         * tests/test-argv-iter.c (STREQ): Remove redundant parentheses.
6562         * lib/getugroups.c (STREQ): Likewise.
6563         * lib/fnmatch.c (STREQ): Likewise.
6564         Spotted by Bruno Haible.
6565
6566 2009-07-04  Jim Meyering  <meyering@redhat.com>
6567
6568         argv-iter: new module
6569         * MODULES.html.sh: Add argv-iter.
6570         * lib/argv-iter.c, lib/argv-iter.h: New files.
6571         * modules/argv-iter: New file.
6572         * modules/argv-iter-tests: New file.
6573         * tests/test-argv-iter.c: Test it.
6574
6575 2009-07-04  Bruno Haible  <bruno@clisp.org>
6576
6577         Fix assertion.
6578         * lib/git-merge-changelog.c (compute_mapping): In the case where file1
6579         contains more exact copies of a given entry than file2, leave the extra
6580         copies unpaired rather than aborting.
6581         Reported by Eric Blake.
6582
6583 2009-07-02  Bruno Haible  <bruno@clisp.org>
6584
6585         Speedup git-merge-changelog for git cherry-pick.
6586         * lib/git-merge-changelog.c (struct entries_mapping): New type.
6587         (entries_mapping_get): New function, extracted from compute_mapping.
6588         (entries_mapping_reverse_get): New function.
6589         (compute_mapping): Add a 'full' argument. Return the result in a
6590         'struct entries_mapping'.
6591         (main): Update. Access the mappings through entries_mapping_get.
6592         Reported by Eric Blake.
6593
6594 2009-07-02  Bruno Haible  <bruno@clisp.org>
6595
6596         * lib/git-merge-changelog.c (compute_mapping): Fix determination of
6597         best_i.
6598
6599 2009-07-02  Bruno Haible  <bruno@clisp.org>
6600
6601         Speed up approximate search for matching ChangeLog entries.
6602         * lib/git-merge-changelog.c (entry_fstrcmp): Add a lower_bound
6603         argument. Call fstrcmp_bounded instead of fstrcmp.
6604         (compute_mapping, try_split_merged_entry, main): Update callers.
6605
6606 2009-07-02  Bruno Haible  <bruno@clisp.org>
6607
6608         * lib/git-merge-changelog.c (main): Add comment about git cherry-pick.
6609
6610 2009-06-30  Bruno Haible  <bruno@clisp.org>
6611
6612         Reduce the number of uc_is_cased calls.
6613         * lib/unicase.h (casing_suffix_context_t): Add
6614         'first_char_except_ignorable' field.
6615         * lib/unicase/context.h (SCC_FINAL_SIGMA_MASK): Remove macro.
6616         (SCC_MORE_ABOVE_MASK, SCC_BEFORE_DOT_MASK): Update.
6617         * lib/unicase/empty-suffix-context.c (unicase_empty_suffix_context):
6618         Update initializer.
6619         * lib/unicase/u-casemap.h (FUNC): Don't invoke uc_is_cased on
6620         case-ignorable characters.
6621         * lib/unicase/u-ct-totitle.h (FUNC): Likewise.
6622         * lib/unicase/u-suffix-context.h (FUNC2): Don't call uc_is_cased here.
6623         * modules/unicase/u8-suffix-context (Depends-on): Remove unicase/cased.
6624         * modules/unicase/u16-suffix-context (Depends-on): Likewise.
6625         * modules/unicase/u32-suffix-context (Depends-on): Likewise.
6626
6627 2009-06-30  Bruno Haible  <bruno@clisp.org>
6628
6629         Tests for module 'unicase/ignorable'.
6630         * modules/unicase/ignorable-tests: New file.
6631         * tests/unicase/test-ignorable.c: New file, generated by
6632         gen-uni-tables.
6633
6634         Tests for module 'unicase/cased'.
6635         * modules/unicase/cased-tests: New file.
6636         * tests/unicase/test-cased.c: New file, generated by gen-uni-tables.
6637         * tests/unicase/test-predicate-part1.h: New file, derived from
6638         tests/unictype/test-predicate-part1.h.
6639         * tests/unicase/test-predicate-part2.h: New file, same as
6640         tests/unictype/test-predicate-part2.h.
6641
6642         Fix evaluation of "Before C" condition of FINAL_SIGMA.
6643         * lib/gen-uni-tables.c (is_cased, is_case_ignorable): New functions.
6644         (output_casing_properties): New function.
6645         (main): Call it.
6646         * lib/unicase/cased.h: New file, generated by gen-uni-tables.
6647         * lib/unicase/cased.c: Include unictype/bitmap.h.
6648         (uc_is_cased): Define through a bitmap lookup.
6649         * lib/unicase/ignorable.h: New file, generated by gen-uni-tables.
6650         * lib/unicase/ignorable.c: Include unictype/bitmap.h.
6651         (uc_is_case_ignorable): Define through a bitmap lookup.
6652         * modules/unicase/cased (Files): Add lib/unicase/cased.h,
6653         lib/unictype/bitmap.h.
6654         (Depends-on): Add inline. Clean up.
6655         * modules/unicase/ignorable (Files): Add lib/unicase/ignorable.h,
6656         lib/unictype/bitmap.h.
6657         (Depends-on): Add inline. Clean up.
6658         * tests/unicase/test-u8-tolower.c (main): Add more tests of FINAL_SIGMA
6659         recognition.
6660         * tests/unicase/test-u16-tolower.c (main): Likewise.
6661         * tests/unicase/test-u32-tolower.c (main): Likewise.
6662
6663 2009-06-30  Bruno Haible  <bruno@clisp.org>
6664
6665         * lib/unicase/u8-casemap.c: Don't include uniwbrk.h.
6666         * lib/unicase/u16-casemap.c: Likewise.
6667         * lib/unicase/u32-casemap.c: Likewise.
6668
6669 2009-06-29  Bruno Haible  <bruno@clisp.org>
6670
6671         Define u32_casefold as a wrapper around u32_ct_casefold.
6672         * lib/unicase/u32-casefold.c: Update.
6673         * modules/unicase/u32-casefold (Depends-on): Add
6674         unicase/u32-ct-casefold, unicase/empty-prefix-context,
6675         unicase/empty-suffix-context. Clean up.
6676
6677         Define u16_casefold as a wrapper around u16_ct_casefold.
6678         * lib/unicase/u16-casefold.c: Update.
6679         * modules/unicase/u16-casefold (Depends-on): Add
6680         unicase/u16-ct-casefold, unicase/empty-prefix-context,
6681         unicase/empty-suffix-context. Clean up.
6682
6683         Define u8_casefold as a wrapper around u8_ct_casefold.
6684         * lib/unicase/u-casefold.h (FUNC): Delegate to U_CT_CASEFOLD.
6685         * lib/unicase/u8-casefold.c: Update.
6686         * modules/unicase/u8-casefold (Depends-on): Add unicase/u8-ct-casefold,
6687         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
6688
6689         Define u32_totitle as a wrapper around u32_ct_totitle.
6690         * lib/unicase/u32-totitle.c: Update.
6691         * modules/unicase/u32-totitle (Depends-on): Add unicase/u32-ct-totitle,
6692         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
6693
6694         Define u16_totitle as a wrapper around u16_ct_totitle.
6695         * lib/unicase/u16-totitle.c: Update.
6696         * modules/unicase/u16-totitle (Depends-on): Add unicase/u16-ct-totitle,
6697         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
6698
6699         Define u8_totitle as a wrapper around u8_ct_totitle.
6700         * lib/unicase/u-totitle.h (is_cased, is_case_ignorable): Remove
6701         functions.
6702         (FUNC): Delegate to U_CT_TOTITLE.
6703         * lib/unicase/u8-totitle.c: Update.
6704         * modules/unicase/u8-totitle (Depends-on): Add unicase/u8-ct-totitle,
6705         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
6706
6707         * lib/unicase/u32-tolower.c (u32_tolower): Update u32_casemap
6708         invocation.
6709         * modules/unicase/u32-tolower (Depends-on): Add
6710         unicase/empty-prefix-context, unicase/empty-suffix-context.
6711
6712         * lib/unicase/u16-tolower.c (u16_tolower): Update u16_casemap
6713         invocation.
6714         * modules/unicase/u16-tolower (Depends-on): Add
6715         unicase/empty-prefix-context, unicase/empty-suffix-context.
6716
6717         * lib/unicase/u8-tolower.c (u8_tolower): Update u8_casemap invocation.
6718         * modules/unicase/u8-tolower (Depends-on): Add
6719         unicase/empty-prefix-context, unicase/empty-suffix-context.
6720
6721         * lib/unicase/u32-toupper.c (u32_toupper): Update u32_casemap
6722         invocation.
6723         * modules/unicase/u32-toupper (Depends-on): Add
6724         unicase/empty-prefix-context, unicase/empty-suffix-context.
6725
6726         * lib/unicase/u16-toupper.c (u16_toupper): Update u16_casemap
6727         invocation.
6728         * modules/unicase/u16-toupper (Depends-on): Add
6729         unicase/empty-prefix-context, unicase/empty-suffix-context.
6730
6731         * lib/unicase/u8-toupper.c (u8_toupper): Update u8_casemap invocation.
6732         * modules/unicase/u8-toupper (Depends-on): Add
6733         unicase/empty-prefix-context, unicase/empty-suffix-context.
6734
6735         New module 'unicase/u32-ct-casefold'.
6736         * lib/unicase/u32-ct-casefold.c: New file.
6737         * modules/unicase/u32-ct-casefold: New file.
6738
6739         New module 'unicase/u16-ct-casefold'.
6740         * lib/unicase/u16-ct-casefold.c: New file.
6741         * modules/unicase/u16-ct-casefold: New file.
6742
6743         New module 'unicase/u8-ct-casefold'.
6744         * lib/unicase/u8-ct-casefold.c: New file.
6745         * lib/unicase/u-ct-casefold.h: New file, derived from
6746         lib/unicase/u-casefold.h.
6747         * modules/unicase/u8-ct-casefold: New file.
6748
6749         New module 'unicase/u32-ct-totitle'.
6750         * lib/unicase/u32-ct-totitle.c: New file.
6751         * modules/unicase/u32-ct-totitle: New file.
6752
6753         New module 'unicase/u16-ct-totitle'.
6754         * lib/unicase/u16-ct-totitle.c: New file.
6755         * modules/unicase/u16-ct-totitle: New file.
6756
6757         New module 'unicase/u8-ct-totitle'.
6758         * lib/unicase/u8-ct-totitle.c: New file.
6759         * lib/unicase/u-ct-totitle.h: New file, derived from
6760         lib/unicase/u-totitle.h.
6761         * modules/unicase/u8-ct-totitle: New file.
6762
6763         New module 'unicase/u32-ct-tolower'.
6764         * lib/unicase/u32-ct-tolower.c: New file.
6765         * modules/unicase/u32-ct-tolower: New file.
6766
6767         New module 'unicase/u16-ct-tolower'.
6768         * lib/unicase/u16-ct-tolower.c: New file.
6769         * modules/unicase/u16-ct-tolower: New file.
6770
6771         New module 'unicase/u8-ct-tolower'.
6772         * lib/unicase/u8-ct-tolower.c: New file.
6773         * modules/unicase/u8-ct-tolower: New file.
6774
6775         New module 'unicase/u32-ct-toupper'.
6776         * lib/unicase/u32-ct-toupper.c: New file.
6777         * modules/unicase/u32-ct-toupper: New file.
6778
6779         New module 'unicase/u16-ct-toupper'.
6780         * lib/unicase/u16-ct-toupper.c: New file.
6781         * modules/unicase/u16-ct-toupper: New file.
6782
6783         New module 'unicase/u8-ct-toupper'.
6784         * lib/unicase/u8-ct-toupper.c: New file.
6785         * modules/unicase/u8-ct-toupper: New file.
6786
6787         Add context arguments to u*_casemap functions.
6788         * lib/unicase/unicasemap.h: Include unicase.h.
6789         (u8_casemap, u16_casemap, u32_casemap): Add prefix_context and
6790         suffix_context arguments.
6791         * lib/unicase/u-casemap.h (is_cased, is_case_ignorable): Remove
6792         functions.
6793         (FUNC): Add prefix_context and suffix_context arguments. Use
6794         uc_is_cased and uc_is_case_ignorable.
6795         * lib/unicase/u8-casemap.c: Include caseprop.h and context.h.
6796         * lib/unicase/u16-casemap.c: Likewise.
6797         * lib/unicase/u32-casemap.c: Likewise.
6798         * modules/unicase/u8-casemap (Files): Add lib/unicase/context.h.
6799         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
6800         * modules/unicase/u16-casemap (Files): Add lib/unicase/context.h.
6801         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
6802         * modules/unicase/u32-casemap (Files): Add lib/unicase/context.h.
6803         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
6804
6805         New module 'unicase/u32-suffix-context'.
6806         * lib/unicase/u32-suffix-context.c: New file.
6807         * modules/unicase/u32-suffix-context: New file.
6808
6809         New module 'unicase/u16-suffix-context'.
6810         * lib/unicase/u16-suffix-context.c: New file.
6811         * modules/unicase/u16-suffix-context: New file.
6812
6813         New module 'unicase/u8-suffix-context'.
6814         * lib/unicase/u8-suffix-context.c: New file.
6815         * lib/unicase/u-suffix-context.h: New file.
6816         * modules/unicase/u8-suffix-context: New file.
6817
6818         New module 'unicase/empty-suffix-context'.
6819         * lib/unicase/empty-suffix-context.c: New file.
6820         * modules/unicase/empty-suffix-context: New file.
6821
6822         New module 'unicase/u32-prefix-context'.
6823         * lib/unicase/u32-prefix-context.c: New file.
6824         * modules/unicase/u32-prefix-context: New file.
6825
6826         New module 'unicase/u16-prefix-context'.
6827         * lib/unicase/u16-prefix-context.c: New file.
6828         * modules/unicase/u16-prefix-context: New file.
6829
6830         New module 'unicase/u8-prefix-context'.
6831         * lib/unicase/u8-prefix-context.c: New file.
6832         * lib/unicase/u-prefix-context.h: New file.
6833         * lib/unicase/context.h: New file.
6834         * modules/unicase/u8-prefix-context: New file.
6835
6836         New module 'unicase/empty-prefix-context'.
6837         * lib/unicase/empty-prefix-context.c: New file.
6838         * modules/unicase/empty-prefix-context: New file.
6839
6840         New module 'unicase/ignorable'.
6841         * lib/unicase/ignorable.c: New file.
6842         * modules/unicase/ignorable: New file.
6843
6844         New module 'unicase/cased'.
6845         * lib/unicase/caseprop.h: New file.
6846         * lib/unicase/cased.c: New file.
6847         * modules/unicase/cased: New file.
6848
6849         New functions for case mapping of substrings.
6850         * lib/unicase.h (casing_prefix_context_t): New type.
6851         (unicase_empty_prefix_context): New variable.
6852         (u8_casing_prefix_context, u16_casing_prefix_context,
6853         u32_casing_prefix_context, u8_casing_prefixes_context,
6854         u16_casing_prefixes_context, u32_casing_prefixes_context): New
6855         declarations.
6856         (casing_suffix_context_t): New type.
6857         (unicase_empty_suffix_context): New variable.
6858         (u8_casing_suffix_context, u16_casing_suffix_context,
6859         u32_casing_suffix_context, u8_casing_suffixes_context,
6860         u16_casing_suffixes_context, u32_casing_suffixes_context,
6861         u8_ct_toupper, u16_ct_toupper, u32_ct_toupper, u8_ct_tolower,
6862         u16_ct_tolower, u32_ct_tolower, u8_ct_totitle, u16_ct_totitle,
6863         u32_ct_totitle, u8_ct_casefold, u16_ct_casefold, u32_ct_casefold): New
6864         declarations.
6865
6866 2009-06-28  Jim Meyering  <meyering@redhat.com>
6867
6868         boostrap: indent only with spaces
6869         * build-aux/bootstrap: Indent only with spaces, never TABs.
6870
6871         bootstrap: split long lines
6872         * build-aux/bootstrap: Keep line length < 80.
6873
6874         bootstrap: sync from coreutils
6875         * build-aux/bootstrap: Honor variables like $ACLOCAL, etc.,
6876         just as autoreconf does.  Verify a list of prerequisite
6877         package-name,version-number pairs if defined in bootstrap.conf.
6878         Refer to README-prereq, if prerequisites are not satisfied.
6879
6880 2009-06-27  Eric Blake  <ebb9@byu.net>
6881
6882         tests: add test for bogus NULL definition
6883         * tests/test-stdio.c: Ensure POSIX 2008 requirement on NULL.
6884         * tests/test-stdlib.c: Likewise.
6885         * tests/test-string.c: Likewise.
6886         * tests/test-locale.c: Likewise.
6887         * tests/test-unistd.c: Likewise.
6888         * modules/stdio-tests (Depends-on): Add verify.
6889         * modules/stdlib-tests (Depends-on): Likewise.
6890         * modules/string-tests (Depends-on): Likewise.
6891         * modules/locale-tests (Depends-on): Likewise.
6892         * modules/unistd-tests (Depends-on): Likewise.
6893
6894 2009-06-27  Paolo Bonzini  <bonzini@gnu.org>
6895
6896         * m4/selinux-context-h (gl_HEADERS_SELINUX_CONTEXT_H): Remove
6897         self-explaining comment.
6898         * m4/selinux-selinux-h: Update serial.
6899         (gl_LIBSELINUX): New macro, adding a warning for missing development
6900         packages to code extracted from...
6901         (gl_HEADERS_SELINUX_SELINUX_H): ... this one.  Require gl_LIBSELINUX.
6902         Add warning for missing development packages here, too.
6903
6904 2009-06-26  Paolo Bonzini  <bonzini@gnu.org>
6905
6906         * build-aux/bootstrap: Do not use GIT_CONFIG_LOCAL.
6907
6908 2009-06-25  Eric Blake  <ebb9@byu.net>
6909
6910         version-etc: fix regression
6911         * lib/version-etc.h (ATTRIBUTE_SENTINEL): Define for new enough
6912         gcc.
6913         (version_etc): Use it, to catch bugs with trailing NULL.
6914         * lib/version-etc.c (version_etc_arn): Delete unused argument.
6915         (version_etc_va): Fix logic bug.
6916         * modules/version-etc-tests: Add test.
6917         * tests/test-version-etc.c: New file.
6918         * tests/test-version-etc.sh: Likewise.
6919
6920 2009-06-25  Sam Steingold  <sds@gnu.org>
6921
6922         * mbrtowc.m4 (gl_MBRTOWC_SANITYCHECK): Include <stdlib.h>, for the
6923         mbtowc declaration.
6924
6925 2009-06-25  Eric Blake  <ebb9@byu.net>
6926
6927         fpurge: migrate into <stdio.h>
6928         * lib/fpurge.h: Delete...
6929         * lib/stdio.in.h (fpurge): ...and declare here, instead.
6930         * lib/fpurge.c (fpurge): Change declaring header.
6931         * modules/fpurge (Files): Drop deleted file.
6932         (Depends-on): Add stdio.
6933         (configure.ac): Set witness.
6934         * modules/stdio (Makefile.am): Support fpurge macros.
6935         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
6936         * m4/fpurge.m4 (gl_FUNC_FPURGE): Set appropriate variables.
6937         * lib/fflush.c: Update client.
6938         * tests/test-fpurge.c: Likewise.
6939         * NEWS: Mention the change.
6940
6941 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
6942
6943         * lib/argp-version-etc.c (program_authors): Add const
6944         qualifier.
6945         * lib/version-etc.c: Fix typos in the comments.
6946         * modules/argp-version-etc: Depends on version-etc.
6947
6948 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
6949
6950         argp-version-etc: new module.
6951
6952         * lib/argp-version-etc.c: New file.
6953         * lib/argp-version-etc.h: New file.
6954         * modules/argp-version-etc: New file.
6955         * modules/argp-version-etc-tests: New file.
6956         * tests/test-argp-version-etc.c: New test.
6957         * tests/test-argp-version-etc-1.sh: New test.
6958
6959 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
6960
6961         Provide additional interfaces and documentation for version-etc
6962         module.
6963
6964         * lib/version-etc.c (version_etc_arn, version_etc_ar): New
6965         interfaces.
6966         * lib/version-etc.h (version_etc_arn, version_etc_ar): New
6967         prototypes.
6968
6969 2009-06-24  Bruno Haible  <bruno@clisp.org>
6970
6971         * m4/lib-link.m4 (AC_LIB_HAVE_LINKFLAGS): Fix description of
6972         HAVE_LIB${NAME} macro.
6973         Reported by Sam Steingold <sds@gnu.org>.
6974
6975 2009-06-23  Simon Josefsson  <simon@josefsson.org>
6976
6977         * modules/hash-tests (test_hash_LDADD): Link to libintl when
6978         needed.
6979
6980 2009-06-21  Bruno Haible  <bruno@clisp.org>
6981
6982         Make two consecutive identical invocations of AC_LIB_HAVE_LINKFLAGS
6983         work.
6984         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Reset HAVE_LIB${NAME}
6985         together with LIB${NAME}, LTLIB${NAME}.
6986         Reported by Sam Steingold <sds@gnu.org>.
6987
6988 2009-06-20  Jim Meyering  <meyering@redhat.com>
6989
6990         tests: make sc_require_test_exit_idiom more generic
6991         * top/maint.mk (Exit_witness_file): New overridable variable.
6992         (sc_require_test_exit_idiom): Don't hard-code tests/test-lib.sh.
6993         Relax test for /^Exit \$fail$$/ to just /^Exit ./.
6994
6995 2009-06-19  Jim Meyering  <meyering@redhat.com>
6996
6997         hash: reverse order of src/dst parameters in an internal interface
6998         * lib/hash.c (transfer_entries): Reverse order of parameters to
6999         put DST before SRC.  Adjust callers.
7000
7001         tests: test-hash: avoid wholesale duplication
7002         * tests/test-hash.c (main): Don't copy/paste a 60-line loop.
7003         Instead, use a loop and add a single conditional.
7004
7005         tests: test-hash: allow seed selection via a command line argument
7006         * tests/test-hash.c (get_seed): New function.
7007         (main): Use it.
7008
7009 2009-06-19  Eric Blake  <ebb9@byu.net>
7010
7011         hash: avoid memory leak on allocation failure
7012         * lib/hash.c: (hash_rehash): Avoid memory leak on allocation
7013         failure.  Factor repeated algorithm...
7014         (transfer_entries): ...into new helper routine.
7015         (hash_delete): React to hash_rehash return value.
7016
7017         hash: reduce memory pressure in hash_rehash no-op case
7018         * lib/hash.c (next_prime): Avoid overflow.
7019         (hash_initialize): Factor bucket size computation...
7020         (compute_bucket_size): ...into new helper function.
7021         (hash_rehash): Use new function and open coding to reduce memory
7022         pressure, and avoid a memory leak in USE_OBSTACK code.
7023         Reported by Jim Meyering.
7024
7025 2009-06-18  Eric Blake  <ebb9@byu.net>
7026
7027         hash: make rotation more obvious
7028         * modules/hash (Depends-on): Add bitrotate and stdint.
7029         * lib/bitrotate.h (rotl_sz, rotr_sz): New functions.
7030         * lib/hash.c (headers): Drop limits.h.  Add stdint.h.
7031         (SIZE_MAX): Rely on headers for definition.
7032         (hash_string) [USE_DIFF_HASH]: Use rotl_sz.
7033         (raw_hasher): Use rotr_sz.
7034         Suggested by Jim Meyering.
7035
7036         hash: fix memory leak in last patch
7037         * lib/hash.c (hash_rehash): Avoid memory leak.
7038
7039         hash: avoid no-op rehashing
7040         * lib/hash.c (hash_rehash): Recognize useless rehash attempts.
7041
7042         hash: provide default callback functions
7043         * lib/hash.c (raw_hasher, raw_comparator): New functions.
7044         (hash_initialize): Use them as defaults.
7045         * tests/test-hash.c (main): Test this.
7046
7047         hash: minor optimization
7048         * lib/hash.c (hash_lookup, hash_find_entry): Avoid function call
7049         when possible.
7050         (hash_initialize): Document this promise.
7051         (hash_do_for_each, hash_clear, hash_free): Use C89 syntax.
7052         * tests/test-hash.c (hash_compare_strings): Test this.
7053
7054 2009-06-18  Bruno Haible  <bruno@clisp.org>
7055
7056         * m4/strstr.m4 (gl_FUNC_STRSTR): Skip linear time test if strstr is
7057         going to be replaced anyway.
7058
7059 2009-06-18  Bruno Haible  <bruno@clisp.org>
7060
7061         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Invoke AC_LIBOBJ only
7062         in one place.
7063         (gl_FUNC_STRCASESTR): Skip linear time test if strcasestr is going to
7064         be replaced anyway.
7065
7066 2009-06-18  Eric Blake  <ebb9@byu.net>
7067
7068         hash: check for resize before insertion
7069         * lib/hash.c (hash_insert): Check whether bucket usage exceeds
7070         threshold before insertion, so that a pathological hash_rehash
7071         that fills every bucket can still trigger another rehash.
7072
7073 2009-06-18  Jim Meyering  <meyering@redhat.com>
7074
7075         hash-tests: add a loop around the small tests
7076         * tests/test-hash.c (main): Repeat small tests with selected
7077         small initial table sizes.
7078
7079 2009-06-17  Eric Blake  <ebb9@byu.net>
7080
7081         hash: minor cleanups
7082         * lib/hash.h (hash_entry): Make opaque, by moving...
7083         * lib/hash.c (hash_entry): ...here.
7084         (hash_insert): Clarify restrictions on what can be inserted.
7085         (hash_get_next): Clarify when it is safe to remove an element
7086         during traversal.
7087         (check_tuning): Skip verification when tuning is known safe.
7088         (hash_initialize): Clarify restrictions on tuning.
7089
7090 2009-06-17  Jim Meyering  <jim@meyering.net>
7091         and Eric Blake  <ebb9@byu.net>
7092
7093         hash-tests: new module
7094         * modules/hash-tests: New file.
7095         * tests/test-hash.c: New file.
7096
7097 2009-06-17  Eric Blake  <ebb9@byu.net>
7098
7099         strstr-simple: document new module
7100         * MODULES.html.sh: Document new module.
7101
7102         strstr, strcasestr: replace on platforms with broken memchr
7103         * modules/strstr: Split into...
7104         * modules/strstr-simple: ...new module that does not care about
7105         performance, but does care about glibc bug.
7106         * m4/strstr.m4 (gl_FUNC_STRSTR): Split...
7107         (gl_FUNC_STRSTR_SIMPLE): ...into new macro, which replaces strstr
7108         if platform memchr is broken, per Debian bug 521737.
7109         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): React to broken
7110         memchr.
7111         * m4/memchr.m4 (gl_FUNC_MEMCHR): Only expand once.
7112         * doc/posix-functions/strstr.texi (strstr): Document the fix.
7113         * doc/glibc-functions/strcasestr.texi (strcasestr): Likewise.
7114         * modules/mountlist (Depends-on): Add strstr-simple.
7115         * modules/gen-uni-tables (Depends-on): Likewise.
7116         * modules/argz (Depends-on): Add strstr.
7117
7118 2009-06-17  Bruno Haible  <bruno@clisp.org>
7119
7120         * modules/posix_spawn-internal (Depends-on): Add errno.
7121
7122 2009-06-17  Bruno Haible  <bruno@clisp.org>
7123
7124         Define missing ESTALE on Interix 3.5.
7125         * lib/errno.in.h (ESTALE): Assign a value if missing.
7126         * lib/strerror.c (rpl_strerror): Handle missing ESTALE and ECANCELED.
7127         * m4/errno_h.m4 (gl_HEADER_ERRNO_H): Also test whether ESTALE is
7128         missing.
7129         * doc/posix-headers/errno.texi: Mention the Interix bug.
7130         Reported by Jay Krell <jay.krell@cornell.edu> via Eric Blake.
7131
7132 2009-06-15  Eric Blake  <ebb9@byu.net>
7133
7134         memchr, memchr2: add valgrind exception
7135         * lib/memchr.valgrind: New file.
7136         * lib/memchr2.valgrind: New file.
7137         * modules/memchr (Files): Distribute valgrind file.
7138         * modules/memchr2 (Files): Likewise.
7139
7140         docs: memchr is no longer obsolete
7141         * MODULES.html.sh: Move memchr from obsolete to string.h section.
7142         * lib/string.in.h (memchr): Simplify logic.
7143
7144 2009-06-14  Jim Meyering  <meyering@redhat.com>
7145
7146         link-follow: fix the "checking..." message to not mention trailing slash
7147         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): This test has
7148         never considered trailing slashes.
7149
7150 2009-06-14  Bruno Haible  <bruno@clisp.org>
7151
7152         * m4/memchr.m4: Mention also the bug on IA-64.
7153         * doc/posix-functions/memchr.texi: Likewise.
7154
7155 2009-06-12  Eric Blake  <ebb9@byu.net>
7156
7157         memchr: detect broken x86_64 and alpha implementations
7158         * modules/memchr-tests (Depends-on): Move mmap detection...
7159         * modules/memchr (Depends-on): ...here.
7160         (configure.ac): Set indicator.
7161         * lib/string.in.h (memchr): Declare replacement.
7162         * modules/string (Makefile.am): Trigger replacement.
7163         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
7164         * m4/memchr.m4 (gl_FUNC_MEMCHR): Use mmap to detect platform
7165         bugs.
7166         * doc/posix-functions/memchr.texi (memchr): Document the bug.
7167         * modules/getpagesize (License): Relax license.
7168
7169 2009-06-11  Bruno Haible  <bruno@clisp.org>
7170
7171         * lib/idpriv.h: Add more references.
7172
7173 2009-06-08  Bruno Haible  <bruno@clisp.org>
7174
7175         Tests for module 'idpriv-droptemp'.
7176         * modules/idpriv-droptemp-tests: New file.
7177         * tests/test-idpriv-droptemp.sh: New file.
7178         * tests/test-idpriv-droptemp.su.sh: New file.
7179         * tests/test-idpriv-droptemp.c: New file.
7180
7181         New module 'idpriv-droptemp'.
7182         * lib/idpriv-droptemp.c: New file.
7183         * modules/idpriv-droptemp: New file.
7184
7185 2009-06-08  Bruno Haible  <bruno@clisp.org>
7186
7187         Tests for module 'idpriv-drop'.
7188         * modules/idpriv-drop-tests: New file.
7189         * tests/test-idpriv-drop.sh: New file.
7190         * tests/test-idpriv-drop.su.sh: New file.
7191         * tests/test-idpriv-drop.c: New file.
7192
7193         New module 'idpriv-drop'.
7194         * lib/idpriv.h: New file.
7195         * lib-idpriv-drop.c: New file.
7196         * m4/idpriv.m4: New file.
7197         * modules/idpriv-drop: New file.
7198
7199 2009-06-08  Bruno Haible  <bruno@clisp.org>
7200
7201         * modules/unistdio/u8-vasnprintf (Depends-on): Add memchr.
7202         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
7203         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
7204         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
7205         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
7206         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
7207         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
7208
7209 2009-06-08  Eric Blake  <ebb9@byu.net>
7210
7211         test-strstr: use memory fence, when possible
7212         * tests/test-strstr.c (main): Use memory fence, in order to be
7213         more likely to trigger Debian bug 521737.
7214         * modules/strstr-tests (Files): Pull in additional files.
7215
7216         memchr: no longer obsolete, for wider field testing
7217         * modules/memchr (Status, Notice): Delete, this module is no
7218         longer obsolete.
7219         * modules/vasnprintf (Depends-on): Add memchr.
7220
7221 2009-06-07  Jim Meyering  <meyering@redhat.com>
7222
7223         hash: declare some functions with the warn_unused_result attribute
7224         * lib/hash.h (__attribute__, ATTRIBUTE_WUR): Define.
7225
7226 2009-06-07  Bruno Haible  <bruno@clisp.org>
7227
7228         * tests/test-alignof.c: Don't test int64_t if it does not exist.
7229         Reported by Eric Blake.
7230
7231 2009-06-06  Eric Blake  <ebb9@byu.net>
7232
7233         test-alignof: fix typo with long double
7234         * tests/test-alignof.c (CHECK): Use longdouble typedef to avoid
7235         compiler error.
7236
7237 2009-06-06  Neil Jerram  <neil@ossau.uklinux.net>  (tiny change)
7238
7239         Escape non-texinfo { and }s.
7240         * doc/ld-output-def.texi (Visual Studio Compatibility): Fix
7241         markup error.
7242
7243 2009-06-04  Jim Meyering  <meyering@redhat.com>
7244
7245         gitlog-to-changelog: don't infloop on an empty commit log
7246         * build-aux/gitlog-to-changelog: Warn about an empty log message.
7247         Reported by Boris Petersen <transacid@centerim.org>.
7248
7249 2009-06-03  Mike Frysinger  <vapier@gentoo.org>
7250
7251         version-etc: extend for packagers
7252         Add three new configure options, intended for packagers:
7253           --with-packager="packager name"
7254           --with-packager-version="packager-specific version"
7255           --with-packager-bug-reports="packager bug reporting"
7256         An example with coreutils:
7257           $ ./configure \
7258             --with-packager=Gentoo \
7259             --with-packager-bug-report=http://bugs.gentoo.org/ \
7260             --with-packager-version="patchset 1.6"
7261           $ ./src/ls --version | head -n3
7262           ls (GNU coreutils) 7.1-dirty
7263           Packaged by Gentoo (patchset 1.6)
7264           Copyright (C) 2009 Free Software Foundation, Inc.
7265         Note that the bug reporting info via --help doesn't show up because
7266         coreutils uses its own custom emit_bug_reporting_address() implementation
7267         in src/system.h.  If it didn't, it'd look like:
7268           $ ./src/ls --help | tail -n4
7269           Report bugs to <bug-coreutils@gnu.org>.
7270           Report Gentoo bugs to <http://bugs.gentoo.org/>.
7271           GNU coreutils home page: <http://www.gnu.org/software/coreutils/>.
7272           General help using GNU software: <http://www.gnu.org/gethelp/>.
7273         * lib/version-etc.c: Print new information, if provided.
7274         * m4/version-etc.m4: New file.
7275         * modules/version-etc (Files): Add m4/version-etc.m4.
7276         (configure.ac): Add gl_VERSION_ETC.
7277
7278 2009-05-31  Bruno Haible  <bruno@clisp.org>
7279
7280         * tests/test-alignof.c: Include <stdint.h>. Check also 'long double'
7281         and 'int64_t'.
7282         * modules/alignof-tests (Dependencies): Add stdint.
7283         Reported by Eric Blake.
7284
7285 2009-05-31  Bruno Haible  <bruno@clisp.org>
7286
7287         * lib/alignof.h (alignof_slot, alignof_type, alignof): Document
7288         restriction due to compiler bugs.
7289         Reported by Eric Blake.
7290
7291 2009-05-31  Simon Josefsson  <simon@josefsson.org>
7292             Bruno Haible  <bruno@clisp.org>
7293
7294         Fix test-alignof failure.
7295         * lib/alignof.h (alignof_slot): New macro.
7296         (alignof_type): New macro, with the same semantics as the previous
7297         'alignof'.
7298         (alignof): Alias to alignof_slot.
7299         * tests/test-alignof.c (CHECK): Check alignof_slot, not alignof. Also
7300         check that the results are usable as constant expressions.
7301
7302 2009-05-31  Bruno Haible  <bruno@clisp.org>
7303
7304         * tests/zerosize-ptr.h (zerosize_ptr): Specify more details.
7305         * tests/test-memchr.c (main): Check that memchr does not read past the
7306         first occurrence of the byte.
7307         * tests/test-strstr.c (main): Update comment.
7308         Suggested by Eric Blake.
7309
7310 2009-05-30  Bruno Haible  <bruno@clisp.org>
7311
7312         * doc/ld-output-def.texi (Visual Studio Compatibility): Explain in more
7313         detail how to use dumpbin.
7314         Reported by David Byron <dbyron@dbyron.com>.
7315
7316 2009-06-02  Simon Josefsson  <simon@josefsson.org>
7317
7318         * tests/test-parse-duration.sh: Don't use non-portable 'read -u3'.
7319
7320 2009-06-02  Simon Josefsson  <simon@josefsson.org>
7321
7322         * m4/manywarnings.m4: Add GCC 4.4 warnings.
7323
7324 2009-05-28  Bruno Haible  <bruno@clisp.org>
7325
7326         * gnulib-tool (func_import): Don't do HAVE_CONFIG_H replacements on
7327         build-aux/ files.
7328
7329 2009-05-28  Simon Josefsson  <simon@josefsson.org>
7330
7331         * gnulib-tool (func_import): Transform license on build-aux/ files too.
7332
7333 2009-05-27  Simon Josefsson  <simon@josefsson.org>
7334
7335         * gnulib-tool (sed_transform_main_lib_file)
7336         (sed_transform_testsrelated_lib_file): : Don't use non-POSIX
7337         regexps.
7338
7339 2009-05-26  Simon Josefsson  <simon@josefsson.org>
7340
7341         * tests/test-strstr.c: Add another self-test.
7342         * tests/test-strstr.c: Rewrite to use malloc/strcpy instead of
7343         strdup.  Suggested by Eric Blake  <ebb9@byu.net>.
7344
7345 2009-05-23  Bruno Haible  <bruno@clisp.org>
7346
7347         * doc/havelib.texi (AC_LIB_HAVE_LINKFLAGS): Update for 2009-04-26
7348         change.
7349
7350 2009-05-21  Bruno Haible  <bruno@clisp.org>
7351
7352         Simplify use of mode_t varargs.
7353         * lib/open.c (open): Use PROMOTED_MODE_T instead of a conditional that
7354         uses 'mode_t' or 'int'.
7355         * lib/openat.c (openat): Likewise.
7356         * lib/open-safer.c (open_safer): Likewise.
7357         * m4/mode_t.m4: New file.
7358         * m4/open.m4 (gl_PREREQ_OPEN): Require gl_PROMOTED_TYPE_MODE_T.
7359         * m4/openat.m4 (gl_PREREQ_OPENAT): Likewise.
7360         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Likewise.
7361         * modules/open (Files): Add m4/mode_t.m4.
7362         * modules/openat (Files): Likewise.
7363         * modules/fcntl-safer (Files): Likewise.
7364         Suggested by Eric Blake.
7365
7366 2009-05-21  Pádraig Brady  <P@draigbrady.com>
7367
7368         * doc/glibc-functions/fallocate.texi: New file.
7369         * doc/gnulib.texi: Include it.
7370
7371 2009-05-21  Eric Blake  <ebb9@byu.net>
7372             Bruno Haible  <bruno@clisp.org>
7373
7374         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Remove redundant m4_quote
7375         invocations.
7376         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
7377
7378 2009-05-21  Eric Blake  <ebb9@byu.net>
7379             Bruno Haible  <bruno@clisp.org>
7380
7381         Second attempt to work around an AIX 5.3, 6.1 compiler bug with
7382         include_next. Fix of 2008-11-20 commit.
7383         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Also set
7384         NEXT_AS_FIRST_DIRECTIVE_FOO_H.
7385         * lib/math.in.h: Use NEXT_AS_FIRST_DIRECTIVE_MATH_H instead of
7386         NEXT_MATH_H.
7387         * modules/math (Makefile.am): Substitute NEXT_AS_FIRST_DIRECTIVE_MATH_H
7388         instead of NEXT_MATH_H.
7389
7390 2009-05-21  Bruno Haible  <bruno@clisp.org>
7391
7392         Avoid redefinition warnings for SIZE_MAX.
7393         * m4/size_max.m4 (gl_SIZE_MAX): Avoid redefining SIZE_MAX in config.h.
7394         Reported by Simon Josefsson.
7395
7396 2009-05-21  Bruno Haible  <bruno@clisp.org>
7397
7398         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_CACHE_CHECK instead of
7399         AC_CACHE_VAL.
7400
7401 2009-05-20  Bruno Haible  <bruno@clisp.org>
7402
7403         Make zeroptr.h work on mingw.
7404         * tests/zerosize-ptr.h: Test for the presence of <sys/mman.h> and
7405         mprotect.
7406         * modules/memchr-tests (configure.ac): Also test for sys/mman.h.
7407         * modules/memchr2-tests (configure.ac): Likewise.
7408         * modules/memcmp-tests (configure.ac): Likewise.
7409         * modules/memmem-tests (configure.ac): Likewise.
7410         * modules/memrchr-tests (configure.ac): Likewise.
7411         Reported by Simon Josefsson.
7412
7413 2009-05-20  Simon Josefsson  <simon@josefsson.org>
7414
7415         * tests/test-glob.c: Include string.h for strcmp prototype.
7416
7417 2009-05-20  Simon Josefsson  <simon@josefsson.org>
7418
7419         * modules/getdelim (Depends-on): Add explicit stdint, although it
7420         was implicitly already pulled in via realloc-posix.
7421         * lib/getdelim.c: Get SIZE_MAX from stdint.h.
7422
7423 2009-05-20  Simon Josefsson  <simon@josefsson.org>
7424
7425         MinGW and IRIX does not have sa_family_t type.  Reported by "Tom
7426         G. Christensen" <tgc@jupiterrise.com>.
7427         * m4/sys_socket_h.m4: Check for sa_family_t.
7428         * lib/sys_socket.in.h: Typedef sa_family_t when needed.
7429         * modules/sys_socket: Substitute HAVE_SA_FAMILY_T.
7430         * tests/test-sys_socket.c: Check that sa_family_t works.
7431
7432 2009-05-18  Eric Blake  <ebb9@byu.net>
7433
7434         maint.mk: allow gnulib_dir in VPATH build
7435         * top/maint.mk (gnulib_dir): Make relative to $(srcdir).
7436
7437 2009-05-15  Jim Meyering  <meyering@redhat.com>
7438
7439         maint.mk: Give gnulib_dir a default definition.
7440         * top/maint.mk (gnulib_dir): Define to 'gnulib', by default.
7441         Thus, most packages no longer need to specify this variable in cfg.mk
7442
7443 2009-05-14  Tom Prince  <tom.prince@ualberta.net>  (tiny change)
7444
7445         rename.m4: fix typos that would make non-mingw cross-configure fail
7446         * m4/rename.m4 (gl_FUNC_RENAME): Fix typos.
7447
7448 2009-05-13  Eric Blake  <ebb9@byu.net>
7449
7450         mmap-anon: avoid out-of-order autoconf expansion
7451         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Use correct
7452         SYSTEM_EXTENSIONS macro to silence warnings from autoconf 2.63b.
7453         * modules/memchr-tests (Depends-on): Add extensions.
7454         * modules/memchr2-tests (Depends-on): Add extensions.
7455         * modules/memcmp-tests (Depends-on): Add extensions.
7456         * modules/memmem-tests (Depends-on): Add extensions.
7457         * modules/memrchr-tests (Depends-on): Add extensions.
7458
7459 2009-05-13  Bruno Haible  <bruno@clisp.org>
7460
7461         Make some tests ISO C 99 compliant.
7462         * tests/zerosize-ptr.h: New file.
7463         * tests/test-memchr.c: Include zerosize-ptr.h.
7464         (main): Use a zero-size object pointer instead of NULL.
7465         * tests/test-memchr2.c: Include zerosize-ptr.h.
7466         (main): Use a zero-size object pointer instead of NULL.
7467         * tests/test-memcmp.c: Include zerosize-ptr.h.
7468         (main): Use a zero-size object pointer instead of NULL.
7469         * tests/test-memmem.c: Include zerosize-ptr.h.
7470         (main): Use a zero-size object pointer instead of NULL.
7471         * tests/test-memrchr.c: Include zerosize-ptr.h.
7472         (main): Use a zero-size object pointer instead of NULL.
7473         * modules/memchr-tests (Files): Add tests/zerosize-ptr.h,
7474         m4/mmap-anon.m4.
7475         (Depends-on): Add getpagesize.
7476         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
7477         * modules/memchr2-tests (Files): Add tests/zerosize-ptr.h,
7478         m4/mmap-anon.m4.
7479         (Depends-on): Add getpagesize.
7480         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
7481         * modules/memcmp-tests (Files): Add tests/zerosize-ptr.h,
7482         m4/mmap-anon.m4.
7483         (Depends-on): Add getpagesize.
7484         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
7485         * modules/memmem-tests (Files): Add tests/zerosize-ptr.h,
7486         m4/mmap-anon.m4.
7487         (Depends-on): Add getpagesize.
7488         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
7489         * modules/memrchr-tests (Files): Add tests/zerosize-ptr.h,
7490         m4/mmap-anon.m4.
7491         (Depends-on): Add getpagesize.
7492         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
7493
7494 2009-05-12  Bruno Haible  <bruno@clisp.org>
7495
7496         Tests for module 'alignof'.
7497         * modules/alignof-tests: New file.
7498         * tests/test-alignof.c: New file.
7499
7500 2009-05-12  Bruno Haible  <bruno@clisp.org>
7501
7502         Fix alignof macro.
7503         * lib/alignof.h (alignof): Remove special cases for AIX and HP-UX
7504         vendor compilers that are always correct.
7505
7506 2009-05-12  Bruno Haible  <bruno@clisp.org>
7507
7508         Make the MAP_ANONYMOUS detection work on HP-UX 11.
7509         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check whether mmap exists, but
7510         not whether its fully works.
7511
7512 2009-05-12  Bruno Haible  <bruno@clisp.org>
7513
7514         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Add comments.
7515
7516 2009-05-12  Jim Meyering  <meyering@redhat.com>
7517
7518         * top/maint.mk: Adjust backslash alignment.
7519
7520 2009-05-11  Simon Josefsson  <simon@josefsson.org>
7521
7522         * top/maint.mk: Make $(srcdir)/build-aux configurable.
7523
7524 2009-05-11  Eric Blake  <ebb9@byu.net>
7525
7526         argp: avoid undefined behavior
7527         * lib/argp-fmtstream.c (weak_alias): Pass correct types to ctype
7528         macros.
7529
7530 2009-05-08  Simon Josefsson  <simon@josefsson.org>
7531
7532         * tests/test-vc-list-files-git.sh: Do git config of user.email and
7533         user.name to prevent git commit from complaining.
7534
7535 2009-05-10  Bruno Haible  <bruno@clisp.org>
7536
7537         * gnulib-tool (func_import, func_create_testdir, copy-file): Change
7538         sed_rewrite_old_files, sed_rewrite_new_files, sed_rewrite_files so that
7539         it rewrites every file name only once.
7540         Reported by Simon Josefsson. Helped by Ralf Wildenhues.
7541
7542 2009-05-08  Bruno Haible  <bruno@clisp.org>
7543
7544         * lib/sys_socket.in.h (_SS_PADSIZE): Use a conditional expression
7545         instead of 'max'.
7546
7547 2009-05-08  Simon Josefsson  <simon@josefsson.org>
7548
7549         * m4/sys_socket_h.m4: Test for ws2tcpip.h earlier, needed for
7550         sockaddr_storage test.
7551
7552 2009-05-07  Simon Josefsson  <simon@josefsson.org>
7553
7554         * modules/sys_socket (Makefile.am): Substitute
7555         HAVE_STRUCT_SOCKADDR_STORAGE.  Depend on alignof.
7556         * m4/sys_socket_h.m4: Check for sockaddr_storage.
7557         * lib/sys_socket.in.h (sockaddr_storage): Define when needed.
7558         * tests/test-sys_socket.c: Check sockaddr_storage.
7559
7560 2009-05-08  Bruno Haible  <bruno@clisp.org>
7561
7562         New module 'alignof'.
7563         * lib/alignof.h: New file.
7564         * modules/alignof: New file.
7565
7566 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
7567             Bruno Haible  <bruno@clisp.org>
7568
7569         Fix test-file-has-acl on FreeBSD.
7570         * tests/test-file-has-acl.sh: Also test a directory. On FreeBSD, the
7571         mask is implicitly added.
7572         * tests/test-file-has-acl.c: Include <signal.h>.
7573         (main): Terminate the test after 5 seconds.
7574         * modules/acl-tests (configure.ac): Check for alarm function.
7575
7576 2009-05-04  Bruno Haible  <bruno@clisp.org>
7577
7578         Exploit new semantics of AC_DEFUN_ONCE available since 2009-01-26.
7579         * m4/errno_h.m4 (gl_HEADER_ERRNO_H): Remove outdated comment.
7580         * modules/errno (configure.ac): Drop AC_REQUIRE.
7581         * m4/multiarch.m4 (gl_MULTIARCH): Remove outdated comment.
7582         * modules/multiarch (configure.ac): Drop AC_REQUIRE.
7583
7584 2009-05-04  Simon Josefsson  <simon@josefsson.org>
7585
7586         * modules/glob-tests: New module.
7587         * tests/test-glob.c: Add.
7588
7589 2009-05-04  Simon Josefsson  <simon@josefsson.org>
7590
7591         * modules/fnmatch-tests: New module.
7592         * tests/test-fnmatch.c: Add.
7593
7594 2009-05-04  Eric Blake  <ebb9@byu.net>
7595
7596         maint: make the new no-submodule-changes rule VPATH-safe
7597         * top/maint.mk (no-submodule-changes): Don't assume a srcdir build.
7598
7599 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
7600             Bruno Haible  <bruno@clisp.org>
7601
7602         acl: Fix infinite loop on FreeBSD.
7603         * lib/acl_entries.c (acl_entries) [Linux, FreeBSD]: Fix interpretation
7604         of return value from acl_get_entry.
7605         * lib/file-has-acl.c (acl_access_nontrivial) [Linux, FreeBSD]:
7606         Likewise.
7607
7608 2009-05-03  Bruno Haible  <bruno@clisp.org>
7609
7610         * lib/acl-internal.h (acl_entries): Clarify return value.
7611         * lib/acl_entries.c (acl_entries): Likewise.
7612
7613 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
7614
7615         Bug fix in acl module.
7616         * lib/set-mode-acl.c: Use correct struct with ACL_SETACL.
7617
7618 2009-05-03  Bruno Haible  <bruno@clisp.org>
7619
7620         Create gperf-generated file in the source dir, not in the build dir.
7621         * modules/iconv_open (iconv_open-aix.h, iconv_open-hpux.h,
7622         iconv_open-irix.h, iconv_open-osf.h): Create file in the source tree.
7623         * modules/unicase/locale-language (unicase/locale-languages.h):
7624         Likewise.
7625         * modules/unicase/special-casing (unicase/special-casing-table.h):
7626         Likewise.
7627         * modules/unictype/property-byname (unictype/pr_byname.h): Likewise.
7628         * modules/unictype/scripts (unictype/scripts_byname.h): Likewise.
7629         * modules/uninorm/composition (uninorm/composition-table.h): Likewise.
7630         Reported by Ralf Wildenhues.
7631
7632 2009-05-03  Bruno Haible  <bruno@clisp.org>
7633
7634         * modules/fnmatch (Description, configure.ac): Taken from
7635         fnmatch-posix.
7636         * modules/fnmatch-posix: Turn into a symbolic reference to the
7637         'fnmatch' module, and deprecate.
7638         * doc/posix-functions/fnmatch.texi: Mention the fnmatch module.
7639
7640 2009-05-03  Bruno Haible  <bruno@clisp.org>
7641
7642         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF,
7643         gl_PREREQ_VASNPRINTF_LONG_DOUBLE): Define through AC_DEFUN_ONCE.
7644         Reported by Ralf Wildenhues.
7645
7646 2009-05-04  Simon Josefsson  <simon@josefsson.org>
7647
7648         * m4/fnmatch.m4: Fix fnmatch re-define.
7649
7650 2009-04-27  David Bartley  <dtbartle@csclub.uwaterloo.ca>
7651
7652         priv-set: new module and tests; adapt write-any-file
7653         * lib/priv-set.c: New file.
7654         * lib/priv-set.h: New file.
7655         * lib/unlinkdir.c: Make cannot_unlink_dir thread-safe.
7656         * lib/write-any-file.c: Simplify by using priv-set module.
7657         * m4/priv-set.m4: New file.
7658         * modules/priv-set: New file.
7659         * modules/unlinkdir: Add dependency on priv-set module.
7660         * modules/write-any-file: Likewise.
7661
7662         Tests for module 'priv-set'.
7663         * modules/priv-set-tests: New file.
7664         * tests/test-priv-set.c: New file.
7665
7666 2009-05-03  Jim Meyering  <meyering@redhat.com>
7667             Bruno Haible  <bruno@clisp.org>
7668
7669         * lib/propername.c (proper_name_utf8): Ignore no-op translations;
7670         use the converted UTF-8 variant of the name instead.
7671
7672 2009-05-03  Jim Meyering  <meyering@redhat.com>
7673
7674         tests: tighten some getdate tests
7675         * tests/test-getdate.c (main): Tighten tests: require equality,
7676         not just greater than.  Set TZ envvar to UTC0.
7677
7678 2009-05-03  Giuseppe Scrivano  <gscrivano@gnu.org>
7679
7680         getdate: correctly interpret "next monday" when run on a Monday
7681         * lib/getdate.y (get_date): Correct the calculation of tm_mday so
7682         that e.g., "next tues" (when run on a tuesday) results in a date
7683         that is one week in the future, and not today's date.
7684         I.e., add a week when the wday is the same as the current one.
7685         Reported by Tom Broadhurst in http://savannah.gnu.org/bugs/?25406,
7686         and earlier by Martin Bernreuther and Jan Minář.
7687         * tests/test-getdate.c (main): Check that "next DAY" is always in
7688         the future and that "last DAY" is always in the past.
7689
7690 2009-05-02  Jim Meyering  <meyering@redhat.com>
7691
7692         build: ensure that a release build fails when a submodule is unclean
7693         * top/maint.mk (no-submodule-changes): New rule.
7694         (alpha beta major): Depend on it.
7695
7696 2009-05-02  Bruno Haible  <bruno@clisp.org>
7697
7698         Remove incompatibility between modules fnmatch-posix and fnmatch-gnu.
7699         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_POSIX, gl_FUNC_FNMATCH_GNU): Use a
7700         shell variable gl_fnmatch_required to detect which variant is
7701         requested.
7702         (_AC_FUNC_FNMATCH_IF, _AC_LIBOBJ_FNMATCH): Remove macros. Inlined into
7703         gl_FUNC_FNMATCH_POSIX.
7704         * gnulib-tool (func_create_testdir, func_create_megatestdir): Don't
7705         exclude fnmatch-posix.
7706
7707 2009-05-02  Bruno Haible  <bruno@clisp.org>
7708
7709         Relicense mbsrtowcs and strnlen1 under LGPLv2+.
7710         * modules/mbsrtowcs (License): Change to LGPLv2+.
7711         * modules/strnlen1 (License): Likewise.
7712         Reported by Simon Josefsson.
7713
7714 2009-05-02  Bruno Haible  <bruno@clisp.org>
7715
7716         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Say "guessing no" instead of
7717         "cross".
7718         (gl_FUNC_FNMATCH_POSIX, gl_FUNC_FNMATCH_GNU): Update. Don't assume that
7719         gnulib-tool was called with option --source-base=lib.
7720
7721 2009-05-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7722
7723         Use automake *-local hooks without commands, for extensibility.
7724         * modules/localcharset (Makefile.am): Rename install-exec-local
7725         rule to install-exec-localcharset, and make it a prerequisite of
7726         install-exec-local.  Likewise, rename the uninstall-local rule to
7727         uninstall-localcharset, and make it a prerequisite of the former.
7728
7729 2009-05-01  Bruno Haible  <bruno@clisp.org>
7730
7731         * lib/wchar.in.h (wcsnrtombs): Define if REPLACE_WCSNRTOMBS is 1.
7732         * m4/wcsnrtombs.m4 (gl_FUNC_WCSRTOMBS): Invoke gl_MBSTATE_T_BROKEN, and
7733         set REPLACE_WCSNRTOMBS if mbstate_t must be replaced.
7734         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCSNRTOMBS.
7735         * modules/wchar (Makefile.am): Substitute REPLACE_WCSNRTOMBS.
7736         * modules/wcsnrtombs (Files): Add m4/mbrtowc.m4, m4/locale-ja.m4,
7737         m4/locale-zh.m4, m4/codeset.m4.
7738
7739         * m4/wcsrtombs.m4 (gl_FUNC_WCSNRTOMBS): Invoke gl_MBSTATE_T_BROKEN, and
7740         set REPLACE_WCSRTOMBS if mbstate_t must be replaced.
7741         * modules/wcsrtombs (Files): Add m4/mbrtowc.m4, m4/locale-ja.m4,
7742         m4/locale-zh.m4.
7743
7744         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Invoke gl_MBSTATE_T_BROKEN, and set
7745         REPLACE_WCRTOMB if mbstate_t must be replaced.
7746         * modules/wcrtomb (Files): Add m4/mbrtowc.m4.
7747         Reported by Jens Rehsack <rehsack@googlemail.com> via Eric Blake.
7748
7749 2009-05-01  Bruno Haible  <bruno@clisp.org>
7750
7751         Avoid compiler warnings when redefining macros defined by <libintl.h>.
7752         * lib/gettext.h [!ENABLE_NLS] (gettext, dgettext, dcgettext, ngettext,
7753         dngettext, dcngettext, textdomain, bindtextdomain,
7754         bind_textdomain_codeset): Undefine before redefining.
7755
7756 2009-04-30  Bruno Haible  <bruno@clisp.org>
7757
7758         Fix bug introduced on 2009-04-25.
7759         * lib/math.in.h (gl_signbitf_OPTIMIZED_MACRO,
7760         gl_signbitd_OPTIMIZED_MACRO, gl_signbitl_OPTIMIZED_MACRO): New macros.
7761         * lib/signbitf.c (gl_signbitd): Undefine if gl_signbitf_OPTIMIZED_MACRO
7762         is defined.
7763         * lib/signbitd.c (gl_signbitd): Undefine if gl_signbitd_OPTIMIZED_MACRO
7764         is defined.
7765         * lib/signbitl.c (gl_signbitd): Undefine if gl_signbitl_OPTIMIZED_MACRO
7766         is defined.
7767         Reported by Elbert_Pol <elbert.pol@gmail.com>.
7768
7769 2009-04-28  Bruno Haible  <bruno@clisp.org>
7770
7771         Comment tweaks.
7772         * lib/unistr.h (u*_cmp2): Clarify what memcmp2 is.
7773         * lib/uninorm.h (u*_normxfrm): Fix description of return value.
7774         * lib/unicase.h (u*_casexfrm): Likewise.
7775         Reported by Paolo Bonzini.
7776
7777 2009-04-28  Bruno Haible  <bruno@clisp.org>
7778
7779         Fix a compilation error.
7780         * lib/mbsrtowcs-state.c (_gl_mbsrtowcs_state): Fix initializer.
7781         * lib/wcsrtombs-state.c (_gl_wcsrtombs_state): Likewise.
7782         Reported by Jim Meyering.
7783
7784 2009-04-27  Bruno Haible  <bruno@clisp.org>
7785
7786         New module 'libunistring'.
7787         * modules/libunistring: New file.
7788         * m4/libunistring.m4: New file.
7789         * MODULES.html.sh (Unicode string functions): Add it.
7790
7791 2009-04-27  Eric Blake  <ebb9@byu.net>
7792
7793         maint.mk: allow package-specific header to provide <config.h>
7794         * top/maint.mk (sc_require_config_h): New variable.
7795         (sc_require_config_h, sc_require_config_h_first): Use it.
7796
7797 2009-04-27  Simon Josefsson  <simon@josefsson.org>
7798
7799         * top/maint.mk (sc_avoid_if_before_free): Except
7800         useless-if-before-free script.
7801
7802 2009-04-27  Eric Blake  <ebb9@byu.net>
7803
7804         maintainer-makefile: depend on all required helper scripts
7805         * modules/maintainer-makefile (Depends-on): Add vc-list-files and
7806         useless-if-before-free.
7807         * top/maint.mk (VC_LIST, sc_avoid_if_before_free): Use local
7808         version, rather than assuming gnulib checkout is available.
7809         Reported by Simen Josefsson.
7810
7811 2009-04-26  Bruno Haible  <bruno@clisp.org>
7812
7813         Make the lib vs. lib64 recognition work on openSUSE 11 with "gcc -m32".
7814         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): Ignore paths that end in
7815         "../" or "..".
7816
7817 2009-04-26  Bruno Haible  <bruno@clisp.org>
7818
7819         * m4/lib-link.m4 (AC_LIB_HAVE_LINKFLAGS): Accept a fifth argument.
7820         * m4/libsigsegv.m4 (gl_LIBSIGSEGV): Simplify by using
7821         AC_LIB_HAVE_LINKFLAGS.
7822
7823 2009-04-26  Bruno Haible  <bruno@clisp.org>
7824
7825         Simplify calling convention of u*_conv_from_encoding.
7826         * lib/uniconv.h (u8_conv_from_encoding, u16_conv_from_encoding,
7827         u32_conv_from_encoding): Expect a resultbuf argument and return the
7828         result directly as a pointer.
7829         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Likewise.
7830         * lib/uniconv/u-conv-from-enc.h (FUNC): Likewise.
7831         * lib/uniconv/u-strconv-from-enc.h (FUNC): Update.
7832         * lib/unicase/ulc-casecmp.c (ulc_u8_casefold): Update.
7833         * lib/unicase/ulc-casexfrm.c (ulc_casexfrm): Update.
7834         * lib/unilbrk/ulc-possible-linebreaks.c (ulc_possible_linebreaks):
7835         Update.
7836         * lib/unilbrk/ulc-width-linebreaks.c (ulc_width_linebreaks): Update.
7837         * lib/uniwbrk/ulc-wordbreaks.c (ulc_wordbreaks): Update.
7838         * lib/vasnprintf.c (VASNPRINTF): Update.
7839         * tests/uniconv/test-u8-conv-from-enc.c (main): Update.
7840         * tests/uniconv/test-u16-conv-from-enc.c (main): Update.
7841         * tests/uniconv/test-u32-conv-from-enc.c (main): Update.
7842         * NEWS: Mention the change.
7843
7844 2009-04-26  Bruno Haible  <bruno@clisp.org>
7845
7846         Simplify calling convention of u*_conv_to_encoding.
7847         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
7848         u32_conv_to_encoding): Expect a resultbuf argument and return the
7849         result directly as a pointer.
7850         * lib/uniconv/u8-conv-to-enc.c (u8_conv_to_encoding): Likewise.
7851         * lib/uniconv/u-conv-to-enc.h (FUNC): Likewise. Preserve errno while
7852         freeing scaled_offsets if mem_iconveha failed.
7853         * lib/unicase/u-casexfrm.h (FUNC): Update.
7854         * lib/uninorm/u-normxfrm.h (FUNC): Update.
7855         * lib/vasnprintf.c (VASNPRINTF): Update.
7856         * tests/uniconv/test-u8-conv-to-enc.c (main): Update.
7857         * tests/uniconv/test-u16-conv-to-enc.c (main): Update.
7858         * tests/uniconv/test-u32-conv-to-enc.c (main): Update.
7859         * NEWS: Mention the change.
7860
7861 2009-04-26  Bruno Haible  <bruno@clisp.org>
7862
7863         Avoid test failures on AIX and OSF/1.
7864         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Avoid calling
7865         malloc(0).
7866         * lib/uniconv/u8-conv-to-enc.c (u8_conv_to_encoding): Likewise.
7867         * lib/unilbrk/ulc-possible-linebreaks.c (ulc_possible_linebreaks):
7868         Likewise.
7869         * lib/unilbrk/ulc-width-linebreaks.c (ulc_width_linebreaks): Likewise.
7870         * lib/uniwbrk/ulc-wordbreaks.c (ulc_wordbreaks): Likewise.
7871         * lib/uniconv/u-conv-to-enc.h (FUNC): Likewise. Fix memory leak.
7872         * lib/unistr/u-cpy-alloc.h (FUNC): Call malloc(1) instead of malloc(0).
7873         * doc/posix-functions/malloc.texi: Document the portability problem
7874         related to malloc(0).
7875
7876 2009-04-26  Bruno Haible  <bruno@clisp.org>
7877
7878         * modules/unistr/u8-cpy-alloc (Depends-on): Add malloc-posix.
7879         * modules/unistr/u16-cpy-alloc (Depends-on): Likewise.
7880         * modules/unistr/u32-cpy-alloc (Depends-on): Likewise.
7881
7882 2009-04-25  Bruno Haible  <bruno@clisp.org>
7883
7884         Avoid link error when creating a namespace clean library.
7885         * lib/math.in.h (gl_signbitf, gl_signbitd, gl_signbitl): Don't define
7886         as macro with arguments if already defined as an alias.
7887         * lib/signbitf.c (gl_signbitf): Don't undefine.
7888         * lib/signbitd.c (gl_signbitd): Don't undefine.
7889         * lib/signbitl.c (gl_signbitl): Don't undefine.
7890
7891 2009-04-25  Jim Meyering  <meyering@redhat.com>
7892
7893         vc-list-files: fix another quoting bug
7894         * build-aux/vc-list-files: Avoid sed backslash expansion
7895         of pathological directory names.
7896
7897 2009-04-25  Eric Blake  <ebb9@byu.net>
7898
7899         vc-list-files: fix shell quoting error
7900         * build-aux/vc-list-files: Protect against $ in $dir.  Normalize
7901         timestamp.
7902
7903 2009-04-25  Jim Meyering  <meyering@redhat.com>
7904
7905         vc-list-files: restore lost functionality with subdir argument
7906         * build-aux/vc-list-files: When given a non-"." sub-directory
7907         argument, substitute the $dir/ prefix back onto each resulting name.
7908         Otherwise, coreutils' root_tests check would fail.
7909
7910 2009-04-24  Eric Blake  <ebb9@byu.net>
7911
7912         vc-list-files: ignore git symlinks
7913         * build-aux/vc-list-files (.git): Use ls-tree and a filter, rather
7914         than ls-files, to ignore git symlinks.
7915
7916         maint.mk: import improvements from m4
7917         * top/maint.mk (VC-tag): Use signing key from cfg.mk.
7918         (move_if_change): Delete unused macro.
7919         (news-date-check, vc-diff-check): Support VPATH builds.
7920         (announcement): Likewise.  Split --bootstrap-tools list...
7921         (boostrap-tools): ...into separate list, which can be overridden
7922         in cfg.mk.
7923         (sc_avoid_if_before_free): Point to $(gnulib_dir), rather than
7924         requiring dependency on useless-if-before-free module.
7925         (VC_LIST, VC_LIST_EXCEPT): Likewise for vc-list-files module.
7926         Support VPATH builds.
7927
7928 2009-04-24  Jim Meyering  <meyering@redhat.com>
7929
7930         maint.mk: remove coreutils-specific rules and variables
7931         * top/maint.mk (bin, taint-distcheck, coreutils-path-check, t): Remove.
7932         (fake_home, install-transform-check, my-instcheck, pfx, TMPDIR): Remove.
7933         (t_prefix, t_taint, tp, warn_cflags, write_loser, my-distcheck): Remove.
7934
7935         maint.mk: remove obsolete rule
7936         * top/maint.mk (rel-check): Remove rule.
7937         (WGET, WGETFLAGS): Remove now-unused variables.
7938
7939 2009-04-24  Simon Josefsson  <simon@josefsson.org>
7940
7941         * top/maint.mk (makefile-check): Renamed to sc_makefile_check for
7942         consistency.
7943
7944         * modules/vc-list-files-tests (TESTS_ENVIRONMENT): Use
7945         '$(PATH_SEPARATOR)' instead of ':'.
7946
7947 2009-04-24  Simon Josefsson  <simon@josefsson.org>
7948
7949         * lib/getopt1.c (main): Use 'const' for static array.
7950
7951 2009-04-24  Simon Josefsson  <simon@josefsson.org>
7952
7953         * top/maint.mk: Sync with coreutils.
7954         * NEWS: Explain incompatibilities.
7955
7956 2009-04-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
7957             Bruno Haible  <bruno@clisp.org>
7958
7959         Fix cross-compilation results.
7960         * m4/btowc.m4 (gl_FUNC_BTOWC): Use no-op statement, rather than empty
7961         statement, as third argument of AC_TRY_RUN.
7962         * m4/mbrtowc.m4 (gl_MBRTOWC_INCOMPLETE_STATE, gl_MBRTOWC_SANITYCHECK,
7963         gl_MBRTOWC_NULL_ARG, gl_MBRTOWC_RETVAL, gl_MBRTOWC_NUL_RETVAL):
7964         Likewise.
7965         * m4/mbsrtowcs.m4 (gl_MBSRTOWCS_WORKS): Likewise.
7966         * m4/wcsrtombs.m4 (gl_WCSRTOMBS_TERMINATION, gl_WCSRTOMBS_NULL):
7967         Likewise.
7968         * m4/wctob.m4 (gl_FUNC_WCTOB): Likewise.
7969         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Likewise. Update for AIX 4.3.
7970         * doc/posix-functions/wcrtomb.texi: Mention the bug on AIX 4.3.
7971
7972 2009-04-20  Bruno Haible  <bruno@clisp.org>
7973
7974         Avoid test failure on mingw.
7975         * tests/uniwidth/test-uc_width2.sh: Convert newlines in output.
7976
7977 2009-04-20  Bruno Haible  <bruno@clisp.org>
7978
7979         Avoid compilation error on mingw.
7980         * modules/localename-tests (Depends-on): Add locale.
7981
7982 2009-04-19  Bruno Haible  <bruno@clisp.org>
7983
7984         Support for building a shared library on Windows platforms.
7985         * tests/uninorm/test-nfc.c (n): Don't define if WOE32DLL.
7986         (main): Test the presence of UNINORM_NFC here.
7987         * tests/uninorm/test-nfd.c (n): Don't define if WOE32DLL.
7988         (main): Test the presence of UNINORM_NFD here.
7989         * tests/uninorm/test-nfkc.c (n): Don't define if WOE32DLL.
7990         (main): Test the presence of UNINORM_NFKC here.
7991         * tests/uninorm/test-nfkd.c (n): Don't define if WOE32DLL.
7992         (main): Test the presence of UNINORM_NFKD here.
7993
7994 2009-04-19  Bruno Haible  <bruno@clisp.org>
7995
7996         Avoid a compiler warning.
7997         * tests/uninorm/test-u32-normalize-big.c (read_normalization_test_file):
7998         Change type of variable 'sequence'.
7999
8000 2009-04-19  Bruno Haible  <bruno@clisp.org>
8001
8002         * modules/configmake (Makefile.am): When the contents of configmake.h
8003         does not change, arrange to preserve its modification time.
8004
8005 2009-04-17  Simon Josefsson  <simon@josefsson.org>
8006
8007         * top/maint.mk (PO_DOMAIN): New variable, allows overriding of
8008         gettext domain.
8009
8010 2009-04-16  Jim Meyering  <meyering@redhat.com>
8011
8012         useless-if-before-free: improve conversion code
8013         * build-aux/useless-if-before-free: Adjust code-in-comment to match
8014         "...!= 0" as well as "...!= NULL".  emacs has one of the former.
8015
8016 2009-04-14  Bruno Haible  <bruno@clisp.org>
8017
8018         * modules/fcntl (Depends-on): Add extensions.
8019         * m4/fcntl_h.m4 (gl_FCNTL_H): Add a comment.
8020
8021 2009-04-12  Ben Pfaff  <blp@gnu.org>
8022
8023         Make fcntl module detect O_NOATIME, O_NOFOLLOW on GNU/Linux.
8024         * m4/fcntl_h.m4 (gl_FCNTL_H): Require AC_USE_SYSTEM_EXTENSIONS.
8025
8026 2009-03-20  Ben Pfaff  <blp@gnu.org>
8027
8028         Make rename replace existing destinations on Windows.
8029         * m4/rename.m4: Add test for Mingw.
8030         * lib/rename.c: Add rename replacement that uses MoveFileEx with
8031         MOVEFILE_REPLACE_EXISTING to replace existing destination files.
8032         * doc/posix-functions/rename.texi: Document.
8033
8034 2009-04-10  Bruno Haible  <bruno@clisp.org>
8035
8036         New include file "iconveh.h".
8037         * lib/iconveh.h: New file, extracted from lib/striconveh.h.
8038         * lib/striconveh.h: Include it.
8039         (enum iconv_ilseq_handler): Remove definition.
8040         * lib/striconveha.h: Include <stddef.h> and iconveh.h instead of
8041         striconveh.h.
8042         * lib/striconveha.c: Include striconveh.h.
8043         * lib/uniconv.h: Include iconveh.h instead of striconveh.h.
8044         * modules/striconveh (Files): Add lib/iconveh.h.
8045         * modules/uniconv/base (Files): Add lib/iconveh.h. Remove
8046         lib/striconveh.h.
8047
8048 2009-04-10  Bruno Haible  <bruno@clisp.org>
8049
8050         * lib/uniconv.h: Update comment.
8051
8052 2009-04-10  Bruno Haible  <bruno@clisp.org>
8053
8054         * lib/unistr/u8-mbtouc-aux.c: Inside libunistring, define the function
8055         always.
8056         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
8057         * lib/unistr/u16-mbtouc-aux.c: Likewise.
8058         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
8059         * lib/unistr/u8-mbtouc.c: Inside libunistring, include
8060         "unistring-notinline.h", so that the function gets defined always.
8061         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
8062         * lib/unistr/u8-uctomb.c: Likewise.
8063         * lib/unistr/u16-mbtouc.c: Likewise.
8064         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
8065         * lib/unistr/u16-uctomb.c: Likewise.
8066         * lib/unistr/u32-mbtouc.c: Likewise.
8067         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
8068         * lib/unistr/u32-uctomb.c: Likewise.
8069
8070 2009-04-10  Bruno Haible  <bruno@clisp.org>
8071
8072         Mark 'utime' obsolete.
8073         * modules/utime (Status, Notice): New sections.
8074         Suggested by Jim Meyering.
8075
8076         Fix cross-compile guess for utime test.
8077         * m4/utime.m4 (AC_FUNC_UTIME_NULL): Add definition from newest unstable
8078         autoconf.
8079         * doc/posix-functions/utime.texi: Give more precisions.
8080         Reported by Jan <ipif@ymail.com>.
8081
8082 2009-04-09  Kamil Dudka  <kdudka@redhat.com>
8083
8084         filevercmp: correct today's change
8085         * lib/filevercmp.c: Also handle coreutils' test inputs.
8086         * tests/test-filevercmp.c: Add inputs from one of coreutils' test scripts.
8087
8088         Fix regression in 'filevercmp' module. Thanks Sven Joachim
8089         for reporting it.
8090         * lib/filevercmp.c: Special handle for "", "." and "..".
8091         * tests/test-filevercmp.c: Enlarge the set suite.
8092
8093 2009-04-07  Jim Meyering  <meyering@redhat.com>
8094
8095         useless-if-before-free: show how to remove braced useless free, too
8096         * build-aux/useless-if-before-free: still only in a comment, though.
8097
8098 2009-04-07  Reuben Thomas  <rrt@sc3d.org>
8099
8100         maint.mk: import changes to syntax-check macros from coreutils
8101         * top/maint.mk (_prohibit_regexp, _header_without_use): Define.
8102         Use them in the relevant macros.
8103
8104 2009-04-06  Bruno Haible  <bruno@clisp.org>
8105
8106         Fix unportable use of bit-fields.
8107         * lib/unicase/special-casing.h (struct special_casing_rule): Change the
8108         bit-field type from 'int' to 'signed int'. Otherwise Solaris cc,
8109         AIX xlc, and OSF/1 cc interpret it as 'unsigned int'.
8110
8111 2009-04-06  Bruno Haible  <bruno@clisp.org>
8112
8113         Avoid test failures on AIX and OSF/1.
8114         * tests/unicase/test-u8-casefold.c (check): Account for the possibility
8115         that malloc(0) = NULL.
8116         * tests/unicase/test-u8-tolower.c (check): Likewise.
8117         * tests/unicase/test-u8-totitle.c (check): Likewise.
8118         * tests/unicase/test-u8-toupper.c (check): Likewise.
8119         * tests/unicase/test-u16-casefold.c (check): Likewise.
8120         * tests/unicase/test-u16-tolower.c (check): Likewise.
8121         * tests/unicase/test-u16-totitle.c (check): Likewise.
8122         * tests/unicase/test-u16-toupper.c (check): Likewise.
8123         * tests/unicase/test-u32-casefold.c (check): Likewise.
8124         * tests/unicase/test-u32-tolower.c (check): Likewise.
8125         * tests/unicase/test-u32-totitle.c (check): Likewise.
8126         * tests/unicase/test-u32-toupper.c (check): Likewise.
8127         * tests/uninorm/test-u8-nfc.c (check): Likewise.
8128         * tests/uninorm/test-u8-nfd.c (check): Likewise.
8129         * tests/uninorm/test-u8-nfkc.c (check): Likewise.
8130         * tests/uninorm/test-u8-nfkd.c (check): Likewise.
8131         * tests/uninorm/test-u16-nfc.c (check): Likewise.
8132         * tests/uninorm/test-u16-nfd.c (check): Likewise.
8133         * tests/uninorm/test-u16-nfkc.c (check): Likewise.
8134         * tests/uninorm/test-u16-nfkd.c (check): Likewise.
8135         * tests/uninorm/test-u32-nfc.c (check): Likewise.
8136         * tests/uninorm/test-u32-nfd.c (check): Likewise.
8137         * tests/uninorm/test-u32-nfkc.c (check): Likewise.
8138         * tests/uninorm/test-u32-nfkd.c (check): Likewise.
8139
8140 2009-04-05  Bruno Haible  <bruno@clisp.org>
8141
8142         Work around an autoconf limitation.
8143         * gnulib-tool (func_emit_lib_Makefile_am): Omit the "Reproduce by"
8144         comment line if it would be longer than 3 KB.
8145
8146 2009-04-05  Bruno Haible  <bruno@clisp.org>
8147
8148         Avoid test failure with libiconv-1.13.
8149         * tests/test-striconveh.c (main): Allow result of libiconv 1.13 as one
8150         of the expected test results.
8151
8152 2009-04-05  Bruno Haible  <bruno@clisp.org>
8153
8154         * gnulib-tool (func_emit_lib_Makefile_am): Don't add the library to
8155         noinst_LTLIBRARIES if the Makefile.am in the same directory specifies
8156         that it should be installed.
8157
8158 2009-04-05  Bruno Haible  <bruno@clisp.org>
8159
8160         * gnulib-tool: New option --copy-file.
8161         (func_usage): Document it.
8162         (func_dest_tmpfilename): Moved out of func_import.
8163         (func_add_file, func_update_file): New functions, extracted from
8164         func_import.
8165         (func_import): Update.
8166
8167 2009-04-05  Karl Berry  <karl@gnu.org>
8168
8169         * README: prominently mention gnulib-tool.
8170         Rearrange sections so getting the code is near the top.
8171
8172 2009-04-05  Bruno Haible  <bruno@clisp.org>
8173
8174         * lib/unicase.h: Mention u*_cmp2.
8175         * lib/unicase/u-casecmp.h (FUNC): Invoke U_CMP2 instead of U_CMP.
8176         * lib/unicase/u8-casecmp.c: Use u8_cmp2 instead of u8_cmp.
8177         * lib/unicase/ulc-casecmp.c: Likewise.
8178         * lib/unicase/u16-casecmp.c: Use u16_cmp2 instead of u16_cmp.
8179         * lib/unicase/u32-casecmp.c: Use u32_cmp2 instead of u32_cmp.
8180         * modules/unicase/u8-casecmp (Depends-on): Add unistr/u8-cmp2, remove
8181         unistr/u8-cmp.
8182         * modules/unicase/ulc-casecmp (Depends-on): Likewise.
8183         * modules/unicase/u16-casecmp (Depends-on): Add unistr/u16-cmp2, remove
8184         unistr/u16-cmp.
8185         * modules/unicase/u32-casecmp (Depends-on): Add unistr/u32-cmp2, remove
8186         unistr/u32-cmp.
8187
8188         * lib/uninorm.h: Mention u*_cmp2.
8189         * lib/uninorm/u-normcmp.h (FUNC): Invoke U_CMP2 instead of U_CMP.
8190         * lib/uninorm/u8-normcmp.c: Use u8_cmp2 instead of u8_cmp.
8191         * lib/uninorm/u16-normcmp.c: Use u16_cmp2 instead of u16_cmp.
8192         * lib/uninorm/u32-normcmp.c: Use u32_cmp2 instead of u32_cmp.
8193         * modules/uninorm/u8-normcmp (Depends-on): Add unistr/u8-cmp2, remove
8194         unistr/u8-cmp.
8195         * modules/uninorm/u16-normcmp (Depends-on): Add unistr/u16-cmp2, remove
8196         unistr/u16-cmp.
8197         * modules/uninorm/u32-normcmp (Depends-on): Add unistr/u32-cmp2, remove
8198         unistr/u32-cmp.
8199
8200         New module 'unistr/u32-cmp2'.
8201         * lib/unistr/u32-cmp2.c: New file.
8202         * modules/unistr/u32-cmp2: New file.
8203
8204         New module 'unistr/u16-cmp2'.
8205         * lib/unistr/u16-cmp2.c: New file.
8206         * modules/unistr/u16-cmp2: New file.
8207
8208         New module 'unistr/u8-cmp2'.
8209         * lib/unistr.h (u8_cmp2, u16_cmp2, u32_cmp2): New declarations.
8210         * lib/unistr/u8-cmp2.c: New file.
8211         * lib/unistr/u-cmp2.h: New file.
8212         * modules/unistr/u8-cmp2: New file.
8213
8214 2009-04-05  Bruno Haible  <bruno@clisp.org>
8215
8216         * lib/unictype.h (uc_property_is_valid): New macro.
8217         * tests/unictype/test-pr_byname.c (main): Use it.
8218
8219         * lib/unistr.h: Doc fixes.
8220         * lib/uniconv.h: Doc fixes.
8221         * lib/unictype.h: Doc fixes.
8222
8223 2009-04-03  Paul Eggert  <eggert@cs.ucla.edu>
8224
8225         Port coreutils 7.2 to Solaris 8.
8226
8227         * modules/arpa_inet (arpa/inet.h): Depend on arpa_inet.in.h.
8228         * m4/inet_ntop.m4 (gl_INET_NTOP): Search for inet_ntop in -lnsl,
8229         for Solaris 8.  This is a bit of a hack, as it means it's the
8230         caller's responsibility to add -lnsl if needed, but most likely it
8231         won't be needed since only getaddrinfo uses this and getaddrinfo
8232         isn't needed on Solaris 8.
8233
8234         * modules/fnmatch (Depends-on): Add mbsrtowcs, to fix a porting
8235         problem to Solaris 8 encountered with coreutils 7.2, which
8236         resulted in a message "fnmatch.c:292: warning: passing argument 4
8237         of 'mbsrtowcs' from incompatible pointer type".  Also, add mbsinit
8238         at the suggestion of Bruno Haible, since fnmatch uses mbsinit.
8239
8240 2009-04-03  Simon Josefsson  <simon@josefsson.org>
8241
8242         * m4/ld-version-script.m4: Add FIXME comment.
8243
8244 2009-04-02  Simon Josefsson  <simon@josefsson.org>
8245
8246         * doc/ld-output-def.texi: Use DLL_VERSION instead of confusing
8247         SOVERSION variable.
8248
8249 2009-04-02  Bruno Haible  <bruno@clisp.org>
8250
8251         * Makefile (info, html, dvi, pdf): Combine the rules.
8252         Suggested by Jim Meyering.
8253
8254 2009-04-01  Bruno Haible  <bruno@clisp.org>
8255
8256         * Makefile (info, html, dvi, pdf): New targets.
8257         Reported by Reuben Thomas <rrt@sc3d.org>.
8258
8259 2009-04-01  Bruno Haible  <bruno@clisp.org>
8260
8261         * doc/gnulib-tool.texi (Invoking gnulib-tool): Document how gnulib-tool
8262         can be put into PATH.
8263         Reported by Reuben Thomas <rrt@sc3d.org>. Suggested by Karl Berry.
8264
8265 2009-04-01  Bruno Haible  <bruno@clisp.org>
8266
8267         * doc/lib-symbol-visibility.texi: Follow texinfo style conventions.
8268
8269 2009-04-01  Bruno Haible  <bruno@clisp.org>
8270
8271         Rename module 'visibility'.
8272         * modules/lib-symbol-visibility: Renamed from modules/visibility.
8273         * doc/lib-symbol-visibility.texi: Renamed from visibility.texi.
8274         * doc/gnulib.texi: Update.
8275         * MODULES.html.sh (Misc): Update.
8276         * NEWS: Mention the change.
8277
8278 2009-04-01  Simon Josefsson  <simon@josefsson.org>
8279
8280         * modules/lib-msvc-compat: New module.  Thanks to Bruno Haible
8281         <bruno@clisp.org>, Ralf Wildenhues <Ralf.Wildenhues@gmx.de>, and
8282         Eric Blake <ebb9@byu.net> for review.
8283         * MODULES.html.sh: Add lib-msvc-compat.
8284         * doc/gnulib.texi: Link to new section.
8285         * m4/ld-output-def.m4: New file.
8286         * doc/ld-output-def.texi: New file.
8287
8288 2009-04-01  Simon Josefsson  <simon@josefsson.org>
8289
8290         Rename ld-version-script to lib-symbol-versions.  Suggested by
8291         Bruno Haible <bruno@clisp.org>.
8292         * modules/ld-version-script: Renamed to lib-symbol-versions.
8293         * doc/ld-version-script.texi: Fix module name.
8294         * MODULES.html.sh: Add lib-symbol-versions.
8295
8296 2009-03-31  Simon Josefsson  <simon@josefsson.org>
8297
8298         * modules/u64-tests: New file.
8299         * tests/test-u64.c: New file.
8300
8301 2009-03-04  Simon Josefsson  <simon@josefsson.org>
8302
8303         * MODULES.html.sh: Mention u64.
8304         * modules/u64: New module.
8305         * modules/crypto/sha512: Depend on u64 module instead of providing
8306         u64.h.
8307
8308 2009-03-27  Eric Blake  <ebb9@byu.net>
8309
8310         test-strerror: make debugging EAI_SYSTEM easier
8311         * modules/getaddrinfo-tests (Depends-on): Add strerror.
8312         * test-getaddrinfo.c (simple) [ENABLE_DEBUGGING]: Report errno if
8313         failure was EAI_SYSTEM.
8314
8315 2009-03-25  Bruno Haible  <bruno@clisp.org>
8316
8317         Fix a problem with --enable-relocatable on Solaris 7.
8318         * modules/relocatable-prog-wrapper (Depends-on): Add environ. Needed
8319         since 2008-02-24.
8320
8321 2009-03-25  Eric Blake  <ebb9@byu.net>
8322
8323         test-sockets: avoid gcc warning
8324         * tests/test-sockets.c (main): Silence compiler warning.
8325
8326 2009-03-25  Paul Eggert  <eggert@cs.ucla.edu>
8327
8328         New modules nproc, pthread, contributed by Glen Lenker.
8329
8330         * MODULES.html.sh: Add pthread, nproc.
8331         * lib/nproc.c: New file.
8332         * lib/nproc.h: New file.
8333         * lib/pthread.in.h: New file.
8334         * m4/pthread.m4: New file.
8335         * modules/nproc: New file.
8336         * modules/pthread: New file.
8337
8338 2009-03-24  Simon Josefsson  <simon@josefsson.org>
8339
8340         * modules/unicase/locale-language-tests (test_locale_language_LDADD):
8341         New variable.
8342
8343 2009-03-24  Kamil Dudka  <kdudka@redhat.com>
8344
8345         filevercmp: handle simple~ and numbered.~3~ backup suffixes
8346         * lib/filevercmp.c: Handle simple~ and numbered.~3~ backup suffixes.
8347         * tests/test-filevercmp.c: Add tests for backup suffixes.
8348
8349 2009-03-24  Simon Josefsson  <simon@josefsson.org>
8350
8351         * modules/stdlib (Depends-on): Add stdint, needed when defining
8352         struct random_data on, for example, HP-UX 10.20.  Reported by
8353         Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
8354
8355 2009-03-24  Simon Josefsson  <simon@josefsson.org>
8356
8357         * lib/readline.c (readline): Call fflush on stdout after printing
8358         prompt.
8359
8360 2009-03-20  Bruno Haible  <bruno@clisp.org>
8361
8362         Remove dependency from 'close' module to -lws2_32 on native Windows.
8363         * lib/close-hook.h: New file.
8364         * lib/close-hook.c: New file.
8365         * lib/close.c: Include close-hook.h. Don't include <sys/socket.h>,
8366         w32sock.h.
8367         (_gl_close_fd_maybe_socket): Remove function.
8368         (rpl_close): Invoke execute_all_close_hooks instead of
8369         _gl_close_fd_maybe_socket.
8370         * lib/sockets.c: Include close-hook.h, w32sock.h.
8371         (close_fd_maybe_socket): New function, essentially from lib/close.c.
8372         (close_sockets_hook): New variable.
8373         (gl_sockets_startup): Register close_fd_maybe_socket as a hook.
8374         (gl_sockets_cleanup): Unregister it.
8375         * lib/unistd.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET): Remove macro.
8376         * m4/close.m4 (gl_REPLACE_CLOSE): Undo 2009-02-05 change.
8377         * modules/close-hook: New file.
8378         * modules/close (Files): Remove lib/w32sock.h.
8379         (Depends-on): Add close-hook.
8380         (Link): Remove section.
8381         * modules/sockets (Files): Add lib/w32sock.h.
8382         (Depends-on): Add close-hook.
8383         * modules/sys_socket (configure.ac): Remove gl_MODULE_INDICATOR
8384         invocation.
8385         * NEWS: Mention that LIB_CLOSE is gone.
8386
8387 2009-03-23  Eric Blake  <ebb9@byu.net>
8388
8389         signal-tests: test previous patch
8390         * tests/test-signal.c: New file.
8391         * modules/signal-tests: Likewise.
8392
8393         signal.h: always support 'volatile sig_atomic_t'
8394         * m4/signal_h.m4 (gl_SIGNAL_H): Check for AIX limitation.
8395         (gl_SIGNAL_H_DEFAULTS): Add a default.
8396         * modules/signal (Makefile.am): Substitute if needed.
8397         * lib/signal.in.h (sig_atomic_t): Redefine if needed, so that
8398         users can blindly add volatile.
8399         * doc/posix-headers/signal.texi (signal.h): Document it.
8400         Reported by Matthew Woehlke.
8401
8402 2009-03-23  Jim Meyering  <meyering@redhat.com>
8403
8404         pathmax: PATH_MAX: use pathconf only when available
8405         * lib/pathmax.h (PATH_MAX): Select the pathconf-using definition
8406         only if HAVE_PATHCONF is defined.  Patch by Sylvain Beucler.
8407         * m4/pathmax.m4 (gl_PATHMAX): Check for pathconf.
8408         This avoids a link failure in a PSP cross-compilation environment
8409         described in http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/17048
8410
8411         * lib/vasnprintf.c (divide): Fix typo in comment.
8412
8413 2009-03-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8414
8415         * gnulib-tool (func_filter_filelist): Fix comment.
8416
8417 2009-03-20  Bruno Haible  <bruno@clisp.org>
8418
8419         Make sockets.h self-contained.
8420         * lib/sockets.c: Include sockets.h first.
8421         * lib/sockets.h: Include <sys/socket.h> before using the SOCKET type.
8422
8423 2009-03-19  Eric Blake  <ebb9@byu.net>
8424
8425         doc: mention more functions added in cygwin 1.7.0
8426         * doc/posix-functions/log2.texi: Mention recent cygwin 1.7.0
8427         addition.
8428         * doc/posix-functions/log2f.texi: Likewise.
8429
8430 2009-03-19  Jim Meyering  <meyering@redhat.com>
8431
8432         fsusage: avoid syntax error due to statement-before-declaration
8433         * lib/fsusage.c (get_fs_usage): Put warning-avoidance statement
8434         after all declarations.  Reported by Matthew Woehlke in
8435         http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/16231
8436
8437 2009-03-18  Eric Blake  <ebb9@byu.net>
8438
8439         build-aux/compile: sync from automake
8440         * build-aux/compile: New file, from automake.
8441         * config/srclist.txt: Mention build-aux/compile.
8442
8443 2009-03-17  Bruno Haible  <bruno@clisp.org>
8444
8445         * lib/git-merge-changelog.c: Fix typo in comment.
8446         Reported by Reuben Thomas <rrt@sc3d.org>.
8447
8448 2009-03-17  Reuben Thomas  <rrt@sc3d.org>
8449
8450         * m4/regex.m4: update and improve help for
8451         --without-included-regex.
8452
8453 2009-03-17  Simon Josefsson  <simon@josefsson.org>
8454
8455         * modules/isnanl-nolibm-tests (Files): Add tests/nan.h to avoid
8456         failure on missing include files.
8457
8458 2009-03-17  Eric Blake  <ebb9@byu.net>
8459
8460         doc: mention more functions added in cygwin 1.7.0
8461         * doc/posix-functions/fwprintf.texi: Mention recent cygwin 1.7.0
8462         addition.
8463         * doc/posix-functions/fwscanf.texi: Likewise.
8464         * doc/posix-functions/swprintf.texi: Likewise.
8465         * doc/posix-functions/swscanf.texi: Likewise.
8466         * doc/posix-functions/vfwprintf.texi: Likewise.
8467         * doc/posix-functions/vfwscanf.texi: Likewise.
8468         * doc/posix-functions/vswprintf.texi: Likewise.
8469         * doc/posix-functions/vswscanf.texi: Likewise.
8470         * doc/posix-functions/vwprintf.texi: Likewise.
8471         * doc/posix-functions/vwscanf.texi: Likewise.
8472         * doc/posix-functions/wcscasecmp.texi: Likewise.
8473         * doc/posix-functions/wcsdup.texi: Likewise.
8474         * doc/posix-functions/wcsftime.texi: Likewise.
8475         * doc/posix-functions/wcsncasecmp.texi: Likewise.
8476         * doc/posix-functions/wprintf.texi: Likewise.
8477         * doc/posix-functions/wscanf.texi: Likewise.
8478         * doc/glibc-functions/gethostbyname2.texi: Likewise.
8479
8480 2009-03-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8481
8482         maint.mk: really add $(AM_MAKEFLAGS)
8483         * top/maint.mk (init-coverage, build-coverage): `$(AM_MAKEFLAGS)'
8484         was inadvertently omitted in the last commit.
8485         Spotted by Bruno Haible.
8486
8487         maint.mk: use $(MAKE) $(AM_MAKEFLAGS) not make
8488         * top/maint.mk (init-coverage, build-coverage): Use `$(MAKE)
8489         $(AM_MAKEFLAGS)' rather than plain `make'.
8490
8491         gnulib-tool: execute $MAKE not make
8492         * gnulib-tool: Default $MAKE to 'make'.
8493         (func_create_testdir, func_create_megatestdir): Use $MAKE rather
8494         than make.  Initialize $MAKE in the do-autobuild script.
8495
8496         gnulib-tool: use $MAKE not make in generated files
8497         * gnulib-tool (func_create_megatestdir): Use $MAKE rather than
8498         make, in generated files.  Initialize $MAKE in the do-autobuild
8499         script.
8500
8501         * top/GNUmakefile (_have-git-version-gen): Fix typo.
8502
8503         GNUmakefile: disable parallelism only for multiple, recursive targets
8504         * top/GNUmakefile (ALL_RECURSIVE_TARGETS): New macro; allow user
8505         additions in the Makefile.
8506         (AM_RECURSIVE_TARGETS): New macro, override only if not provided
8507         by Automake.
8508         (.NOTPARALLEL): Only disable parallel builds if multiple targets
8509         are listed on the command line and at least one of them is
8510         listed in $(ALL_RECURSIVE_TARGETS).
8511
8512 2009-03-14  Bruno Haible  <bruno@clisp.org>
8513
8514         * modules/unilbrk/u8-possible-linebreaks (Depends-on): Replace
8515         utf8-ucs4-unsafe with unistr/u8-mbtouc-unsafe.
8516         * modules/unilbrk/u8-width-linebreaks (Depends-on): Likewise.
8517         * modules/unilbrk/u16-possible-linebreaks (Depends-on): Replace
8518         utf16-ucs4-unsafe with unistr/u16-mbtouc-unsafe.
8519         * modules/unilbrk/u16-width-linebreaks (Depends-on): Likewise.
8520         * modules/unistr/u8-chr (Depends-on): Replace ucs4-utf8 with
8521         unistr/u8-uctomb.
8522         * modules/unistr/u8-strchr (Depends-on): Likewise.
8523         * modules/unistr/u8-strrchr (Depends-on): Likewise.
8524         * modules/unistr/u16-chr (Depends-on): Replace ucs4-utf16 with
8525         unistr/u16-uctomb.
8526         * modules/unistr/u16-strchr (Depends-on): Likewise.
8527         * modules/unistr/u16-strrchr (Depends-on): Likewise.
8528
8529 2009-03-12  Bruno Haible  <bruno@clisp.org>
8530
8531         Work around select() bug on Interix 3.5.
8532         * lib/sys_select.in.h (select): Also replace if REPLACE_SELECT is 1.
8533         * lib/select.c (rpl_select): Add an implementation for Unix platforms.
8534         * m4/select.m4: New file.
8535         * m4/sys_select_h.m4 (gl_SYS_SELECT_H_DEFAULTS): Initialize REPLACE_SELECT.
8536         * modules/sys_select (Makefile.am): Substitute REPLACE_SELECT.
8537         * modules/select (Files): Add m4/select.m4.
8538         (configure.ac): Move conditional to m4/select.m4. Invoke gl_FUNC_SELECT.
8539         * modules/nanosleep (Depends-on): Add select.
8540         * modules/poll (Depends-on): Likewise.
8541         * doc/posix-functions/select.texi: Mention the Interix bug.
8542         Reported by Markus Duft <mduft@gentoo.org>.
8543
8544         * lib/select.c: Renamed from lib/winsock-select.c.
8545         * modules/select (Files): Add lib/select.c, remove
8546         lib/winsock-select.c.
8547         (configure.ac): Update.
8548
8549 2009-03-12  Jim Meyering  <meyering@redhat.com>
8550
8551         avoid gcc warnings about unused macro definitions
8552         * lib/readtokens.c (STREQ): Remove unused definition.
8553         * lib/xmalloc.c (SIZE_MAX): Likewise.
8554         * lib/openat-die.c (N_): Likewise.
8555         * lib/mountlist.c (SIZE_MAX): Remove definition.
8556         Instead, include <stdint.h>.
8557         * lib/readutmp.c: Likewise.
8558         * modules/readutmp (Depends-on): Add stdint.
8559         * modules/mountlist (Depends-on): Add stdint.
8560         * lib/userspec.c (ISDIGIT): Move definition into #if block where used.
8561
8562 2009-03-10  Bruno Haible  <bruno@clisp.org>
8563
8564         Tests for module 'mbmemcasecoll'.
8565         * modules/mbmemcasecoll-tests: New file.
8566         * tests/test-mbmemcasecoll1.sh: New file.
8567         * tests/test-mbmemcasecoll2.sh: New file.
8568         * tests/test-mbmemcasecoll3.sh: New file.
8569         * tests/test-mbmemcasecoll.c: New file.
8570
8571         New module 'mbmemcasecoll'.
8572         * lib/mbmemcasecoll.h: New file.
8573         * lib/mbmemcasecoll.c: New file.
8574         * modules/mbmemcasecoll: New file.
8575
8576         * tests/test-mbmemcasecmp.h: New file, extracted from
8577         tests/test-mbmemcasecmp.c.
8578         * tests/test-mbmemcasecmp.c: Include test-mbmemcasecmp.h.
8579         (test_ascii, test_iso_8859_1, test_utf_8): Remove functions.
8580         (main): Update.
8581         * modules/mbmemcasecmp-tests (Files): Add tests/test-mbmemcasecmp.h.
8582
8583 2009-03-09  Bruno Haible  <bruno@clisp.org>
8584
8585         Tests for module 'mbmemcasecmp'.
8586         * modules/mbmemcasecmp-tests: New file.
8587         * tests/test-mbmemcasecmp1.sh: New file.
8588         * tests/test-mbmemcasecmp2.sh: New file.
8589         * tests/test-mbmemcasecmp3.sh: New file.
8590         * tests/test-mbmemcasecmp.c: New file.
8591
8592         New module 'mbmemcasecmp'.
8593         * lib/mbmemcasecmp.h: New file.
8594         * lib/mbmemcasecmp.c: New file.
8595         * modules/mbmemcasecmp: New file.
8596
8597 2009-03-09  Bruno Haible  <bruno@clisp.org>
8598
8599         Tests for module 'unicase/ulc-casecoll'.
8600         * modules/unicase/ulc-casecoll-tests: New file.
8601         * tests/unicase/test-ulc-casecoll1.sh: New file.
8602         * tests/unicase/test-ulc-casecoll2.sh: New file.
8603         * tests/unicase/test-ulc-casecoll.c: New file.
8604
8605         New module 'unicase/ulc-casecoll'.
8606         * lib/unicase.h (ulc_casecoll): New declaration.
8607         * lib/unicase/ulc-casecoll.c: New file.
8608         * modules/unicase/ulc-casecoll: New file.
8609
8610         New module 'unicase/ulc-casexfrm'.
8611         * lib/unicase.h (ulc_casexfrm): New declaration.
8612         * lib/unicase/ulc-casexfrm.c: New file.
8613         * modules/unicase/ulc-casexfrm: New file.
8614
8615 2009-03-09  Bruno Haible  <bruno@clisp.org>
8616
8617         Followup to 2008-12-22 commit: Remove unnecessary AC_FUNC_MBRTOWC
8618         invocations.
8619
8620         * m4/mbscasecmp.m4: Remove file.
8621         * modules/mbscasecmp (Files): Remove it and m4/mbrtowc.m4
8622         (configure.ac): Remove gl_FUNC_MBSCASECMP invocation.
8623
8624         * m4/mbscasestr.m4: Remove file.
8625         * modules/mbscasestr (Files): Remove it and m4/mbrtowc.m4
8626         (configure.ac): Remove gl_FUNC_MBSCASESTR invocation.
8627
8628         * m4/mbschr.m4: Remove file.
8629         * modules/mbschr (Files): Remove it and m4/mbrtowc.m4
8630         (configure.ac): Remove gl_FUNC_MBSCHR invocation.
8631
8632         * m4/mbscspn.m4: Remove file.
8633         * modules/mbscspn (Files): Remove it and m4/mbrtowc.m4
8634         (configure.ac): Remove gl_FUNC_MBSCSPN invocation.
8635
8636         * m4/mbslen.m4: Remove file.
8637         * modules/mbslen (Files): Remove it and m4/mbrtowc.m4
8638         (configure.ac): Remove gl_FUNC_MBSLEN invocation.
8639
8640         * m4/mbsncasecmp.m4: Remove file.
8641         * modules/mbsncasecmp (Files): Remove it and m4/mbrtowc.m4
8642         (configure.ac): Remove gl_FUNC_MBSNCASECMP invocation.
8643
8644         * m4/mbsnlen.m4: Remove file.
8645         * modules/mbsnlen (Files): Remove it and m4/mbrtowc.m4
8646         (configure.ac): Remove gl_FUNC_MBSNLEN invocation.
8647
8648         * m4/mbspbrk.m4: Remove file.
8649         * modules/mbspbrk (Files): Remove it and m4/mbrtowc.m4
8650         (configure.ac): Remove gl_FUNC_MBSPBRK invocation.
8651
8652         * m4/mbspcasecmp.m4: Remove file.
8653         * modules/mbspcasecmp (Files): Remove it and m4/mbrtowc.m4
8654         (configure.ac): Remove gl_FUNC_MBSPCASECMP invocation.
8655
8656         * m4/mbsrchr.m4: Remove file.
8657         * modules/mbsrchr (Files): Remove it and m4/mbrtowc.m4
8658         (configure.ac): Remove gl_FUNC_MBSRCHR invocation.
8659
8660         * m4/mbssep.m4: Remove file.
8661         * modules/mbssep (Files): Remove it and m4/mbrtowc.m4
8662         (configure.ac): Remove gl_FUNC_MBSSEP invocation.
8663
8664         * m4/mbsspn.m4: Remove file.
8665         * modules/mbsspn (Files): Remove it and m4/mbrtowc.m4
8666         (configure.ac): Remove gl_FUNC_MBSSPN invocation.
8667
8668         * m4/mbsstr.m4: Remove file.
8669         * modules/mbsstr (Files): Remove it and m4/mbrtowc.m4
8670         (configure.ac): Remove gl_FUNC_MBSSTR invocation.
8671
8672         * m4/mbstok_r.m4: Remove file.
8673         * modules/mbstok_r (Files): Remove it and m4/mbrtowc.m4
8674         (configure.ac): Remove gl_FUNC_MBSTOK_R invocation.
8675
8676         * m4/mbswidth.m4 (gl_MBSWIDTH): Remove AC_FUNC_MBRTOWC invocation.
8677
8678         * m4/quotearg.m4 (gl_QUOTEARG): Remove mbsinit test and
8679         AC_TYPE_MBSTATE_T, AC_FUNC_MBRTOWC invocations.
8680
8681         * modules/trim (configure.ac): Remove AC_FUNC_MBRTOWC invocation.
8682
8683 2009-03-08  Bruno Haible  <bruno@clisp.org>
8684
8685         Tests for module 'unicase/ulc-casecmp'.
8686         * modules/unicase/ulc-casecmp-tests: New file.
8687         * tests/unicase/test-ulc-casecmp1.sh: New file.
8688         * tests/unicase/test-ulc-casecmp2.sh: New file.
8689         * tests/unicase/test-ulc-casecmp.c: New file.
8690
8691         New module 'unicase/ulc-casecmp'.
8692         * lib/unicase.h (ulc_casecmp): New declaration.
8693         * lib/unicase/ulc-casecmp.c: New file.
8694         * lib/unicase/u-casecmp.h (FUNC): Change argument types to
8695         'const SRC_UNIT *'.
8696         * lib/unicase/u8-casecmp.c (SRC_UNIT): Define like UNIT.
8697         * lib/unicase/u16-casecmp.c (SRC_UNIT): Likewise.
8698         * lib/unicase/u32-casecmp.c (SRC_UNIT): Likewise.
8699         * modules/unicase/ulc-casecmp: New file.
8700
8701         Tests for module 'unicase/u32-is-cased'.
8702         * modules/unicase/u32-is-cased-tests: New file.
8703         * tests/unicase/test-u32-is-cased.c: New file.
8704
8705         Tests for module 'unicase/u16-is-cased'.
8706         * modules/unicase/u16-is-cased-tests: New file.
8707         * tests/unicase/test-u16-is-cased.c: New file.
8708
8709         Tests for module 'unicase/u8-is-cased'.
8710         * modules/unicase/u8-is-cased-tests: New file.
8711         * tests/unicase/test-u8-is-cased.c: New file.
8712         * tests/unicase/test-is-cased.h: New file.
8713
8714         New module 'unicase/u32-is-cased'.
8715         * lib/unicase/u32-is-cased.c: New file.
8716         * modules/unicase/u32-is-cased: New file.
8717
8718         New module 'unicase/u16-is-cased'.
8719         * lib/unicase/u16-is-cased.c: New file.
8720         * modules/unicase/u16-is-cased: New file.
8721
8722         New module 'unicase/u8-is-cased'.
8723         * lib/unicase/u8-is-cased.c: New file.
8724         * lib/unicase/u-is-cased.h: New file.
8725         * modules/unicase/u8-is-cased: New file.
8726
8727         Tests for module 'unicase/u32-is-casefolded'.
8728         * modules/unicase/u32-is-casefolded-tests: New file.
8729         * tests/unicase/test-u32-is-casefolded.c: New file.
8730
8731         Tests for module 'unicase/u16-is-casefolded'.
8732         * modules/unicase/u16-is-casefolded-tests: New file.
8733         * tests/unicase/test-u16-is-casefolded.c: New file.
8734
8735         Tests for module 'unicase/u8-is-casefolded'.
8736         * modules/unicase/u8-is-casefolded-tests: New file.
8737         * tests/unicase/test-u8-is-casefolded.c: New file.
8738         * tests/unicase/test-is-casefolded.h: New file.
8739
8740         New module 'unicase/u32-is-casefolded'.
8741         * lib/unicase/u32-is-casefolded.c: New file.
8742         * modules/unicase/u32-is-casefolded: New file.
8743
8744         New module 'unicase/u16-is-casefolded'.
8745         * lib/unicase/u16-is-casefolded.c: New file.
8746         * modules/unicase/u16-is-casefolded: New file.
8747
8748         New module 'unicase/u8-is-casefolded'.
8749         * lib/unicase/u8-is-casefolded.c: New file.
8750         * modules/unicase/u8-is-casefolded: New file.
8751
8752         Tests for module 'unicase/u32-is-titlecase'.
8753         * modules/unicase/u32-is-titlecase-tests: New file.
8754         * tests/unicase/test-u32-is-titlecase.c: New file.
8755
8756         Tests for module 'unicase/u16-is-titlecase'.
8757         * modules/unicase/u16-is-titlecase-tests: New file.
8758         * tests/unicase/test-u16-is-titlecase.c: New file.
8759
8760         Tests for module 'unicase/u8-is-titlecase'.
8761         * modules/unicase/u8-is-titlecase-tests: New file.
8762         * tests/unicase/test-u8-is-titlecase.c: New file.
8763         * tests/unicase/test-is-titlecase.h: New file.
8764
8765         New module 'unicase/u32-is-titlecase'.
8766         * lib/unicase/u32-is-titlecase.c: New file.
8767         * modules/unicase/u32-is-titlecase: New file.
8768
8769         New module 'unicase/u16-is-titlecase'.
8770         * lib/unicase/u16-is-titlecase.c: New file.
8771         * modules/unicase/u16-is-titlecase: New file.
8772
8773         New module 'unicase/u8-is-titlecase'.
8774         * lib/unicase/u8-is-titlecase.c: New file.
8775         * modules/unicase/u8-is-titlecase: New file.
8776
8777         Tests for module 'unicase/u32-is-lowercase'.
8778         * modules/unicase/u32-is-lowercase-tests: New file.
8779         * tests/unicase/test-u32-is-lowercase.c: New file.
8780
8781         Tests for module 'unicase/u16-is-lowercase'.
8782         * modules/unicase/u16-is-lowercase-tests: New file.
8783         * tests/unicase/test-u16-is-lowercase.c: New file.
8784
8785         Tests for module 'unicase/u8-is-lowercase'.
8786         * modules/unicase/u8-is-lowercase-tests: New file.
8787         * tests/unicase/test-u8-is-lowercase.c: New file.
8788         * tests/unicase/test-is-lowercase.h: New file.
8789
8790         New module 'unicase/u32-is-lowercase'.
8791         * lib/unicase/u32-is-lowercase.c: New file.
8792         * modules/unicase/u32-is-lowercase: New file.
8793
8794         New module 'unicase/u16-is-lowercase'.
8795         * lib/unicase/u16-is-lowercase.c: New file.
8796         * modules/unicase/u16-is-lowercase: New file.
8797
8798         New module 'unicase/u8-is-lowercase'.
8799         * lib/unicase/u8-is-lowercase.c: New file.
8800         * modules/unicase/u8-is-lowercase: New file.
8801
8802         Tests for module 'unicase/u32-is-uppercase'.
8803         * modules/unicase/u32-is-uppercase-tests: New file.
8804         * tests/unicase/test-u32-is-uppercase.c: New file.
8805
8806         Tests for module 'unicase/u16-is-uppercase'.
8807         * modules/unicase/u16-is-uppercase-tests: New file.
8808         * tests/unicase/test-u16-is-uppercase.c: New file.
8809
8810         Tests for module 'unicase/u8-is-uppercase'.
8811         * modules/unicase/u8-is-uppercase-tests: New file.
8812         * tests/unicase/test-u8-is-uppercase.c: New file.
8813         * tests/unicase/test-is-uppercase.h: New file.
8814
8815         New module 'unicase/u32-is-uppercase'.
8816         * lib/unicase/u32-is-uppercase.c: New file.
8817         * modules/unicase/u32-is-uppercase: New file.
8818
8819         New module 'unicase/u16-is-uppercase'.
8820         * lib/unicase/u16-is-uppercase.c: New file.
8821         * modules/unicase/u16-is-uppercase: New file.
8822
8823         New module 'unicase/u8-is-uppercase'.
8824         * lib/unicase/u8-is-uppercase.c: New file.
8825         * modules/unicase/u8-is-uppercase: New file.
8826
8827         New module 'unicase/u32-is-invariant'.
8828         * lib/unicase/u32-is-invariant.c: New file.
8829         * modules/unicase/u32-is-invariant: New file.
8830
8831         New module 'unicase/u16-is-invariant'.
8832         * lib/unicase/u16-is-invariant.c: New file.
8833         * modules/unicase/u16-is-invariant: New file.
8834
8835         New module 'unicase/u8-is-invariant'.
8836         * lib/unicase/u8-is-invariant.c: New file.
8837         * lib/unicase/invariant.h: New file.
8838         * lib/unicase/u-is-invariant.h: New file.
8839         * modules/unicase/u8-is-invariant: New file.
8840
8841         Tests for module 'unicase/u32-casecoll'.
8842         * modules/unicase/u32-casecoll-tests: New file.
8843         * tests/unicase/test-u32-casecoll.c: New file.
8844
8845         Tests for module 'unicase/u16-casecoll'.
8846         * modules/unicase/u16-casecoll-tests: New file.
8847         * tests/unicase/test-u16-casecoll.c: New file.
8848
8849         Tests for module 'unicase/u8-casecoll'.
8850         * modules/unicase/u8-casecoll-tests: New file.
8851         * tests/unicase/test-u8-casecoll.c: New file.
8852
8853         New module 'unicase/u32-casecoll'.
8854         * lib/unicase/u32-casecoll.c: New file.
8855         * modules/unicase/u32-casecoll: New file.
8856
8857         New module 'unicase/u16-casecoll'.
8858         * lib/unicase/u16-casecoll.c: New file.
8859         * modules/unicase/u16-casecoll: New file.
8860
8861         New module 'unicase/u8-casecoll'.
8862         * lib/unicase/u8-casecoll.c: New file.
8863         * lib/unicase/u-casecoll.h: New file.
8864         * modules/unicase/u8-casecoll: New file.
8865
8866         New module 'unicase/u32-casexfrm'.
8867         * lib/unicase/u32-casexfrm.c: New file.
8868         * modules/unicase/u32-casexfrm: New file.
8869
8870         New module 'unicase/u16-casexfrm'.
8871         * lib/unicase/u16-casexfrm.c: New file.
8872         * modules/unicase/u16-casexfrm: New file.
8873
8874         New module 'unicase/u8-casexfrm'.
8875         * lib/unicase/u8-casexfrm.c: New file.
8876         * lib/unicase/u-casexfrm.h: New file.
8877         * modules/unicase/u8-casexfrm: New file.
8878
8879         Tests for module 'unicase/u32-casecmp'.
8880         * modules/unicase/u32-casecmp-tests: New file.
8881         * tests/unicase/test-u32-casecmp.c: New file.
8882
8883         Tests for module 'unicase/u16-casecmp'.
8884         * modules/unicase/u16-casecmp-tests: New file.
8885         * tests/unicase/test-u16-casecmp.c: New file.
8886
8887         Tests for module 'unicase/u8-casecmp'.
8888         * modules/unicase/u8-casecmp-tests: New file.
8889         * tests/unicase/test-u8-casecmp.c: New file.
8890         * tests/unicase/test-casecmp.h: New file.
8891
8892         New module 'unicase/u32-casecmp'.
8893         * lib/unicase/u32-casecmp.c: New file.
8894         * modules/unicase/u32-casecmp: New file.
8895
8896         New module 'unicase/u16-casecmp'.
8897         * lib/unicase/u16-casecmp.c: New file.
8898         * modules/unicase/u16-casecmp: New file.
8899
8900         New module 'unicase/u8-casecmp'.
8901         * lib/unicase/u8-casecmp.c: New file.
8902         * lib/unicase/u-casecmp.h: New file.
8903         * modules/unicase/u8-casecmp: New file.
8904
8905         Tests for module 'unicase/u32-casefold'.
8906         * modules/unicase/u32-casefold-tests: New file.
8907         * tests/unicase/test-u32-casefold.c: New file.
8908
8909         Tests for module 'unicase/u16-casefold'.
8910         * modules/unicase/u16-casefold-tests: New file.
8911         * tests/unicase/test-u16-casefold.c: New file.
8912
8913         Tests for module 'unicase/u8-casefold'.
8914         * modules/unicase/u8-casefold-tests: New file.
8915         * tests/unicase/test-u8-casefold.c: New file.
8916
8917         New module 'unicase/u32-casefold'.
8918         * lib/unicase/u32-casefold.c: New file.
8919         * modules/unicase/u32-casefold: New file.
8920
8921         New module 'unicase/u16-casefold'.
8922         * lib/unicase/u16-casefold.c: New file.
8923         * modules/unicase/u16-casefold: New file.
8924
8925         New module 'unicase/u8-casefold'.
8926         * lib/unicase/u8-casefold.c: New file.
8927         * lib/unicase/u-casefold.h: New file.
8928         * modules/unicase/u8-casefold: New file.
8929
8930         New module 'unicase/tocasefold'.
8931         * lib/unicase/casefold.h: New file.
8932         * lib/unicase/tocasefold.c: New file.
8933         * lib/unicase/tocasefold.h: New file, generated by gen-uni-tables.c.
8934         * modules/unicase/tocasefold: New file.
8935
8936         Tests for module 'unicase/u32-totitle'.
8937         * modules/unicase/u32-totitle-tests: New file.
8938         * tests/unicase/test-u32-totitle.c: New file.
8939
8940         Tests for module 'unicase/u16-totitle'.
8941         * modules/unicase/u16-totitle-tests: New file.
8942         * tests/unicase/test-u16-totitle.c: New file.
8943
8944         Tests for module 'unicase/u8-totitle'.
8945         * modules/unicase/u8-totitle-tests: New file.
8946         * tests/unicase/test-u8-totitle.c: New file.
8947
8948         New module 'unicase/u32-totitle'.
8949         * lib/unicase/u32-totitle.c: New file.
8950         * modules/unicase/u32-totitle: New file.
8951
8952         New module 'unicase/u16-totitle'.
8953         * lib/unicase/u16-totitle.c: New file.
8954         * modules/unicase/u16-totitle: New file.
8955
8956         New module 'unicase/u8-totitle'.
8957         * lib/unicase/u8-totitle.c: New file.
8958         * lib/unicase/u-totitle.h: New file.
8959         * modules/unicase/u8-totitle: New file.
8960
8961         Tests for module 'unicase/u32-tolower'.
8962         * modules/unicase/u32-tolower-tests: New file.
8963         * tests/unicase/test-u32-tolower.c: New file.
8964
8965         Tests for module 'unicase/u16-tolower'.
8966         * modules/unicase/u16-tolower-tests: New file.
8967         * tests/unicase/test-u16-tolower.c: New file.
8968
8969         Tests for module 'unicase/u8-tolower'.
8970         * modules/unicase/u8-tolower-tests: New file.
8971         * tests/unicase/test-u8-tolower.c: New file.
8972
8973         New module 'unicase/u32-tolower'.
8974         * lib/unicase/u32-tolower.c: New file.
8975         * modules/unicase/u32-tolower: New file.
8976
8977         New module 'unicase/u16-tolower'.
8978         * lib/unicase/u16-tolower.c: New file.
8979         * modules/unicase/u16-tolower: New file.
8980
8981         New module 'unicase/u8-tolower'.
8982         * lib/unicase/u8-tolower.c: New file.
8983         * modules/unicase/u8-tolower: New file.
8984
8985         Tests for module 'unicase/u32-toupper'.
8986         * modules/unicase/u32-toupper-tests: New file.
8987         * tests/unicase/test-u32-toupper.c: New file.
8988
8989         Tests for module 'unicase/u16-toupper'.
8990         * modules/unicase/u16-toupper-tests: New file.
8991         * tests/unicase/test-u16-toupper.c: New file.
8992
8993         Tests for module 'unicase/u8-toupper'.
8994         * modules/unicase/u8-toupper-tests: New file.
8995         * tests/unicase/test-u8-toupper.c: New file.
8996
8997         New module 'unicase/u32-toupper'.
8998         * lib/unicase/u32-toupper.c: New file.
8999         * modules/unicase/u32-toupper: New file.
9000
9001         New module 'unicase/u16-toupper'.
9002         * lib/unicase/u16-toupper.c: New file.
9003         * modules/unicase/u16-toupper: New file.
9004
9005         New module 'unicase/u8-toupper'.
9006         * lib/unicase/u8-toupper.c: New file.
9007         * modules/unicase/u8-toupper: New file.
9008
9009         New module 'unicase/u32-casemap'.
9010         * lib/unicase/u32-casemap.c: New file.
9011         * modules/unicase/u32-casemap: New file.
9012
9013         New module 'unicase/u16-casemap'.
9014         * lib/unicase/u16-casemap.c: New file.
9015         * modules/unicase/u16-casemap: New file.
9016
9017         New module 'unicase/u8-casemap'.
9018         * lib/unicase/unicasemap.h: New file.
9019         * lib/unicase/u8-casemap.c: New file.
9020         * lib/unicase/u-casemap.h: New file.
9021         * modules/unicase/u8-casemap: New file.
9022
9023         New module 'unicase/special-casing'.
9024         * lib/unicase/special-casing.h: New file.
9025         * lib/unicase/special-casing.c: New file.
9026         * lib/unicase/special-casing-table.gperf: New file, generated by
9027         gen-uni-tables.c.
9028         * modules/unicase/special-casing: New file.
9029
9030         Tests for module 'unicase/locale-language'.
9031         * modules/unicase/locale-language-tests: New file.
9032         * tests/unicase/test-locale-language.sh: New file.
9033         * tests/unicase/test-locale-language.c: New file.
9034
9035         New module 'unicase/locale-language'.
9036         * lib/unicase/locale-language.c: New file.
9037         * lib/unicase/locale-languages.gperf: New file.
9038         * modules/unicase/locale-language: New file.
9039
9040         Generate more tables for case conversion and case folding.
9041         * lib/gen-uni-tables.c (SCC_*): New enum items.
9042         (struct special_casing_rule): New type.
9043         (casing_rules, num_casing_rules, allocated_casing_rules): New
9044         variables.
9045         (add_casing_rule, fill_casing_rules): New functions.
9046         (struct casefold_rule): New type.
9047         (casefolding_rules, num_casefolding_rules,
9048         allocated_casefolding_rules): New variables.
9049         (fill_casefolding_rules): New function.
9050         (unicode_casefold): New variable.
9051         (to_casefold, redistribute_casefolding_rules, compare_casing_rules,
9052         sort_casing_rules, output_casing_rules): New functions.
9053         (main): Accept to more arguments: SpecialCasing.txt and
9054         CaseFolding.txt. Invoke fill_casing_rules, fill_casefolding_rules,
9055         redistribute_casefolding_rules, sort_casing_rules, output_casing_rules.
9056         Output mapping for casefolding.
9057
9058         * lib/unicase.h: Include stdbool.h, uninorm.h.
9059         (u8_toupper, u16_toupper, u32_toupper, u8_tolower, u16_tolower,
9060         u32_tolower, u8_totitle, u16_totitle, u32_totitle): Add nf argument.
9061         (u8_casefold, u16_casefold, u32_casefold): Add iso639_language and nf
9062         arguments.
9063         (u8_casecmp, u16_casecmp, u32_casecmp): Add iso639_language, nf,
9064         resultp arguments.
9065         (u8_casexfrm, u16_casexfrm, u32_casexfrm): New declarations.
9066         (u8_casecoll, u16_casecoll, u32_casecoll): Add iso639_language, nf,
9067         resultp arguments.
9068         (u8_is_uppercase, u16_is_uppercase, u32_is_uppercase, u8_is_lowercase,
9069         u16_is_lowercase, u32_is_lowercase, u8_is_titlecase, u16_is_titlecase,
9070         u32_is_titlecase, u8_is_casefolded, u16_is_casefolded,
9071         u32_is_casefolded, u8_is_cased, u16_is_cased, u32_is_cased): New
9072         declarations.
9073         * modules/unicase/base (Depends-on): Add uninorm/base, stdbool.
9074
9075 2009-03-08  Bruno Haible  <bruno@clisp.org>
9076
9077         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp, u8_normcoll,
9078         u16_normcoll, u32_normcoll): Rename argument 'result' to 'resultp'.
9079         * lib/uninorm/u-normcmp.h (FUNC): Likewise.
9080         * lib/uninorm/u-normcoll.h (FUNC): Likewise.
9081
9082 2009-03-07  Bruno Haible  <bruno@clisp.org>
9083
9084         Adjust u*_normcmp, u*_normcoll API.
9085         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp, u8_normcoll,
9086         u16_normcoll, u32_normcoll): Change failure conventions.
9087         * lib/uninorm/u-normcmp.h (FUNC): Upon failure, store the error code in
9088         errno and return -1.
9089         * lib/uninorm/u-normcoll.h (FUNC): Likewise.
9090
9091 2009-03-07  Bruno Haible  <bruno@clisp.org>
9092
9093         Tests for module 'uninorm/u32-normcoll'.
9094         * modules/uninorm/u32-normcoll-tests: New file.
9095         * tests/uninorm/test-u32-normcoll.c: New file.
9096
9097         Tests for module 'uninorm/u16-normcoll'.
9098         * modules/uninorm/u16-normcoll-tests: New file.
9099         * tests/uninorm/test-u16-normcoll.c: New file.
9100
9101         Tests for module 'uninorm/u8-normcoll'.
9102         * modules/uninorm/u8-normcoll-tests: New file.
9103         * tests/uninorm/test-u8-normcoll.c: New file.
9104
9105 2009-03-07  Bruno Haible  <bruno@clisp.org>
9106
9107         * tests/uninorm/test-u32-normcmp.h: New file, extracted from
9108         tests/uninorm/test-u32-normcmp.c.
9109         * tests/uninorm/test-u32-normcmp.c: Include it.
9110         (test_nonascii): New function, extracted from main. Add some more
9111         tests.
9112         (main): Invoke test_ascii and test_nonascii.
9113         * modules/uninorm/u32-normcmp-tests (Files): Add
9114         tests/uninorm/test-u32-normcmp.h.
9115         (Depends-on): Remove uninorm/u32-normcmp.
9116
9117         * tests/uninorm/test-u16-normcmp.h: New file, extracted from
9118         tests/uninorm/test-u16-normcmp.c.
9119         * tests/uninorm/test-u16-normcmp.c: Include it.
9120         (test_nonascii): New function, extracted from main. Add some more
9121         tests.
9122         (main): Invoke test_ascii and test_nonascii.
9123         * modules/uninorm/u16-normcmp-tests (Files): Add
9124         tests/uninorm/test-u16-normcmp.h.
9125         (Depends-on): Remove uninorm/u16-normcmp.
9126
9127         * tests/uninorm/test-u8-normcmp.h: New file, extracted from
9128         tests/uninorm/test-u8-normcmp.c.
9129         * tests/uninorm/test-u8-normcmp.c: Include it.
9130         (test_nonascii): New function, extracted from main. Add some more
9131         tests.
9132         (main): Invoke test_ascii and test_nonascii.
9133         * modules/uninorm/u8-normcmp-tests (Files): Add
9134         tests/uninorm/test-u8-normcmp.h.
9135         (Depends-on): Remove uninorm/u8-normcmp.
9136
9137 2009-03-07  Bruno Haible  <bruno@clisp.org>
9138
9139         New module 'uninorm/u32-normcoll'.
9140         * lib/uninorm/u32-normcoll.c: New file.
9141         * modules/uninorm/u32-normcoll: New file.
9142
9143         New module 'uninorm/u16-normcoll'.
9144         * lib/uninorm/u16-normcoll.c: New file.
9145         * modules/uninorm/u16-normcoll: New file.
9146
9147         New module 'uninorm/u8-normcoll'.
9148         * lib/uninorm.h (u8_normcoll, u16_normcoll, u32_normcoll): New
9149         declarations.
9150         * lib/uninorm/u8-normcoll.c: New file.
9151         * lib/uninorm/u-normcoll.h: New file.
9152         * modules/uninorm/u8-normcoll: New file.
9153
9154         New module 'uninorm/u32-normxfrm'.
9155         * lib/uninorm/u32-normxfrm.c: New file.
9156         * modules/uninorm/u32-normxfrm: New file.
9157
9158         New module 'uninorm/u16-normxfrm'.
9159         * lib/uninorm/u16-normxfrm.c: New file.
9160         * modules/uninorm/u16-normxfrm: New file.
9161
9162         New module 'uninorm/u8-normxfrm'.
9163         * lib/uninorm.h (u8_normxfrm, u16_normxfrm, u32_normxfrm): New
9164         declarations.
9165         * lib/uninorm/u8-normxfrm.c: New file.
9166         * lib/uninorm/u-normxfrm.h: New file.
9167         * modules/uninorm/u8-normxfrm: New file.
9168
9169 2009-03-07  Bruno Haible  <bruno@clisp.org>
9170
9171         * modules/uninorm/u8-normcmp (Depends-on): Add uninorm/base.
9172         * modules/uninorm/u16-normcmp (Depends-on): Likewise.
9173         * modules/uninorm/u32-normcmp (Depends-on): Likewise.
9174
9175 2009-03-07  Bruno Haible  <bruno@clisp.org>
9176
9177         New module 'memxfrm'.
9178         * lib/memxfrm.h: New file.
9179         * lib/memxfrm.c: New file.
9180         * modules/memxfrm: New file.
9181
9182 2009-03-07  Bruno Haible  <bruno@clisp.org>
9183
9184         New module 'memcmp2'.
9185         * lib/memcmp2.h: New file.
9186         * lib/memcmp2.c: New file.
9187         * modules/memcmp2: New file.
9188
9189 2009-03-07  Bruno Haible  <bruno@clisp.org>
9190
9191         Tests for module 'uninorm/decomposing-form'.
9192         * modules/uninorm/decomposing-form-tests: New file.
9193         * tests/uninorm/test-decomposing-form.c: New file.
9194
9195         New module 'uninorm/decomposing-form'.
9196         * lib/uninorm.h (uninorm_decomposing_form): New declaration.
9197         * lib/uninorm/normalize-internal.h (struct unicode_normalization_form):
9198         Add 'decomposing_variant' field.
9199         * lib/uninorm/decomposing-form.c: New file.
9200         * lib/uninorm/nfc.c (uninorm_nfc): Update.
9201         * lib/uninorm/nfd.c (uninorm_nfd): Update.
9202         * lib/uninorm/nfkc.c (uninorm_nfkc): Update.
9203         * lib/uninorm/nfkd.c (uninorm_nfkd): Update.
9204         * modules/uninorm/decomposing-form: New file.
9205         * modules/uninorm/nfc (Depends-on): Add uninorm/nfd.
9206         * modules/uninorm/nfkc (Depends-on): Add uninorm/nfkd.
9207
9208 2009-03-07  Bruno Haible  <bruno@clisp.org>
9209
9210         * lib/uninorm/u-normcmp.h (FUNC): Use stack=allocated buffers for small
9211         strings.
9212
9213 2009-03-06  Bruno Haible  <bruno@clisp.org>
9214
9215         Tests for module 'uninorm/u32-normcmp'.
9216         * tests/uninorm/test-u32-normcmp.c: New file.
9217         * modules/uninorm/u32-normcmp-tests: New file.
9218
9219         Tests for module 'uninorm/u16-normcmp'.
9220         * tests/uninorm/test-u16-normcmp.c: New file.
9221         * modules/uninorm/u16-normcmp-tests: New file.
9222
9223         Tests for module 'uninorm/u8-normcmp'.
9224         * tests/uninorm/test-u8-normcmp.c: New file.
9225         * modules/uninorm/u8-normcmp-tests: New file.
9226
9227         New module 'uninorm/u32-normcmp'.
9228         * lib/uninorm/u32-normcmp.c: New file.
9229         * modules/uninorm/u32-normcmp: New file.
9230
9231         New module 'uninorm/u16-normcmp'.
9232         * lib/uninorm/u16-normcmp.c: New file.
9233         * modules/uninorm/u16-normcmp: New file.
9234
9235         New module 'uninorm/u8-normcmp'.
9236         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp): New
9237         declarations.
9238         * lib/uninorm/u8-normcmp.c: New file.
9239         * lib/uninorm/u-normcmp.h: New file.
9240         * modules/uninorm/u8-normcmp: New file.
9241
9242 2009-03-06  Bruno Haible  <bruno@clisp.org>
9243
9244         * lib/w32spawn.h (dup_noinherit): Add cast, to avoid gcc warning.
9245         Reported by Eric Blake.
9246
9247 2009-03-06  Eric Blake  <ebb9@byu.net>
9248             Bruno Haible  <bruno@clisp.org>
9249
9250         * lib/spawni.c (__spawni) [WIN32_NATIVE]: Define as a stub.
9251         * modules/posix_spawn-tests (configure.ac): Define POSIX_SPAWN_PORTED
9252         condition.
9253         (Makefile.am): Do nothing if POSIX_SPAWN_PORTED is false.
9254         * modules/posix_spawnp-tests (configure.ac): Define POSIX_SPAWN_PORTED
9255         condition.
9256         (Makefile.am): Do nothing if POSIX_SPAWN_PORTED is false.
9257
9258 2009-03-06  Eric Blake  <ebb9@byu.net>
9259
9260         * lib/execute.c (execute) [WIN32_NATIVE]: Cast arguments of spawnvpe,
9261         to avoid compiler warnings.
9262         * lib/pipe.c (create_pipe) [WIN32_NATIVE]: Likewise.
9263
9264 2009-03-05  Bruno Haible  <bruno@clisp.org>
9265
9266         * tests/test-ftell.c (main): Disable test beyond end of file on
9267         FreeMiNT.
9268         Patch by Alan Hourihane <alanh@fairlite.co.uk>.
9269
9270 2009-03-05  Kamil Dudka  <kdudka@redhat.com>
9271
9272         * lib/filevercmp.c: Move hidden files up in ordering.
9273         * tests/test-filevercmp.c: Add tests for hidden files.
9274
9275 2009-03-04  Bruno Haible  <bruno@clisp.org>
9276
9277         * modules/visibility (Makefile.am): Augment AM_CFLAGS.
9278         * gnulib-tool (func_emit_lib_Makefile_am): Emit initialization of
9279         AM_CFLAGS.
9280         Reported by Simon Josefsson.
9281
9282 2009-03-03  Bruno Haible  <bruno@clisp.org>
9283
9284         * doc/visibility.texi: Recommend to use HAVE_VISIBILITY as a C macro.
9285         Reported by Simon Josefsson.
9286
9287         * doc/ld-version-script.texi: Update node reference.
9288
9289 2009-03-03  Bruno Haible  <bruno@clisp.org>
9290
9291         * modules/visibility (License): Change to 'unlimited'.
9292         Suggested by Simon Josefsson.
9293
9294 2009-03-03  Jim Meyering  <meyering@redhat.com>
9295
9296         unlinkdir: cannot_unlink_dir may modify process state
9297         * lib/unlinkdir.c (cannot_unlink_dir): Add a comment warning that
9298         it's neither thread-safe nor appropriate for use in a library.
9299
9300 2009-03-03  Eric Blake  <ebb9@byu.net>
9301
9302         test-closein: silence test under Darwin
9303         * tests/test-closein.sh: Ignore stderr from cat, since we don't
9304         care if it dies from EPIPE or EBADF.
9305
9306 2009-03-03  Bruno Haible  <bruno@clisp.org>
9307
9308         * doc/gnulib.texi: Include visibility.texi and ld-version-script.texi
9309         earlier.
9310         * doc/visibility.texi: Fix @node and @section.
9311
9312 2009-03-03  Simon Josefsson  <simon@josefsson.org>
9313
9314         * doc/gnulib.texi: Link to sections for ld version script and
9315         visibility.
9316         * doc/visibility.texi: Add @node and @section.
9317         * modules/ld-version-script: New module.
9318         * m4/ld-version-script.m4: New file.
9319         * doc/ld-version-script.texi: New file.
9320
9321 2009-03-02  David Lutterkort  <lutter@redhat.com>
9322
9323         * lib/safe-alloc.h (__GNUC_PREREQ): New macro.
9324         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
9325
9326 2009-03-02  Bruno Haible  <bruno@clisp.org>
9327
9328         * doc/visibility.texi: Mention libtool's -export-symbols option.
9329
9330 2009-03-02  Jim Meyering  <meyering@redhat.com>
9331
9332         announce-gen: new option: --no-print-checksums
9333         * build-aux/announce-gen (usage): Describe it.
9334         (print_checksums): Print a newline here, not in the [*] footnote.
9335         (main): Honor it.
9336
9337 2009-03-01  Bruno Haible  <bruno@clisp.org>
9338
9339         Use socklen_t in the native Windows replacements prototypes.
9340         * lib/sys_socket.in.h (rpl_getsockopt, rpl_setsockopt): Use socklen_t
9341         instead of 'int'.
9342         * lib/getsockopt.c (rpl_getsockopt): Likewise.
9343         * lib/setsockopt.c (rpl_setsockopt): Likewise.
9344         * modules/getsockopt (Depends-on): Add socklen.
9345         * modules/setsockopt (Depends-on): Add socklen.
9346
9347 2009-03-01  Bruno Haible  <bruno@clisp.org>
9348
9349         * gnulib-tool (sed): Do alias as "sed --posix" if sed's version is at
9350         least 4.2.
9351
9352 2009-03-01  Eric Blake  <ebb9@byu.net>
9353             Bruno Haible  <bruno@clisp.org>
9354
9355         * lib/wait-process.h (wait_subprocess): Describe effect of termsigp on
9356         error messages.
9357         * lib/wait-process.c (wait_subprocess): Omit error message about
9358         deadly signal sent to the child of termsigp != NULL.
9359
9360 2009-03-01  Eric Blake  <ebb9@byu.net>
9361
9362         * lib/wait-process.c (wait_subprocess): Remove unnecessary cast.
9363
9364 2009-03-01  Bruno Haible  <bruno@clisp.org>
9365
9366         Avoid a gcc warning.
9367         * tests/test-sched.c (b): Make global.
9368         Reported by Eric Blake.
9369
9370 2009-01-19  Martin Lambers  <marlam@marlam.de>
9371
9372         Provide POSIX semantics for socket timeout options on W32.
9373         * lib/setsockopt.c: Convert struct timeval to milliseconds on W32.
9374         * lib/getsockopt.c: Convert milliseconds to struct timeval on W32.
9375         * modules/setsockopt: Depend on sys_time module for struct timeval.
9376         * modules/getsockopt: Depend on sys_time module for struct timeval.
9377
9378 2009-03-01  Simon Josefsson  <simon@josefsson.org>
9379
9380         * lib/gai_strerror.c (values): Use EAI_INPROGRESS instead of
9381         __USE_GNU, for consistency with netdb.in.h.
9382         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
9383
9384 2009-03-01  Bruno Haible  <bruno@clisp.org>
9385
9386         More support for FreeMiNT.
9387         * lib/fseeko.c (rpl_fseeko): Complete last commit.
9388         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
9389
9390 2009-03-01  Bruno Haible  <bruno@clisp.org>
9391
9392         More support for FreeMiNT.
9393         * lib/fpurge.c (fpurge): Correct last commit.
9394         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
9395
9396 2009-03-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9397
9398         Fix unportable awk script in vc-list-files.
9399         * build-aux/vc-list-files: In the replacement awk script, use
9400         substr with a second argument of 1, not zero.
9401         Report by Simon Josefsson.
9402
9403 2009-02-28  Bruno Haible  <bruno@clisp.org>
9404
9405         More support for FreeMiNT.
9406         * lib/freading.c (freading) [__MINT__]: Use new macros that were added
9407         to FreeMiNT today.
9408         * lib/fwriting.c (fwriting): Likewise.
9409         Based on patch by Alan Hourihane <alanh@fairlite.co.uk>.
9410
9411 2009-02-28  Bruno Haible  <bruno@clisp.org>
9412
9413         * tests/test-freadseek.c (main): Disable test beyond end of file on
9414         FreeMiNT.
9415         * tests/test-ftello.c (main): Likewise.
9416         Patch by Alan Hourihane <alanh@fairlite.co.uk>.
9417
9418 2009-02-28  Bruno Haible  <bruno@clisp.org>
9419
9420         Add tentative support for FreeMiNT.
9421         * lib/fbufmode.c (fbufmode) [__MINT__]: Add conditional code.
9422         * lib/fpurge.c (fpurge): Likewise.
9423         * lib/freadable.c (freadable): Likewise.
9424         * lib/freading.c (freading): Likewise.
9425         * lib/freadptr.c (freadptr): Likewise.
9426         * lib/freadseek.c (freadptrinc): Likewise.
9427         * lib/fseeko.c (rpl_fseeko): Likewise.
9428         * lib/fseterr.c (fseterr): Likewise.
9429         * lib/fwritable.c (fwritable): Likewise.
9430         * lib/fwriting.c (fwriting): Likewise.
9431         * lib/freadahead.c (freadahead): Likewise, based on code by Alan
9432         Hourihane.
9433         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
9434
9435 2009-02-28  Bruno Haible  <bruno@clisp.org>
9436
9437         * lib/wait-process.h (wait_subprocess): Clarify restriction regarding
9438         SIGCHLD.
9439         Reported by Jim Meyering.
9440
9441 2009-02-28  Bruno Haible  <bruno@clisp.org>
9442
9443         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Separate the two first tests.
9444         Mention the results of these tests on various platforms.
9445         * doc/posix-functions/fprintf.texi: Mention platforms in canonical
9446         order.
9447         * doc/posix-functions/printf.texi: Likewise.
9448         * doc/posix-functions/snprintf.texi: Likewise.
9449         * doc/posix-functions/sprintf.texi: Likewise.
9450         * doc/posix-functions/vfprintf.texi: Likewise.
9451         * doc/posix-functions/vprintf.texi: Likewise.
9452         * doc/posix-functions/vsnprintf.texi: Likewise.
9453         * doc/posix-functions/vsprintf.texi: Likewise.
9454         * doc/glibc-functions/obstack_printf.texi: Likewise.
9455         * doc/glibc-functions/obstack_vprintf.texi: Likewise.
9456
9457 2009-02-28  Bruno Haible  <bruno@clisp.org>
9458
9459         * build-aux/po/Makefile.in.in: Update from GNU gettext 0.17.
9460         Reported by Loïc Minier <lool@dooz.org>.
9461
9462 2009-02-27  Bruno Haible  <bruno@clisp.org>
9463
9464         * gnulib-tool (func_import): Make the sed expression used to create the
9465         sed script for updating the .gitignore file POSIX compliant.
9466         Reported by Eric Blake.
9467
9468 2009-02-27  Bruno Haible  <bruno@clisp.org>
9469
9470         * gnulib-tool (sed): Don't alias as "sed --posix".
9471         Reported by Eric Blake.
9472
9473 2009-02-27  Bruno Haible  <bruno@clisp.org>
9474
9475         Avoid test link errors.
9476         * modules/uninorm/nfc-tests (test_u32_nfc_big_LDADD): New variable.
9477         * modules/uninorm/nfd-tests (test_u32_nfd_big_LDADD): New variable.
9478         * modules/uninorm/nfkc-tests (test_u32_nfkc_big_LDADD): New variable.
9479         * modules/uninorm/nfkd-tests (test_u32_nfkd_big_LDADD): New variable.
9480         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
9481
9482 2009-02-27  Bruno Haible  <bruno@clisp.org>
9483
9484         Avoid spurious "(cached)" in configure output.
9485         * m4/gnulib-common.m4 (gl_CACHE_VAL_SILENT): New macro.
9486         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Use it instead of AC_CACHE_VAL.
9487         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
9488         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
9489         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
9490         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Likewise.
9491         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
9492         * m4/stdarg.m4 (gl_STDARG_H): Likewise.
9493         Reported by Eric Blake.
9494
9495 2009-02-27  Eric Blake  <ebb9@byu.net>
9496
9497         printf: fix regression in previous patch
9498         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Fix compilation error.
9499
9500 2009-02-27  Bruno Haible  <bruno@clisp.org>
9501
9502         * lib/inttypes.in.h: Test merely whether _LP64 is defined, not its
9503         value.
9504         * lib/stdint.in.h: Likewise.
9505         Suggested by Eric Blake. Reported by Peter Bray <pdb_ml@yahoo.com.au>.
9506
9507 2009-02-27  Eric Blake  <ebb9@byu.net>
9508
9509         doc: mention more functions added in cygwin 1.7.0
9510         * doc/posix-functions/mbsnrtowcs.texi: Mention recent cygwin 1.7.0
9511         addition.
9512         * doc/posix-functions/open_wmemstream.texi: Likewise.
9513         * doc/posix-functions/wcsnlen.texi: Likewise.
9514         * doc/posix-functions/wcsnrtombs.texi: Likewise.
9515         * doc/posix-functions/wcstod.texi: Likewise.
9516         * doc/posix-functions/wcstof.texi: Likewise.
9517         * doc/posix-functions/wcstoimax.texi: Likewise.
9518         * doc/posix-functions/wcstok.texi: Likewise.
9519         * doc/posix-functions/wcstoumax.texi: Likewise.
9520
9521         Detect bug in cygwin 1.5.x *printf on 1-character %ls.
9522         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Enhance filter.
9523         * doc/posix-functions/fprintf.texi: Update.
9524         * doc/posix-functions/printf.texi: Update.
9525         * doc/posix-functions/snprintf.texi: Update.
9526         * doc/posix-functions/sprintf.texi: Update.
9527         * doc/posix-functions/vfprintf.texi: Update.
9528         * doc/posix-functions/vprintf.texi: Update.
9529         * doc/posix-functions/vsnprintf.texi: Update.
9530         * doc/posix-functions/vsprintf.texi: Update.
9531         * doc/glibc-functions/obstack_printf.texi: Update.
9532         * doc/glibc-functions/obstack_vprintf.texi: Update.
9533
9534 2009-02-26  Eric Blake  <ebb9@byu.net>
9535
9536         avoid gcc 3.4.3 bug on long double NaN on Irix 6.5
9537         * tests/nan.h (NaNl): Rewrite as function on Irix, to avoid
9538         compilation bug by using runtime conversion.
9539         * m4/isfinite.m4 (gl_ISFINITE): Likewise.
9540         * m4/isnanl.m4 (gl_FUNC_ISNANL): Likewise.
9541         * modules/ceill-tests (Files): Use nan.h.
9542         * modules/floorl-tests (Files): Likewise.
9543         * modules/frexpl-tests (Files): Likewise.
9544         * modules/isnanl-tests (Files): Likewise.
9545         * modules/ldexpl-tests (Files): Likewise.
9546         * modules/roundl-tests (Files): Likewise.
9547         * modules/truncl-tests (Files): Likewise.
9548         * tests/test-ceill.c (main): Use a working NaN.
9549         * tests/test-floorl.c (main): Likewise.
9550         * tests/test-frexpl.c (main): Likewise.
9551         * tests/test-isnan.c (test_long_double): Likewise.
9552         * tests/test-isnanl.h (main): Likewise.
9553         * tests/test-ldexpl.h (main): Likewise.
9554         * tests/test-roundl.h (main): Likewise.
9555         * tests/test-truncl.h (main): Likewise.
9556         See http://lists.gnu.org/archive/html/bug-gnulib/2009-02/msg00190.html.
9557
9558 2009-02-26  Eric Blake  <ebb9@byu.net>
9559             Bruno Haible  <bruno@clisp.org>
9560
9561         Work around a *printf bug with %ls on Solaris.
9562         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Also test whether, when a
9563         precision is specified, sprintf stops converting the wide string
9564         argument when the number of bytes that have been produced by this
9565         conversion equals or exceeds the precision.
9566         * doc/posix-functions/fprintf.texi: Update.
9567         * doc/posix-functions/printf.texi: Update.
9568         * doc/posix-functions/snprintf.texi: Update.
9569         * doc/posix-functions/sprintf.texi: Update.
9570         * doc/posix-functions/vfprintf.texi: Update.
9571         * doc/posix-functions/vprintf.texi: Update.
9572         * doc/posix-functions/vsnprintf.texi: Update.
9573         * doc/posix-functions/vsprintf.texi: Update.
9574         * doc/glibc-functions/obstack_printf.texi: Update.
9575         * doc/glibc-functions/obstack_vprintf.texi: Update.
9576
9577 2009-02-26  Eric Blake  <ebb9@byu.net>
9578
9579         stdlib: favor compiler check of random.h
9580         * m4/stdlib_h.m4 (gl_STDLIB_H): Skip preprocessor check.  Needed
9581         to avoid an ObjC random.h installed by Swarm.
9582
9583 2009-02-26  Bruno Haible  <bruno@clisp.org>
9584
9585         Work around *printf bug with %g directive and 0.0 on HP-UX 10.20.
9586         * m4/printf.m4 (gl_PRINTF_INFINITE): Also test for %g output of -0.0.
9587         Reported by Gary V. Vaughan <gary@gnu.org>.
9588
9589 2009-02-26  Bruno Haible  <bruno@clisp.org>
9590
9591         Fix *printf behaviour regarding the %ls directive.
9592         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): New macro.
9593         * lib/vasnprintf.c (local_wcslen, VASNPRINTF): Handle
9594         NEED_PRINTF_DIRECTIVE_LS.
9595         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_LS): New macro.
9596         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
9597         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
9598         gl_PREREQ_VASNPRINTF_DIRECTIVE_LS and test its result. Invoke
9599         gl_PREREQ_VASNPRINTF_DIRECTIVE_LS.
9600         * m4/dprintf-posix.m4 (gl_FUNC_DPRINTF_POSIX): Likewise.
9601         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX): Likewise.
9602         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
9603         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
9604         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
9605         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
9606         * m4/vdprintf-posix.m4 (gl_FUNC_VDPRINTF_POSIX): Likewise.
9607         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
9608         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
9609         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
9610         * doc/posix-functions/fprintf.texi: Update.
9611         * doc/posix-functions/printf.texi: Update.
9612         * doc/posix-functions/snprintf.texi: Update.
9613         * doc/posix-functions/sprintf.texi: Update.
9614         * doc/posix-functions/vfprintf.texi: Update.
9615         * doc/posix-functions/vprintf.texi: Update.
9616         * doc/posix-functions/vsnprintf.texi: Update.
9617         * doc/posix-functions/vsprintf.texi: Update.
9618         * doc/glibc-functions/obstack_printf.texi: Update.
9619         * doc/glibc-functions/obstack_vprintf.texi: Update.
9620         Reported by Eric Blake.
9621
9622 2009-02-25  Bruno Haible  <bruno@clisp.org>
9623
9624         * m4/mbrtowc.m4 (gl_MBRTOWC_NUL_RETVAL): Update guess for Solaris 8
9625         with known value.
9626         Reported by Gary V. Vaughan <gary@gnu.org>.
9627
9628 2009-02-25  Bruno Haible  <bruno@clisp.org>
9629
9630         Work around mbrtowc bug in zh_CN.GB18030 locale on Solaris 8.
9631         * m4/mbrtowc.m4 (gl_MBRTOWC_SANITYCHECK): New macro.
9632         (gl_MBSTATE_T_BROKEN): Invoke it. Replace mbstate_t when it says "no".
9633         * doc/posix-functions/mbrtowc.texi: Document the Solaris 8 bug.
9634         Reported by Gary V. Vaughan <gary@gnu.org>.
9635
9636 2009-02-25  Bruno Haible  <bruno@clisp.org>
9637
9638         Work around broken INT8_MAX, UINT8_MAX etc. values on HP-UX 11.23.
9639         * m4/stdint.m4 (gl_STDINT_H): Also check whether the expansions of
9640         INT8_MAX, UINT8_MAX etc. contain casts to elementary types.
9641         * doc/posix-headers/stdint.texi: Mention the HP-UX bug.
9642         Reported by Gary V. Vaughan <gary@gnu.org>.
9643
9644 2009-02-25  Eric Blake  <ebb9@byu.net>
9645
9646         tests: skip fseek/ftell tests if ungetc is broken
9647         * m4/ungetc.m4: New file.
9648         * modules/fseek-tests: Split test, so ungetc dependency is
9649         separate from rest of test.
9650         * modules/fseeko-tests: Likewise.
9651         * modules/ftell-tests: Likewise.
9652         * modules/ftello-tests: Likewise.
9653         * tests/test-fseek.c (main): Isolate ungetc dependency.
9654         * tests/test-fseeko.c (main): Likewise.
9655         * tests/test-ftell.c (main): Likewise.
9656         * tests/test-ftello.c (main): Likewise.
9657         * tests/test-fseek2.sh: New file.
9658         * tests/test-fseeko2.sh: Likewise.
9659         * tests/test-ftell2.sh: Likewise.
9660         * tests/test-ftello2.sh: Likewise.
9661
9662 2009-02-25  OndÅ™ej Vašík  <ovasik@redhat.com>
9663
9664         test-getaddrinfo: fix usage of skip return code 77
9665         * tests/test-gettaddrinfo.c: Return skip code 77 only
9666         for first occurance of skip (4x77 is not 77)
9667
9668 2009-02-25  Gary V. Vaughan  <gary@gnu.org>
9669
9670         strtod: avoid C99 decl-after-statement
9671         * m4/strtod.m4 (gl_FUNC_STRTOD): Rearrange declaration.
9672
9673 2009-02-24  Eric Blake  <ebb9@byu.net>
9674
9675         strtod: detect HP-UX 11.31 bug
9676         * m4/strtod.m4 (gl_FUNC_STRTOD): Detect errno handling bug.
9677         Reported by Gary V. Vaughan.
9678
9679 2009-02-23  Bruno Haible  <bruno@clisp.org>
9680
9681         Fix invalid read past end of memory block.
9682         * lib/vasnprintf.c (DCHAR_SET): Define.
9683         (local_wcslen): Define only when needed.
9684         (local_strnlen, local_wcsnlen): New functions.
9685         (VASNPRINTF) [!USE_SNPRINTF && HAVE_WCHAR_T]: Implement the %s and %ls
9686         directives that involve a conversion ourselves.
9687         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for strnlen,
9688         wcsnlen, mbrtowc, wcrtomb.
9689         * tests/test-vasnprintf-posix.c (test_function): Add tests for %.*s.
9690         * tests/test-vasprintf-posix.c (test_function): Likewise.
9691         * tests/test-snprintf-posix.h (test_function): Likewise.
9692         * tests/test-sprintf-posix.h (test_function): Likewise.
9693         Reported by Ben Pfaff <blp@cs.stanford.edu>.
9694
9695 2009-02-22  Bruno Haible  <bruno@clisp.org>
9696
9697         Implement new clarified decomposition of Hangul syllables.
9698         * lib/uninorm/decomposition.c (uc_decomposition): For Hangul syllables
9699         of type LTV, return only a pairwise decomposition.
9700         * lib/uninorm/canonical-decomposition.c (uc_canonical_decomposition):
9701         Likewise.
9702         * tests/uninorm/test-decomposition.c (main): Updated expected result.
9703         * tests/uninorm/test-canonical-decomposition.c (main): Likewise.
9704         * tests/uninorm/test-compat-decomposition.c (main): Likewise.
9705
9706 2009-02-22  Bruno Haible  <bruno@clisp.org>
9707
9708         * lib/uninorm/u-normalize-internal.h (FUNC): At the end, handle
9709         zero-length results and shrink excess allocated memory.
9710         * tests/uninorm/test-u8-nfc.c (test_u8_nfc): Check empty string result.
9711         * tests/uninorm/test-u8-nfd.c (test_u8_nfd): Likewise.
9712         * tests/uninorm/test-u8-nfkc.c (test_u8_nfkc): Likewise.
9713         * tests/uninorm/test-u8-nfkd.c (test_u8_nfkd): Likewise.
9714         * tests/uninorm/test-u16-nfc.c (test_u16_nfc): Likewise.
9715         * tests/uninorm/test-u16-nfd.c (test_u16_nfd): Likewise.
9716         * tests/uninorm/test-u16-nfkc.c (test_u16_nfkc): Likewise.
9717         * tests/uninorm/test-u16-nfkd.c (test_u16_nfkd): Likewise.
9718         * tests/uninorm/test-u32-nfc.c (test_u32_nfc): Likewise.
9719         * tests/uninorm/test-u32-nfd.c (test_u32_nfd): Likewise.
9720         * tests/uninorm/test-u32-nfkc.c (test_u32_nfkc): Likewise.
9721         * tests/uninorm/test-u32-nfkd.c (test_u32_nfkd): Likewise.
9722
9723 2009-02-21  Bruno Haible  <bruno@clisp.org>
9724
9725         * doc/gnulib.texi: Include safe-alloc.texi earlier.
9726         * doc/safe-alloc.texi: Terminate sentences with a period. Use two
9727         spaces after a period. Put a space between a macro name and its
9728         argument list. Trivial rewordings.
9729         * lib/safe-alloc.c: Include safe-alloc.h right after config.h.
9730         * tests/test-safe-alloc.c: Likewise. Include stdlib.h.
9731         (main): Return 0 explicitly.
9732
9733 2009-02-21  Bruno Haible  <bruno@clisp.org>
9734
9735         Tests for module 'uninorm/filter'.
9736         * tests/uninorm/test-uninorm-filter-nfc.c: New file.
9737         * modules/uninorm/filter-tests: New file.
9738
9739         New module 'uninorm/filter'.
9740         * lib/uninorm.h (uninorm_filter_create, uninorm_filter_write,
9741         uninorm_filter_flush, uninorm_filter_free): New declarations.
9742         * lib/uninorm/uninorm-filter.c: New file.
9743         * modules/uninorm/filter: New file.
9744
9745 2009-02-21  Bruno Haible  <bruno@clisp.org>
9746
9747         Tests for module 'uninorm/nfkc'.
9748         * tests/uninorm/test-nfkc.c: New file.
9749         * tests/uninorm/test-u8-nfkc.c: New file.
9750         * tests/uninorm/test-u16-nfkc.c: New file.
9751         * tests/uninorm/test-u32-nfkc.c: New file.
9752         * tests/uninorm/test-u32-nfkc-big.sh: New file.
9753         * tests/uninorm/test-u32-nfkc-big.c: New file.
9754         * modules/uninorm/nfkc-tests: New file.
9755
9756         New module 'uninorm/nfkc'.
9757         * lib/uninorm/nfkc.c: New file.
9758         * modules/uninorm/nfkc: New file.
9759
9760         Tests for module 'uninorm/nfkd'.
9761         * tests/uninorm/test-nfkd.c: New file.
9762         * tests/uninorm/test-u8-nfkd.c: New file.
9763         * tests/uninorm/test-u16-nfkd.c: New file.
9764         * tests/uninorm/test-u32-nfkd.c: New file.
9765         * tests/uninorm/test-u32-nfkd-big.sh: New file.
9766         * tests/uninorm/test-u32-nfkd-big.c: New file.
9767         * modules/uninorm/nfkd-tests: New file.
9768
9769         New module 'uninorm/nfkd'.
9770         * lib/uninorm/nfkd.c: New file.
9771         * modules/uninorm/nfkd: New file.
9772
9773         Tests for module 'uninorm/nfc'.
9774         * tests/uninorm/test-nfc.c: New file.
9775         * tests/uninorm/test-u8-nfc.c: New file.
9776         * tests/uninorm/test-u16-nfc.c: New file.
9777         * tests/uninorm/test-u32-nfc.c: New file.
9778         * tests/uninorm/test-u32-nfc-big.sh: New file.
9779         * tests/uninorm/test-u32-nfc-big.c: New file.
9780         * modules/uninorm/nfc-tests: New file.
9781
9782         New module 'uninorm/nfc'.
9783         * lib/uninorm/nfc.c: New file.
9784         * modules/uninorm/nfc: New file.
9785
9786         Tests for module 'uninorm/nfd'.
9787         * tests/uninorm/test-nfd.c: New file.
9788         * tests/uninorm/test-u8-nfd.c: New file.
9789         * tests/uninorm/test-u16-nfd.c: New file.
9790         * tests/uninorm/test-u32-nfd.c: New file.
9791         * tests/uninorm/test-u32-nfd-big.sh: New file.
9792         * tests/uninorm/test-u32-nfd-big.c: New file.
9793         * tests/uninorm/test-u32-normalize-big.h: New file.
9794         * tests/uninorm/test-u32-normalize-big.c: New file.
9795         * tests/uninorm/NormalizationTest.txt: New file, created from
9796         Unicode 5.1.0 NormalizationTest.txt.
9797         * modules/uninorm/nfd-tests: New file.
9798
9799         New module 'uninorm/nfd'.
9800         * lib/uninorm/nfd.c: New file.
9801         * modules/uninorm/nfd: New file.
9802
9803         New module 'uninorm/u32-normalize'.
9804         * lib/uninorm/u32-normalize.c: New file.
9805         * modules/uninorm/u32-normalize: New file.
9806
9807         New module 'uninorm/u16-normalize'.
9808         * lib/uninorm/u16-normalize.c: New file.
9809         * modules/uninorm/u16-normalize: New file.
9810
9811         New module 'uninorm/u8-normalize'.
9812         * lib/uninorm/u8-normalize.c: New file.
9813         * lib/uninorm/normalize-internal.h: New file.
9814         * lib/uninorm/u-normalize-internal.h: New file.
9815         * modules/uninorm/u8-normalize: New file.
9816
9817         New module 'uninorm/decompose-internal'.
9818         * lib/uninorm/decompose-internal.c: New file.
9819         * modules/uninorm/decompose-internal: New file.
9820
9821         Tests for module 'uninorm/composition'.
9822         * tests/uninorm/test-composition.c: New file.
9823         * modules/uninorm/composition-tests: New file.
9824
9825         New module 'uninorm/composition'.
9826         * lib/uninorm/composition.c: New file.
9827         * lib/uninorm/composition-table.gperf: New file, generated by
9828         gen-uni-tables.
9829         * modules/uninorm/composition: New file.
9830
9831         Tests for module 'uninorm/compat-decomposition'.
9832         * tests/uninorm/test-compat-decomposition.c: New file.
9833         * modules/uninorm/compat-decomposition-tests: New file.
9834
9835         New module 'uninorm/compat-decomposition'.
9836         * lib/uninorm/decompose-internal.h: New file.
9837         * lib/uninorm/compat-decomposition.c: New file.
9838         * modules/uninorm/compat-decomposition: New file.
9839
9840         Tests for module 'uninorm/canonical-decomposition'.
9841         * tests/uninorm/test-canonical-decomposition.c: New file.
9842         * modules/uninorm/canonical-decomposition-tests: New file.
9843
9844         New module 'uninorm/canonical-decomposition'.
9845         * lib/uninorm/canonical-decomposition.c: New file.
9846         * modules/uninorm/canonical-decomposition: New file.
9847
9848         Tests for module 'uninorm/decomposition'.
9849         * tests/uninorm/test-decomposition.c: New file.
9850         * modules/uninorm/decomposition-tests: New file.
9851
9852         New module 'uninorm/decomposition'.
9853         * lib/uninorm/decomposition.c: New file.
9854         * modules/uninorm/decomposition: New file.
9855
9856         New module 'uninorm/decomposition-table'.
9857         * lib/uninorm/decomposition-table.h: New file.
9858         * lib/uninorm/decomposition-table.c: New file.
9859         * lib/uninorm/decomposition-table1.h: New file, generated by
9860         gen-uni-tables.
9861         * lib/uninorm/decomposition-table2.h: New file, generated by
9862         gen-uni-tables.
9863         * modules/uninorm/decomposition-table: New file.
9864
9865         * lib/gen-uni-tables.c (MAX_DECOMP_LENGTH): New macro.
9866         (UC_DECOMP_*): New enumeration items.
9867         (get_decomposition): New function.
9868         (struct decomp_table): New type.
9869         (output_decomposition, output_decomposition_tables): New functions.
9870         (unicode_composition_exclusions): New variable.
9871         (fill_composition_exclusions, debug_output_composition_tables): New
9872         functions.
9873         (main): Accept one more argument. Invoke fill_composition_exclusions.
9874         Output decomposition and composition tables.
9875
9876         New module 'uninorm/base'.
9877         * lib/uninorm.h: New file.
9878         * lib/unictype.h: Update comment.
9879         * modules/uninorm/base: New file.
9880
9881 2009-02-21  David Lutterkort  <lutter@redhat.com>
9882
9883         Tests for module 'safe-alloc'.
9884         * tests/test-safe-alloc.c: New file.
9885         * modules/safe-alloc-tests: New file.
9886
9887         New module 'safe-alloc'.
9888         * lib/safe-alloc.h: New file.
9889         * lib/safe-alloc.c: New file.
9890         * m4/safe-alloc.m4: New file.
9891         * modules/safe-alloc: New file.
9892         * doc/safe-alloc.texi: New file.
9893         * doc/gnulib.texi: Include it.
9894         * MODULES.html.sh (Memory management functions <stdlib.h>): Add
9895         safe-alloc.
9896
9897 2009-02-18  Bruno Haible  <bruno@clisp.org>
9898
9899         Fix link error on non-glibc systems.
9900         * modules/uniwbrk/ulc-wordbreaks-tests (test_ulc_wordbreaks_LDADD): New
9901         variable.
9902         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
9903
9904 2009-02-18  Jim Meyering  <meyering@redhat.com>
9905
9906         fts: avoid used-uninitialized error due to recent change
9907         * lib/fts.c (fts_read): Guard uses of the new member,
9908         parent->fts_n_dirs_remaining, since it's not relevant for
9909         the parent of a directory specified on the command-line.
9910
9911 2009-02-17  James Youngman  <jay@gnu.org>
9912             Bruno Haible  <bruno@clisp.org>
9913
9914         * m4/include_next.m4: Reformulate comment.
9915
9916 2009-02-16  Jim Meyering  <meyering@redhat.com>
9917
9918         fts: add #if guards so that the fts_lgpl module still builds
9919         * lib/fts.c: Guard just-added hash-table-using parts with
9920         #if GNULIB_FTS, so as not to break builds of the fts_lgpl module.
9921         Reported by Simon Josefsson.
9922
9923 2009-02-15  Bruno Haible  <bruno@clisp.org>
9924
9925         * modules/array-mergesort-tests: New file.
9926         * tests/test-array-mergesort.c: New file.
9927
9928         New module 'array-mergesort'.
9929         * modules/array-mergesort: New file.
9930         * lib/array-mergesort.h: New file.
9931
9932 2009-02-15  Bruno Haible  <bruno@clisp.org>
9933
9934         Fix 2009-02-07 commit.
9935         * lib/gen-uni-tables.c (output_predicate, output_category,
9936         output_combclass, output_bidi_category, output_decimal_digit,
9937         output_digit, output_numeric, output_mirror, output_scripts,
9938         output_ident_category, output_simple_mapping): Fix format directives.
9939         (output_lbp, output_wbp): Don't convert -1 to a size_t implicitly.
9940
9941 2009-02-15  Albert Chin-A-Young  <china@thewrittenword.com>
9942
9943         * m4/include_next.m4: Update comment about IBM C 9.0/10.1 bug, now that
9944         fixes are available from IBM.
9945
9946 2009-02-13  Jim Meyering  <meyering@redhat.com>
9947
9948         fts: arrange not to stat non-directories in more cases
9949         This makes GNU find (when it doesn't need to stat each file)
9950         *much* more efficient at traversing reiserfs file systems.
9951         * lib/fts_.h (struct ftsent) [fts_n_dirs_remaining]: New member.
9952         (struct FTS) [fts_leaf_optimization_works_ht]: Add member.
9953         * lib/fts.c (fts_close): Free ->fts_leaf_optimization_works_ht.
9954         (S_MAGIC_REISERFS, S_MAGIC_PROC): Define.
9955         (leaf_optimization_applies): New function.
9956         (LCO_hash, LCO_compare): New helper functions.
9957         (link_count_optimize_ok): New function.
9958         (fts_stat): Initialize new member (if dir).
9959         (fts_read): Decrement parent's fts_n_dirs_remaining count if
9960         we've just stat'ed a directory.  Skip the stat call when possible.
9961         ---
9962         Note this AFS-related exchange:
9963         http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=143111
9964         and note find's pioctl call in find/fstype.c.
9965         But that is necessary only if you want to enable the
9966         optimization for AFS, and for now, I don't.
9967
9968         fts: move a function definition "up" (no semantic change)
9969         * lib/fts.c (dirent_inode_sort_may_be_useful): Move definition
9970         "up" to precede upcoming use of a related function.
9971
9972 2009-02-11  Jim Meyering  <meyering@redhat.com>
9973
9974         fts: correct internal computation of nlinks (optimization-related)
9975         * lib/fts.c (fts_build): ISSET(FTS_NOSTAT) has no bearing on
9976         whether the current entry is a directory, so don't test it.
9977
9978 2009-02-10  Bruno Haible  <bruno@clisp.org>
9979
9980         Tests for module 'uniwbrk/ulc-wordbreaks'.
9981         * modules/uniwbrk/ulc-wordbreaks-tests: New file.
9982         * tests/uniwbrk/test-ulc-wordbreaks.sh: New file.
9983         * tests/uniwbrk/test-ulc-wordbreaks.c: New file.
9984
9985         Tests for module 'uniwbrk/u32-wordbreaks'.
9986         * modules/uniwbrk/u32-wordbreaks-tests: New file.
9987         * tests/uniwbrk/test-u32-wordbreaks.c: New file.
9988
9989         Tests for module 'uniwbrk/u16-wordbreaks'.
9990         * modules/uniwbrk/u16-wordbreaks-tests: New file.
9991         * tests/uniwbrk/test-u16-wordbreaks.c: New file.
9992
9993         Tests for module 'uniwbrk/u8-wordbreaks'.
9994         * modules/uniwbrk/u8-wordbreaks-tests: New file.
9995         * tests/uniwbrk/test-u8-wordbreaks.c: New file.
9996
9997 2009-02-10  Bruno Haible  <bruno@clisp.org>
9998
9999         * modules/uniwbrk/u8-wordbreaks (Depends-on): Add uniwbrk/wordbreak
10000         property.
10001         * modules/uniwbrk/u16-wordbreaks (Depends-on): Likewise.
10002         * modules/uniwbrk/u32-wordbreaks (Depends-on): Likewise.
10003         * modules/uniwbrk/ulc-wordbreaks (Depends-on): Add localcharset.
10004
10005 2009-02-10  Simon Josefsson  <simon@josefsson.org>
10006
10007         * m4/sockets.m4: Call AC_C_INLINE since sockets.h now can use
10008         inline keywords.  Reported by Bruno Haible <bruno@clisp.org>.
10009
10010 2009-02-10  Bruno Haible  <bruno@clisp.org>
10011
10012         * lib/unilbrk/lbrktables.h: Renamed from lib/unilbrk/tables.h.
10013         * lib/unilbrk/lbrktables.c: Renamed from lib/unilbrk/tables.c.
10014         * modules/unilbrk/tables (Files, Makefile.am, Include): Update.
10015         * lib/unilbrk/u8-possible-linebreaks.c: Update.
10016         * lib/unilbrk/u16-possible-linebreaks.c: Likewise.
10017         * lib/unilbrk/u32-possible-linebreaks.c: Likewise.
10018
10019 2009-02-09  Simon Josefsson  <simon@josefsson.org>
10020
10021         * lib/sockets.h (gl_fd_to_handle): New function.
10022
10023         * tests/test-sockets.c: Call gl_fd_to_handle.
10024
10025 2009-02-09  Bruno Haible  <bruno@clisp.org>
10026
10027         * doc/havelib.texi: Document the conventions on bi-arch systems.
10028
10029 2009-02-08  Bruno Haible  <bruno@clisp.org>
10030
10031         Document the AC_LIB_LINKFLAGS macro.
10032         * doc/havelib.texi: New file, mostly written on 2005-05-24.
10033         * doc/gnulib.texi: Include it.
10034
10035 2009-02-08  Bruno Haible  <bruno@clisp.org>
10036
10037         Fix wrong order of sections, compared to TOC.
10038         * doc/gnulib.texi: Include relocatable-maint.texi after the
10039         "Regular expressions" node, not before.
10040
10041 2009-02-08  Bruno Haible  <bruno@clisp.org>
10042
10043         Tests for module 'unicase/totitle'.
10044         * modules/unicase/totitle-tests: New file.
10045
10046         Tests for module 'unicase/tolower'.
10047         * modules/unicase/tolower-tests: New file.
10048
10049         Tests for module 'unicase/toupper'.
10050         * modules/unicase/toupper-tests: New file.
10051         * tests/unicase/test-mapping-part1.h: New file.
10052         * tests/unicase/test-mapping-part2.h: New file.
10053
10054         New module 'unicase/totitle'.
10055         * modules/unicase/totitle: New file.
10056         * lib/unicase/totitle.c: New file.
10057
10058         New module 'unicase/tolower'.
10059         * modules/unicase/tolower: New file.
10060         * lib/unicase/tolower.c: New file.
10061
10062         New module 'unicase/toupper'.
10063         * modules/unicase/toupper: New file.
10064         * lib/unicase/toupper.c: New file.
10065         * lib/unicase/simple-mapping.h: New file.
10066
10067         * lib/gen-uni-tables.c (output_simple_mapping_test): New function.
10068         (mapping_table): New structure.
10069         (output_simple_mapping): New function.
10070         (main): Invoke output_simple_mapping_test and output_simple_mapping.
10071         * modules/gen-uni-tables (Description): Update.
10072         * lib/unicase/toupper.h: New file, automatically generated by
10073         gen-uni-tables.
10074         * lib/unicase/tolower.h: New file, automatically generated by
10075         gen-uni-tables.
10076         * lib/unicase/totitle.h: New file, automatically generated by
10077         gen-uni-tables.
10078         * tests/unicase/test-uc_toupper.c: New file, automatically generated by
10079         gen-uni-tables.
10080         * tests/unicase/test-uc_tolower.c: New file, automatically generated by
10081         gen-uni-tables.
10082         * tests/unicase/test-uc_totitle.c: New file, automatically generated by
10083         gen-uni-tables.
10084
10085         New module 'unicase/base'.
10086         * modules/unicase/base: New file.
10087         * lib/unicase.h: New file.
10088
10089 2009-02-08  Bruno Haible  <bruno@clisp.org>
10090
10091         New module 'uniwbrk/ulc-wordbreaks'.
10092         * modules/uniwbrk/ulc-wordbreaks: New file.
10093         * lib/uniwbrk/ulc-wordbreaks.c: New file.
10094
10095         New module 'uniwbrk/u32-wordbreaks'.
10096         * modules/uniwbrk/u32-wordbreaks: New file.
10097         * lib/uniwbrk/u32-wordbreaks.c: New file.
10098
10099         New module 'uniwbrk/u16-wordbreaks'.
10100         * modules/uniwbrk/u16-wordbreaks: New file.
10101         * lib/uniwbrk/u16-wordbreaks.c: New file.
10102
10103         New module 'uniwbrk/u8-wordbreaks'.
10104         * modules/uniwbrk/u8-wordbreaks: New file.
10105         * lib/uniwbrk/u8-wordbreaks.c: New file.
10106         * lib/uniwbrk/u-wordbreaks.h: New file.
10107
10108         New module 'uniwbrk/table'.
10109         * modules/uniwbrk/table: New file.
10110         * lib/uniwbrk/wbrktable.h: New file.
10111         * lib/uniwbrk/wbrktable.c: New file.
10112
10113         New module 'uniwbrk/wordbreak-property'.
10114         * modules/uniwbrk/wordbreak-property: New file.
10115         * lib/uniwbrk/wordbreak-property.c: New file.
10116
10117         * lib/gen-uni-tables.c (WBP_*): New enum items.
10118         (get_wbp, debug_output_wbp, debug_output_wbrk_tables): New functions.
10119         (unicode_org_wbp): New variable.
10120         (fill_org_wbp, debug_output_org_wbp, debug_output_org_wbrk_tables):
10121         New functions.
10122         (wbp_table): New structure.
10123         (output_wbp, output_wbrk_tables): New functions.
10124         (main): Accept additional argument. Invoke fill_org_wbp,
10125         debug_output_wbrk_tables, debug_output_org_wbrk_tables,
10126         output_wbrk_tables.
10127         * modules/gen-uni-tables (Description): Update.
10128         * lib/uniwbrk/wbrkprop.h: New file, automatically generated by
10129         gen-uni-tables.
10130
10131         New module 'uniwbrk/base'.
10132         * modules/uniwbrk/base: New file.
10133         * lib/uniwbrk.h: New file.
10134
10135 2009-02-08  Bruno Haible  <bruno@clisp.org>
10136
10137         Update to Unicode 5.1.0.
10138         * lib/gen-uni-tables.c (is_property_alphabetic): Include
10139         U+2185..U+2188.
10140         (is_property_default_ignorable_code_point): Don't include characters
10141         of category Cc or Cs and not-a-characters.
10142         (get_lbp): Assume REVISION_22. Special handling of U+0609, U+060A,
10143         U+0D79, U+109E, U+109F, U+A60C.
10144         * lib/unictype/bidi_of.h: Regenerated.
10145         * lib/unictype/blocks.h: Regenerated.
10146         * lib/unictype/categ_C.h: Regenerated.
10147         * lib/unictype/categ_Cf.h: Regenerated.
10148         * lib/unictype/categ_Cn.h: Regenerated.
10149         * lib/unictype/categ_L.h: Regenerated.
10150         * lib/unictype/categ_Ll.h: Regenerated.
10151         * lib/unictype/categ_Lm.h: Regenerated.
10152         * lib/unictype/categ_Lo.h: Regenerated.
10153         * lib/unictype/categ_Lu.h: Regenerated.
10154         * lib/unictype/categ_M.h: Regenerated.
10155         * lib/unictype/categ_Mc.h: Regenerated.
10156         * lib/unictype/categ_Me.h: Regenerated.
10157         * lib/unictype/categ_Mn.h: Regenerated.
10158         * lib/unictype/categ_N.h: Regenerated.
10159         * lib/unictype/categ_Nd.h: Regenerated.
10160         * lib/unictype/categ_Nl.h: Regenerated.
10161         * lib/unictype/categ_No.h: Regenerated.
10162         * lib/unictype/categ_P.h: Regenerated.
10163         * lib/unictype/categ_Pd.h: Regenerated.
10164         * lib/unictype/categ_Pe.h: Regenerated.
10165         * lib/unictype/categ_Pf.h: Regenerated.
10166         * lib/unictype/categ_Pi.h: Regenerated.
10167         * lib/unictype/categ_Po.h: Regenerated.
10168         * lib/unictype/categ_Ps.h: Regenerated.
10169         * lib/unictype/categ_S.h: Regenerated.
10170         * lib/unictype/categ_Sk.h: Regenerated.
10171         * lib/unictype/categ_Sm.h: Regenerated.
10172         * lib/unictype/categ_So.h: Regenerated.
10173         * lib/unictype/categ_of.h: Regenerated.
10174         * lib/unictype/combining.h: Regenerated.
10175         * lib/unictype/ctype_alnum.h: Regenerated.
10176         * lib/unictype/ctype_alpha.h: Regenerated.
10177         * lib/unictype/ctype_graph.h: Regenerated.
10178         * lib/unictype/ctype_lower.h: Regenerated.
10179         * lib/unictype/ctype_print.h: Regenerated.
10180         * lib/unictype/ctype_punct.h: Regenerated.
10181         * lib/unictype/ctype_upper.h: Regenerated.
10182         * lib/unictype/decdigit.h: Regenerated.
10183         * lib/unictype/digit.h: Regenerated.
10184         * lib/unictype/mirror.h: Regenerated.
10185         * lib/unictype/numeric.h: Regenerated.
10186         * lib/unictype/pr_alphabetic.h: Regenerated.
10187         * lib/unictype/pr_bidi_arabic_digit.h: Regenerated.
10188         * lib/unictype/pr_bidi_arabic_right_to_left.h: Regenerated.
10189         * lib/unictype/pr_bidi_boundary_neutral.h: Regenerated.
10190         * lib/unictype/pr_bidi_eur_num_terminator.h: Regenerated.
10191         * lib/unictype/pr_bidi_left_to_right.h: Regenerated.
10192         * lib/unictype/pr_bidi_non_spacing_mark.h: Regenerated.
10193         * lib/unictype/pr_bidi_other_neutral.h: Regenerated.
10194         * lib/unictype/pr_combining.h: Regenerated.
10195         * lib/unictype/pr_dash.h: Regenerated.
10196         * lib/unictype/pr_decimal_digit.h: Regenerated.
10197         * lib/unictype/pr_default_ignorable_code_point.h: Regenerated.
10198         * lib/unictype/pr_deprecated.h: Regenerated.
10199         * lib/unictype/pr_diacritic.h: Regenerated.
10200         * lib/unictype/pr_extender.h: Regenerated.
10201         * lib/unictype/pr_format_control.h: Regenerated.
10202         * lib/unictype/pr_grapheme_base.h: Regenerated.
10203         * lib/unictype/pr_grapheme_extend.h: Regenerated.
10204         * lib/unictype/pr_grapheme_link.h: Regenerated.
10205         * lib/unictype/pr_id_continue.h: Regenerated.
10206         * lib/unictype/pr_id_start.h: Regenerated.
10207         * lib/unictype/pr_ideographic.h: Regenerated.
10208         * lib/unictype/pr_ignorable_control.h: Regenerated.
10209         * lib/unictype/pr_lowercase.h: Regenerated.
10210         * lib/unictype/pr_math.h: Regenerated.
10211         * lib/unictype/pr_numeric.h: Regenerated.
10212         * lib/unictype/pr_other_alphabetic.h: Regenerated.
10213         * lib/unictype/pr_other_default_ignorable_code_point.h: Regenerated.
10214         * lib/unictype/pr_other_grapheme_extend.h: Regenerated.
10215         * lib/unictype/pr_other_id_continue.h: Regenerated.
10216         * lib/unictype/pr_other_lowercase.h: Regenerated.
10217         * lib/unictype/pr_other_math.h: Regenerated.
10218         * lib/unictype/pr_punctuation.h: Regenerated.
10219         * lib/unictype/pr_sentence_terminal.h: Regenerated.
10220         * lib/unictype/pr_soft_dotted.h: Regenerated.
10221         * lib/unictype/pr_terminal_punctuation.h: Regenerated.
10222         * lib/unictype/pr_unassigned_code_value.h: Regenerated.
10223         * lib/unictype/pr_unified_ideograph.h: Regenerated.
10224         * lib/unictype/pr_uppercase.h: Regenerated.
10225         * lib/unictype/pr_xid_continue.h: Regenerated.
10226         * lib/unictype/pr_xid_start.h: Regenerated.
10227         * lib/unictype/pr_zero_width.h: Regenerated.
10228         * lib/unictype/scripts.h: Regenerated.
10229         * lib/unictype/scripts_byname.gperf: Regenerated.
10230         * lib/unictype/sy_java_ident.h: Regenerated.
10231         * lib/unilbrk/lbrkprop1.h: Regenerated.
10232         * lib/unilbrk/lbrkprop2.h: Regenerated.
10233         * tests/unictype/test-categ_C.c: Regenerated.
10234         * tests/unictype/test-categ_Cf.c: Regenerated.
10235         * tests/unictype/test-categ_Cn.c: Regenerated.
10236         * tests/unictype/test-categ_L.c: Regenerated.
10237         * tests/unictype/test-categ_Ll.c: Regenerated.
10238         * tests/unictype/test-categ_Lm.c: Regenerated.
10239         * tests/unictype/test-categ_Lo.c: Regenerated.
10240         * tests/unictype/test-categ_Lu.c: Regenerated.
10241         * tests/unictype/test-categ_M.c: Regenerated.
10242         * tests/unictype/test-categ_Mc.c: Regenerated.
10243         * tests/unictype/test-categ_Me.c: Regenerated.
10244         * tests/unictype/test-categ_Mn.c: Regenerated.
10245         * tests/unictype/test-categ_N.c: Regenerated.
10246         * tests/unictype/test-categ_Nd.c: Regenerated.
10247         * tests/unictype/test-categ_Nl.c: Regenerated.
10248         * tests/unictype/test-categ_No.c: Regenerated.
10249         * tests/unictype/test-categ_P.c: Regenerated.
10250         * tests/unictype/test-categ_Pd.c: Regenerated.
10251         * tests/unictype/test-categ_Pe.c: Regenerated.
10252         * tests/unictype/test-categ_Pf.c: Regenerated.
10253         * tests/unictype/test-categ_Pi.c: Regenerated.
10254         * tests/unictype/test-categ_Po.c: Regenerated.
10255         * tests/unictype/test-categ_Ps.c: Regenerated.
10256         * tests/unictype/test-categ_S.c: Regenerated.
10257         * tests/unictype/test-categ_Sk.c: Regenerated.
10258         * tests/unictype/test-categ_Sm.c: Regenerated.
10259         * tests/unictype/test-categ_So.c: Regenerated.
10260         * tests/unictype/test-ctype_alnum.c: Regenerated.
10261         * tests/unictype/test-ctype_alpha.c: Regenerated.
10262         * tests/unictype/test-ctype_graph.c: Regenerated.
10263         * tests/unictype/test-ctype_lower.c: Regenerated.
10264         * tests/unictype/test-ctype_print.c: Regenerated.
10265         * tests/unictype/test-ctype_punct.c: Regenerated.
10266         * tests/unictype/test-ctype_upper.c: Regenerated.
10267         * tests/unictype/test-decdigit.h: Regenerated.
10268         * tests/unictype/test-digit.h: Regenerated.
10269         * tests/unictype/test-numeric.h: Regenerated.
10270         * tests/unictype/test-pr_alphabetic.c: Regenerated.
10271         * tests/unictype/test-pr_bidi_arabic_digit.c: Regenerated.
10272         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Regenerated.
10273         * tests/unictype/test-pr_bidi_boundary_neutral.c: Regenerated.
10274         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Regenerated.
10275         * tests/unictype/test-pr_bidi_left_to_right.c: Regenerated.
10276         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Regenerated.
10277         * tests/unictype/test-pr_bidi_other_neutral.c: Regenerated.
10278         * tests/unictype/test-pr_combining.c: Regenerated.
10279         * tests/unictype/test-pr_dash.c: Regenerated.
10280         * tests/unictype/test-pr_decimal_digit.c: Regenerated.
10281         * tests/unictype/test-pr_default_ignorable_code_point.c: Regenerated.
10282         * tests/unictype/test-pr_deprecated.c: Regenerated.
10283         * tests/unictype/test-pr_diacritic.c: Regenerated.
10284         * tests/unictype/test-pr_extender.c: Regenerated.
10285         * tests/unictype/test-pr_format_control.c: Regenerated.
10286         * tests/unictype/test-pr_grapheme_base.c: Regenerated.
10287         * tests/unictype/test-pr_grapheme_extend.c: Regenerated.
10288         * tests/unictype/test-pr_grapheme_link.c: Regenerated.
10289         * tests/unictype/test-pr_id_continue.c: Regenerated.
10290         * tests/unictype/test-pr_id_start.c: Regenerated.
10291         * tests/unictype/test-pr_ideographic.c: Regenerated.
10292         * tests/unictype/test-pr_ignorable_control.c: Regenerated.
10293         * tests/unictype/test-pr_lowercase.c: Regenerated.
10294         * tests/unictype/test-pr_math.c: Regenerated.
10295         * tests/unictype/test-pr_numeric.c: Regenerated.
10296         * tests/unictype/test-pr_other_alphabetic.c: Regenerated.
10297         * tests/unictype/test-pr_other_default_ignorable_code_point.c:
10298         Regenerated.
10299         * tests/unictype/test-pr_other_grapheme_extend.c: Regenerated.
10300         * tests/unictype/test-pr_other_id_continue.c: Regenerated.
10301         * tests/unictype/test-pr_other_lowercase.c: Regenerated.
10302         * tests/unictype/test-pr_other_math.c: Regenerated.
10303         * tests/unictype/test-pr_punctuation.c: Regenerated.
10304         * tests/unictype/test-pr_sentence_terminal.c: Regenerated.
10305         * tests/unictype/test-pr_soft_dotted.c: Regenerated.
10306         * tests/unictype/test-pr_terminal_punctuation.c: Regenerated.
10307         * tests/unictype/test-pr_unassigned_code_value.c: Regenerated.
10308         * tests/unictype/test-pr_unified_ideograph.c: Regenerated.
10309         * tests/unictype/test-pr_uppercase.c: Regenerated.
10310         * tests/unictype/test-pr_xid_continue.c: Regenerated.
10311         * tests/unictype/test-pr_xid_start.c: Regenerated.
10312         * tests/unictype/test-pr_zero_width.c: Regenerated.
10313
10314         Update to Unicode 5.1.0.
10315         * lib/uniwidth/width.c (nonspacing_table_data): Add U+0487,
10316         U+0616..U+061A, U+0A51, U+0A75, U+0B44, U+0B62..U+0B63, U+0C62..U+0C63,
10317         U+0D44, U+0D62..U+0D63, U+1033..U+1035, U+103A, U+103D..U+103E,
10318         U+105E..U+1060, U+1071..U+1074, U+1082, U+1085..U+1086, U+108D,
10319         U+1B80..U+1B81, U+1BA2..U+1BA5, U+1BA8..U+1BA9, U+1C2C..U+1C33,
10320         U+1C36..U+1C37, U+1DCB..U+1DE6, U+2064, U+20F0, U+2DE0..U+2DFF,
10321         U+A66F..U+A672, U+A67C..U+A67D, U+A8C4, U+A926..U+A92D, U+A947..U+A951,
10322         U+AA29..U+AA2E, U+AA31..U+AA32, U+AA35..U+AA36, U+AA43, U+AA4C,
10323         U+FE24..U+FE26, U+101FD. Remove U+1929..U+192B.
10324         (nonspacing_table_ind): Update.
10325         * tests/uniwidth/test-uc_width2.sh: Update expected result.
10326
10327         Update to Unicode 5.1.0.
10328         * lib/uniname/gen-uninames.lisp (main): Add the range 0x1Fxxx to the
10329         code transform.
10330         * lib/uniname/uniname.c (unicode_character_name,
10331         unicode_name_character): Add the range 0x1Fxxx to the code transform.
10332         * lib/uniname/uninames.h: Regenerated.
10333         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.1.0.
10334
10335 2009-02-07  Bruno Haible  <bruno@clisp.org>
10336
10337         Merge gen-ctype and gen-lbrk into a single program.
10338         * lib/gen-uni-tables.c: New file, incorporating
10339         lib/unictype/gen-ctype.c and lib/unilbrk/gen-lbrk.c.
10340         Add directory prefixes to the names of the generated files.
10341         * lib/unictype/gen-ctype.c: Remove file.
10342         * lib/unilbrk/gen-lbrk.c: Remove file.
10343         * modules/gen-uni-tables: New file.
10344         * modules/unictype/gen-ctype: Remove file.
10345         * modules/unilbrk/gen-lbrk: Remove file.
10346
10347 2009-02-07  Bruno Haible  <bruno@clisp.org>
10348
10349         * lib/unistr.h (u8_strcoll, u16_strcoll, u32_strcoll): New declations.
10350
10351         New module 'unistr/u32-strcoll'.
10352         * modules/unistr/u32-strcoll: New file.
10353         * lib/unistr/u32-strcoll.c: New file.
10354
10355         New module 'unistr/u16-strcoll'.
10356         * modules/unistr/u16-strcoll: New file.
10357         * lib/unistr/u16-strcoll.c: New file.
10358
10359         New module 'unistr/u8-strcoll'.
10360         * modules/unistr/u8-strcoll: New file.
10361         * lib/unistr/u8-strcoll.c: New file.
10362         * lib/unistr/u-strcoll.h: New file.
10363
10364 2009-02-07  Bruno Haible  <bruno@clisp.org>
10365
10366         * test-mbrtowc4.sh (LOCALE_ZH_CN): Fix default value.
10367         * test-mbsnrtowcs4.sh (LOCALE_ZH_CN): Likewise.
10368         * test-mbsrtowcs4.sh (LOCALE_ZH_CN): Likewise.
10369         * test-wcrtomb.sh (LOCALE_ZH_CN): Likewise.
10370         * test-wcsnrtombs4.sh (LOCALE_ZH_CN): Likewise.
10371         * test-wcsrtombs4.sh (LOCALE_ZH_CN): Likewise.
10372
10373 2009-02-07  Bruno Haible  <bruno@clisp.org>
10374
10375         Make 64-bit clean.
10376         * lib/unictype/gen-ctype.c (output_predicate, output_category,
10377         output_combclass, output_bidi_category, output_decimal_digit,
10378         output_digit, output_numeric, output_mirror, output_scripts,
10379         output_ident_category): Use proper width specifier in format strings.
10380
10381 2009-02-07  Bruno Haible  <bruno@clisp.org>
10382
10383         * doc/posix-functions/dirfd.texi: Clarify situation on mingw. Document
10384         failure behaviour.
10385
10386 2009-02-07  Jim Meyering  <meyering@redhat.com>
10387
10388         regex: avoid compilation failure with upcoming gcc-4.4
10389         * lib/regex_internal.h: Revert e48d8b47fb3eee81d341b71c3e006efe9e3433a7
10390         [workaround for PGC prior to 6.1-2].  Otherwise, we'd get this:
10391         "... error: integer overflow in preprocessor expression".
10392
10393 2009-02-05  Ben Pfaff  <blp@gnu.org>
10394
10395         Fix link errors on Windows when close module is used.
10396         * modules/close: Add $(LIB_CLOSE) to Link section.
10397         * m4/close.m4 (gl_REPLACE_CLOSE): Substitute -lws2_32 into
10398         $(LIB_CLOSE) on Windows.
10399
10400 2009-02-05  Jim Meyering  <meyering@redhat.com>
10401
10402         still avoid unused-parameter warnings, but do it cleanly
10403         * lib/fsusage.c (UNUSED_PARAM): Remove definition.
10404         (get_fs_usage): Cast to void instead.
10405         * lib/mountlist.c (UNUSED_PARAM): Remove definition.
10406         (dev_from_mount_options, read_file_system_list): Cast to void.
10407         Prompted by Bruno Haible.
10408
10409 2009-02-04  Jim Meyering  <meyering@redhat.com>
10410
10411         fsusage.c: correct copyright year
10412         * lib/fsusage.c: Reflect year in which the change is pushed into
10413
10414         avoid misc. warnings
10415         * lib/fsusage.c (UNUSED_PARAM): Define.
10416         (get_fs_usage): Mark parameter "disk" as unused.
10417         * lib/getugroups.c (getgrent): Use "void" in prototype.
10418         * lib/mountlist.c: Mark unused parameters.
10419         (read_file_system_list): Declare a local with "const".
10420         * lib/nanosleep.c (getnow): Declare static.
10421         * lib/strftime.c: Include strftime.h, for declaration of nstrftime.
10422
10423         dirfd: set errno upon failure
10424         * lib/dirfd.c: Include <errno.h>.
10425         Set errno to ENOTSUP when returning -1.
10426         * modules/dirfd (Depends-on): Add errno.
10427         Suggested by John Kodis <kodis@comcast.net>.
10428
10429 2009-02-01  Bruno Haible  <bruno@clisp.org>
10430
10431         Don't assume sizeof (long) >= sizeof (void *).
10432         * lib/memcmp.c: Include stdint.h.
10433         (memcmp_bytes): Change argument types to op_t. Change type of srcp1,
10434         srcp2 to 'const byte *'.
10435         (memcmp_common_alignment, memcmp_not_common_alignment): Change argument
10436         types to uintptr_t.
10437         (rpl_memcmp): Change type of srcp1, srcp2 to 'uintptr_t'.
10438         * modules/memcmp (Depends-on): Add stdint.
10439         Reported by Ozkan Sezer <sezeroz@gmail.com>.
10440
10441 2009-01-30  Eric Blake  <ebb9@byu.net>
10442
10443         fix more require-before-expand issues
10444         * m4/pmccabe2html.m4 (gl_PMCCABE2HTML): Require, rather than
10445         expand, AC_PROG_AWK.
10446         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): Use AC_DEFUN_ONCE.
10447
10448 2009-01-28  Eric Blake  <ebb9@byu.net>
10449
10450         version-etc: use consistent URL formatting
10451         * lib/version-etc.c (emit_bug_reporting_address, version_etc_va):
10452         Improve formatting.  Use fputs for string without %.
10453
10454 2009-01-28  Jim Meyering  <meyering@redhat.com>
10455
10456         00gnulib.m4: add m4 quotes in shell comment to avoid autoconf warning
10457         * m4/00gnulib.m4 (AC_DEFUN_ONCE): Add quotes to avoid an
10458         "underquoted definition of NAME" from autoconf-2.59.
10459
10460 2009-01-28  Bruno Haible  <bruno@clisp.org>
10461
10462         * doc/gnulib.texi: Add "Obsolete modules" to index.
10463
10464 2009-01-28  Jim Meyering  <meyering@redhat.com>
10465
10466         useless-if-before-free: recognize more variants
10467         * build-aux/useless-if-before-free: Also recognize e.g.,
10468         if (NULL != p) free (p);
10469
10470 2009-01-27  Mark McLoughlin  <markmc@redhat.com>
10471
10472         test-getaddrinfo: skip (don't fail) this test when there's no network
10473         * tests/test-getaddrinfo.c: Skip test upon failure with EAI_AGAIN,
10474         on the presumption that it means you lack network access.
10475
10476 2009-01-26  Jim Meyering  <meyering@redhat.com>
10477
10478         fflush: avoid warnings on modern systems
10479         * lib/fflush.c (rpl_fflush): Move declarations of locals,
10480         pos and result, into scopes where they're used.
10481
10482 2009-01-26  Eric Blake  <ebb9@byu.net>
10483
10484         Silence warning reintroduced by recent extensions patch.
10485         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS)
10486         (gl_USE_SYSTEM_EXTENSIONS): Use AC_DEFUN_ONCE to silence newer
10487         autoconf.
10488
10489         Backport improved autoconf semantics of AC_DEFUN_ONCE.
10490         * m4/00gnulib.m4: New file.
10491         * gnulib-tool (func_get_filelist): Always use it.
10492         * m4/gnulib-common.m4 (gl_COMMON): Force the file to be used.
10493         Reported by Bruno Haible, with suggestions from Paolo Bonzini.
10494
10495 2009-01-25  Bruno Haible  <bruno@clisp.org>
10496
10497         Make test-quotearg work on MacOS X and AIX.
10498         * tests/test-quotearg.sh: New file.
10499         * tests/locale/fr/LC_MESSAGES/test-quotearg.po: New file.
10500         * tests/locale/fr/LC_MESSAGES/test-quotearg.mo: New file.
10501         * tests/test-quotearg.c: Include <locale.h> and gettext.h. Don't
10502         include <libintl.h>.
10503         (fake_locale): Remove variable.
10504         (gettext, dgettext, dcgettext): Remove functions.
10505         (main): Instead of setting a fake locale, set a real locale. Call
10506         textdomain and bindtextdomain.
10507         * modules/quotearg-tests (Files): Add the new files.
10508         (Depends-on): Add gettext, setenv, unsetenv.
10509         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
10510         (Makefile.am): Add test-quotearg.sh to TESTS, remove test-quotearg.
10511         Augment TESTS_ENVIRONMENT.
10512
10513 2009-01-25  Bruno Haible  <bruno@clisp.org>
10514
10515         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove special code that hid the
10516         fr_FR.ISO8859-1 locale on MacOS X.
10517         * m4/locale-ja.m4 (gt_LOCALE_JA): Remove special code that hid the
10518         ja_JP.eucJP locale on MacOS X.
10519         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Remove special code that hid the
10520         zh_CN.GB18030 locale on MacOS X.
10521
10522 2009-01-25  Bruno Haible  <bruno@clisp.org>
10523
10524         Avoid link errors on MacOS X 10.3.
10525         * lib/mbsrtowcs-state.c (_gl_mbsrtowcs_state): Add initializer.
10526         * lib/wcsrtombs-state.c (_gl_wcsrtombs_state): Likewise.
10527
10528 2009-01-25  Bruno Haible  <bruno@clisp.org>
10529
10530         * lib/pipe.c: On Unix, assume HAVE_POSIX_SPAWN and use posix_spawnp.
10531         * m4/pipe.m4 (gl_PIPE): Remove tests for vfork() based code.
10532         * modules/pipe (Files): Remove m4/posix_spawn.m4.
10533         (Depends-on): Add spawn, posix_spawnp, posix_spawn_file_actions_init,
10534         posix_spawn_file_actions_addclose, posix_spawn_file_actions_adddup2,
10535         posix_spawn_file_actions_addopen, posix_spawn_file_actions_destroy,
10536         posix_spawnattr_init, posix_spawnattr_setsigmask,
10537         posix_spawnattr_setflags, posix_spawnattr_destroy.
10538
10539         * lib/execute.c: On Unix, assume HAVE_POSIX_SPAWN and use posix_spawnp.
10540         * m4/execute.m4 (gl_EXECUTE): Remove tests for vfork() based code.
10541         * modules/execute (Files): Remove m4/posix_spawn.m4.
10542         (Depends-on): Add spawn, posix_spawnp, posix_spawn_file_actions_init,
10543         posix_spawn_file_actions_addopen, posix_spawn_file_actions_destroy,
10544         posix_spawnattr_init, posix_spawnattr_setsigmask,
10545         posix_spawnattr_setflags, posix_spawnattr_destroy.
10546
10547 2009-01-25  Bruno Haible  <bruno@clisp.org>
10548
10549         * lib/glthread/threadlib.c: Include <stdlib.h>.
10550
10551 2009-01-25  Bruno Haible  <bruno@clisp.org>
10552
10553         * lib/glthread/threadlib.c (dummy): New declaration.
10554
10555 2009-01-25  Bruno Haible  <bruno@clisp.org>
10556
10557         * lib/mbrtowc.c (mbrtowc): Distinguish invalid and incomplete
10558         multibyte characters also for the GB18030 encoding. Don't crash when
10559         the encoding is unknown and nstate = 0. Needed on OSF/1 5.1.
10560
10561 2009-01-25  Bruno Haible  <bruno@clisp.org>
10562
10563         Avoid redefining 'struct random_data' on OSF/1 5.1.
10564         * lib/stdlib.in.h: Include <random.h> if it exists.
10565         * m4/stdlib_h.m4 (gl_STDLIB_H): Test whether <random.h> exists. Set
10566         HAVE_RANDOM_H. Include <random.h> when testing whether
10567         'struct random_data' exists.
10568         * modules/stdlib (Makefile.am): Substitute HAVE_RANDOM_H.
10569
10570 2009-01-25  Bruno Haible  <bruno@clisp.org>
10571
10572         Don't install charset.alias on MacOS X >= 10.3.
10573         * lib/localcharset.c (DARWIN7): New macro.
10574         (get_charset_aliases): Hardcode the result for Darwin7.
10575         * modules/localcharset (install-exec-local): Don't install
10576         charset.alias on MacOS X >= 10.3, if the file does not yet exist.
10577
10578 2009-01-25  Bruno Haible  <bruno@clisp.org>
10579
10580         Don't install charset.alias on mingw and Cygwin.
10581         * modules/localcharset (install-exec-local): Don't install
10582         charset.alias on mingw and Cygwin, if the file does not yet exist.
10583         The result for these platforms is hardcoded in localcharset.c.
10584
10585 2009-01-25  Bruno Haible  <bruno@clisp.org>
10586
10587         Make it possible again to use AC_GNU_SOURCE together with gnulib.
10588         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_GNU_SOURCE
10589         before requiring AC_USE_SYSTEM_EXTENSIONS.
10590
10591 2009-01-25  Jim Meyering  <meyering@redhat.com>
10592
10593         c-strtod: avoid warnings
10594         * lib/c-strtod.c (C_STRTOD): Cast nptr to (char *) to avoid
10595         "assignment discards qualifiers from pointer target type" warnings.
10596
10597 2009-01-24  Bruno Haible  <bruno@clisp.org>
10598
10599         Add support for non-UTF-8 locales on MacOS X.
10600         * lib/config.charset: Add CP1131, ARMSCII-8, PT154 to the list of
10601         canonical encodings. For Darwin 7 and newer, don't map traditional
10602         encodings to UTF-8.
10603         Reported by Vincent Lefevre <vincent@vinc17.org>
10604         at <http://savannah.gnu.org/bugs/?25235>.
10605
10606 2009-01-24  Bruno Haible  <bruno@clisp.org>
10607
10608         * doc/gnulib.texi (Obsolete modules): New section.
10609         Reported by Mike Frysinger <vapier@gentoo.org>.
10610
10611 2009-01-24  Bruno Haible  <bruno@clisp.org>
10612
10613         * doc/Makefile (%.pdf): Clarify where to find texmf.cnf.
10614         (%.dvi): New rule.
10615
10616 2009-01-24  Bruno Haible  <bruno@clisp.org>
10617
10618         * lib/c-strtod.h (c_strtod, c_strtold): Adjust specification.
10619         Reported by Eric Blake.
10620
10621 2009-01-24  Bruno Haible  <bruno@clisp.org>
10622
10623         * lib/c-stack.c (segv_handler): If !HAVE_XSI_STACK_OVERFLOW_HEURISTIC,
10624         set signo = 0 also if info->si_code <= 0. Needed on HP-UX 11.11.
10625         Reported by Gary V. Vaughan <gary@gnu.org>.
10626
10627 2009-01-24  Bruno Haible  <bruno@clisp.org>
10628
10629         * lib/c-strtod.h (c_strtod, c_strtold): Add specification.
10630
10631 2009-01-23  Bruno Haible  <bruno@clisp.org>
10632
10633         Make c-strtod, c-strtold usable in libraries.
10634         * lib/c-strtod.c: Include string.h instead of xalloc.h.
10635         (C_STRTOD): Call strdup instead of xstrdup.
10636         * modules/c-strtod (Depends-on): Add strdup-posix, remove xalloc.
10637         * modules/c-strtold (Depends-on): Likewise.
10638         * doc/c-strtod.texi: Remove the sentence mentioning xalloc_die.
10639         * NEWS: Mention the change.
10640         Reported by Michael Gold <mgold@ncf.ca>.
10641
10642 2009-01-23  Jim Meyering  <meyering@redhat.com>
10643
10644         c-strtod: when ENDPTR is non-NULL, set *ENDPTR in new failure path
10645         * lib/c-strtod.c (C_STRTOD) [LC_ALL_MASKC]: Ensure that when
10646         ENDPTR is non-NULL, *ENDPTR is set to NPTR upon failure.
10647
10648 2009-01-23  Simon Josefsson  <simon@josefsson.org>
10649
10650         * lib/version-etc.c: Add emit_bug_reporting_address, inspired by
10651         GNU CoreUtils.
10652         * lib/version-etc.h: Add prototype for emit_bug_reporting_address.
10653         * modules/version-etc (Description): Update.
10654
10655 2009-01-22  Bruno Haible  <bruno@clisp.org>
10656
10657         Cache the C locale object.
10658         * lib/c-strtod.c (c_locale_cache): New variable.
10659         (c_locale): New function.
10660         (C_STRTOD): Use it, and don't call freelocale.
10661         * m4/c-strtod.m4 (gl_C_STRTOD, gl_C_STRTOLD): Require AC_C_INLINE.
10662         Suggested by Paolo Bonzini.
10663
10664 2009-01-21  Bruno Haible  <bruno@clisp.org>
10665
10666         * lib/getloadavg.c (getloadavg): Check c_strtod result against error
10667         conditions other than overflow.
10668
10669 2009-01-21  Bruno Haible  <bruno@clisp.org>
10670
10671         * lib/c-strtod.c: Include errno.h.
10672         (C_STRTOD): Check against NULL return from newlocale. Preserve errno
10673         value from STRTOD_L and STRTOD.
10674
10675 2009-01-21  Bruno Haible  <bruno@clisp.org>
10676         and Jim Meyering  <meyering@redhat.com>
10677
10678         nanosleep: skip configure test (fail it) for apple universal builds
10679         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_MULTIARCH. In Apple
10680         universal builds, assume that nanosleep does not work.
10681         * modules/nanosleep (Depends-on): Add multiarch.
10682
10683         mktime: skip configure test (fail it) for apple universal builds
10684         * m4/mktime.m4 (AC_FUNC_MKTIME): Require gl_MULTIARCH. In Apple
10685         universal builds, assume that mktime does not work.
10686         * modules/mktime (Depends-on): Add multiarch.
10687
10688 2009-01-21  Eric Blake  <ebb9@byu.net>
10689
10690         multiarch: avoid expand-before-require warning
10691         * modules/multiarch (configure.ac): Require, rather than expand,
10692         gl_MULTIARCH.
10693         * m4/multiarch.m4 (gl_MULTIARCH_BODY): Merge...
10694         (gl_MULTIARCH): ...into this macro, and use AC_DEFUN_ONCE to
10695         enforce that all clients require it.  Partial reversion of
10696         2008-12-29 patch.
10697
10698         error: avoid expand-before-require warning
10699         * modules/errno (configure.ac): Require, rather than expand,
10700         gl_HEADER_ERRNO_H.
10701         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Merge...
10702         (gl_HEADER_ERRNO_H): ...into this macro, and use AC_DEFUN_ONCE to
10703         enforce that all clients require it.
10704
10705         gnulib-tool: avoid warnings from using obsolete AC_GNU_SOURCE
10706         * gnulib-tool (func_dest_tmpfilename, func_create_testdir): Using
10707         obsolete AC_GNU_SOURCE causes out-of-order expansion; avoid it,
10708         and rely solely on gl_USE_SYSTEM_EXTENSIONS.
10709
10710 2009-01-21  Paolo Bonzini  <bonzini@gnu.org>
10711
10712         Revert:
10713         2009-01-20  Paolo Bonzini  <bonzini@gnu.org>
10714
10715         regex: do not depend on obsolete modules.
10716         * modules/regex: Remove memcmp and memmove.
10717
10718 2009-01-20  Bruno Haible  <bruno@clisp.org>
10719
10720         Make the 'link' module link on Windows NT 4.
10721         * lib/link.c (_WIN32_WINNT): Don't define.
10722         (CreateHardLinkFuncType): New type.
10723         (CreateHardLinkFunc, initialized): New variables.
10724         (initialize): New function.
10725         (link): Invoke CreateHardLink indirectly through the function pointer.
10726
10727 2009-01-20  Bruno Haible  <bruno@clisp.org>
10728
10729         Fix compilation failure on mingw.
10730         * tests/test-link.c (main): Don't assume that EOPNOTSUPP exists.
10731
10732 2009-01-20  Michael Gold  <mgold@ncf.ca>  (tiny change)
10733
10734         * doc/c-strtod.texi: Mention a couple of restrictions.
10735
10736 2009-01-20  Jim Meyering  <meyering@redhat.com>
10737
10738         gettimeofday: move more declarations out of functions
10739         * lib/gettimeofday.c: Move extern declarations of tzset and
10740         gmtime out of containing functions.  Prompted by Bruno Haible.
10741
10742 2009-01-20  Paolo Bonzini  <bonzini@gnu.org>
10743
10744         regex: do not depend on obsolete modules.
10745         * modules/regex: Remove memcmp and memmove.
10746
10747 2009-01-19  Bruno Haible  <bruno@clisp.org>
10748
10749         Don't use AC_REQUIRE([AC_C_BIGENDIAN]).
10750         * modules/uniconv/u16-conv-from-enc (configure.ac): Require
10751         gl_BIGENDIAN, not AC_C_BIGENDIAN.
10752         * modules/uniconv/u16-conv-to-enc (configure.ac): Likewise.
10753         * modules/uniconv/u16-strconv-to-enc (configure.ac): Likewise.
10754
10755 2009-01-19  Bruno Haible  <bruno@clisp.org>
10756
10757         * tests/test-link.c: Include <errno.h>.
10758         (main): Exit with code 77 when a hard link cannot be created due to
10759         the file system.
10760         * tests/test-link.sh: Skip test when a hard link cannot be created due
10761         to the file system.
10762         Suggested by Eric Blake.
10763
10764 2009-01-19  Martin Lambers  <marlam@marlam.de>
10765
10766         * modules/link-tests: New file.
10767         * tests/test-link.sh: New file.
10768         * tests/test-link.c: New file.
10769
10770 2009-01-19  Eric Blake  <ebb9@byu.net>
10771
10772         doc: mention another function added in cygwin 1.7.0
10773         * doc/glibc-functions/glob_pattern_p.texi (glob_pattern_p):
10774         Another new function in cygwin 1.7.
10775
10776 2009-01-19  Bruno Haible  <bruno@clisp.org>
10777
10778         Don't use AC_REQUIRE([AC_C_BIGENDIAN]).
10779         * m4/gnulib-common.m4 (gl_BIGENDIAN): New macro.
10780         * m4/exponentl.m4 (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require
10781         gl_BIGENDIAN, not AC_C_BIGENDIAN.
10782         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): Likewise.
10783         * m4/isinf.m4 (gl_ISINFL_WORKS): Likewise.
10784         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Likewise.
10785         * m4/md4.m4 (gl_MD4): Likewise.
10786         * m4/md5.m4 (gl_MD5): Likewise.
10787         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Likewise.
10788         * m4/sha1.m4 (gl_SHA1): Likewise.
10789         * m4/sha256.m4 (gl_SHA256): Likewise.
10790         * m4/sha512.m4 (gl_SHA512): Likewise.
10791
10792 2009-01-19  Bruno Haible  <bruno@clisp.org>
10793
10794         * modules/uniname/uniname-tests (Depends-on): Add progname.
10795         * tests/uniname/test-uninames.c: Include progname.h.
10796         (main): Call set_program_name.
10797
10798         * modules/unistdio/u8-vsprintf-tests (Depends-on): Add progname.
10799         * tests/unistdio/test-u8-vsprintf1.c: Include progname.h.
10800         (main): Call set_program_name.
10801
10802         * modules/unistdio/u8-vsnprintf-tests (Depends-on): Add progname.
10803         * tests/unistdio/test-u8-vsnprintf1.c: Include progname.h.
10804         (main): Call set_program_name.
10805
10806         * modules/unistdio/u16-vsprintf-tests (Depends-on): Add progname.
10807         * tests/unistdio/test-u16-vsprintf1.c: Include progname.h.
10808         (main): Call set_program_name.
10809
10810         * modules/unistdio/u16-vsnprintf-tests (Depends-on): Add progname.
10811         * tests/unistdio/test-u16-vsnprintf1.c: Include progname.h.
10812         (main): Call set_program_name.
10813
10814         * modules/unistdio/u32-vsprintf-tests (Depends-on): Add progname.
10815         * tests/unistdio/test-u32-vsprintf1.c: Include progname.h.
10816         (main): Call set_program_name.
10817
10818         * modules/unistdio/u32-vsnprintf-tests (Depends-on): Add progname.
10819         * tests/unistdio/test-u32-vsnprintf1.c: Include progname.h.
10820         (main): Call set_program_name.
10821
10822         * modules/unistdio/ulc-vsprintf-tests (Depends-on): Add progname.
10823         * tests/unistdio/test-ulc-vsprintf1.c: Include progname.h.
10824         (main): Call set_program_name.
10825
10826         * modules/unistdio/ulc-vsnprintf-tests (Depends-on): Add progname.
10827         * tests/unistdio/test-ulc-vsnprintf1.c: Include progname.h.
10828         (main): Call set_program_name.
10829
10830 2009-01-19  Eric Blake  <ebb9@byu.net>
10831
10832         test-unistd: test previous patch
10833         * tests/test-unistd.c: Test *_FILENO macros.
10834
10835         unistd: guarantee STDIN_FILENO here, for OS/2 EMX
10836         * lib/unistd.in.h (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
10837         Guarantee a definition.
10838         * doc/posix-headers/unistd.texi (unistd.h): Document the bug.
10839         * modules/unistd-safer (Depends-on): Add dependency on unistd.
10840         * lib/c-stack.c (STDERR_FILENO): Rely on <unistd.h>.
10841         * lib/dup-safer.c (STDERR_FILENO): Likewise.
10842         * lib/execute.c (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
10843         Likewise.
10844         * lib/fd-safer.c (STDIN_FILENO, STDERR_FILENO): Likewise.
10845         * lib/fopen-safer.c (STDERR_FILENO): Likewise.
10846         * lib/pipe.c (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
10847         Likewise.
10848         * lib/tmpfile-safer.c (STDERR_FILENO): Likewise.
10849         * tests/test-posix_spawn1.c (STDIN_FILENO, STDOUT_FILENO)
10850         (STDERR_FILENO): Likewise.
10851         * tests/test-posix_spawn2.c (STDIN_FILENO, STDOUT_FILENO)
10852         (STDERR_FILENO): Likewise.
10853         * tests/test-posix_spawn3.c (STDIN_FILENO, STDOUT_FILENO)
10854         (STDERR_FILENO): Likewise.
10855         Reported by Elbert Pol.
10856
10857 2009-01-19  Eric Blake  <ebb9@byu.net>
10858
10859         doc: mention more functions added in cygwin 1.7.0
10860         * doc/posix-functions/abort.texi (abort): Update wording related
10861         to cygwin.
10862         * doc/posix-functions/daylight.texi (daylight): Likewise.
10863         * doc/posix-functions/optarg.texi (optarg): Likewise.
10864         * doc/posix-functions/optarg.texi (opterr): Likewise.
10865         * doc/posix-functions/optarg.texi (optind): Likewise.
10866         * doc/posix-functions/optarg.texi (optopt): Likewise.
10867         * doc/posix-functions/wprintf.texi (wprintf): Cygwin wprintf never
10868         worked in 1.5.x, and was withdrawn in 1.7.
10869         * doc/posix-functions/vwprintf.texi (vwprintf): Likewise.
10870         * doc/posix-functions/fprintf.texi (fprintf): Tighten mention of
10871         cygwin versions.
10872         * doc/posix-functions/perror.texi (perror): Likewise.
10873         * doc/posix-functions/printf.texi (printf): Likewise.
10874         * doc/posix-functions/snprintf.texi (snprintf): Likewise.
10875         * doc/posix-functions/sprintf.texi (sprintf): Likewise.
10876         * doc/posix-functions/vfprintf.texi (vfprintf): Likewise.
10877         * doc/posix-functions/vprintf.texi (vprintf): Likewise.
10878         * doc/posix-functions/vsnprintf.texi (vsnprintf): Likewise.
10879         * doc/posix-functions/vsprintf.texi (vsprintf): Likewise.
10880         * doc/glibc-functions/obstack_printf.texi (obstack_printf):
10881         Likewise.
10882         * doc/glibc-functions/obstack_vprintf.texi (obstack_vprintf):
10883         Likewise.
10884         * doc/glibc-functions/cfmakeraw.texi (cfmakeraw): Cygwin 1.7 adds
10885         this function.
10886         * doc/glibc-functions/in6addr_any.texi (in6addr_any): Likewise.
10887         * doc/glibc-functions/in6addr_loopback.texi (in6addr_loopback):
10888         Likewise.
10889         * doc/glibc-functions/updwtmpx.texi (updwtmpx): Likewise.
10890         * doc/posix-functions/_Exit_C99.texi (_Exit): Likewise.
10891         * doc/posix-functions/confstr.texi (confstr): Likewise.
10892         * doc/posix-functions/dprintf.texi (dprintf): Likewise.
10893         * doc/posix-functions/fgetwc.texi (fgetwc): Likewise.
10894         * doc/posix-functions/fgetws.texi (fgetws): Likewise.
10895         * doc/posix-functions/fputwc.texi (fputwc): Likewise.
10896         * doc/posix-functions/fputws.texi (fputws): Likewise.
10897         * doc/posix-functions/fwide.texi (fwide): Likewise.
10898         * doc/posix-functions/getwc.texi (getwc): Likewise.
10899         * doc/posix-functions/getwchar.texi (getwchar): Likewise.
10900         * doc/posix-functions/putwc.texi (putwc): Likewise.
10901         * doc/posix-functions/putwchar.texi (putwchar): Likewise.
10902         * doc/posix-functions/sigignore.texi (sigignore): Likewise.
10903         * doc/posix-functions/ungetwc.texi (ungetwc): Likewise.
10904         * doc/posix-functions/vdprintf.texi (vdprintf): Likewise.
10905         * doc/posix-functions/wcpcpy.texi (wcpcpy): Likewise.
10906         * doc/posix-functions/wcpncpy.texi (wcpncpy): Likewise.
10907         * doc/posix-functions/wcstol.texi (wcstol): Likewise.
10908         * doc/posix-functions/wcstoll.texi (wcstoll): Likewise.
10909         * doc/posix-functions/wcstoul.texi (wcstoul): Likewise.
10910         * doc/posix-functions/wcstoull.texi (wcstoull): Likewise.
10911         * doc/posix-functions/wcsxfrm.texi (wcsxfrm): Likewise.
10912
10913 2009-01-19  Daniel P. Berrange  <berrange@redhat.com>
10914
10915         ioctl: avoid warning: no previous prototype for 'rpl_ioctl'
10916         * lib/ioctl.c: Include <sys/ioctl.h>.
10917
10918 2009-01-19  Simon Josefsson  <simon@josefsson.org>
10919
10920         * modules/getdate-tests (Depends-on): Add progname.
10921         * tests/test-getdate.c: Use progname module, to avoid link errors
10922         on non-glibc systems.
10923
10924 2009-01-18  Simon Josefsson  <simon@josefsson.org>
10925
10926         * modules/filenamecat-tests (Depends-on): Add progname.
10927         * modules/fstrcmp-tests (Depends-on): Likewise.
10928
10929         * tests/test-filenamecat.c: Use progname module, to avoid link
10930         errors on non-glibc systems.
10931         * tests/test-fstrcmp.c: Likewise.
10932
10933 2009-01-19  Daniel P. Berrange  <berrange@redhat.com>
10934
10935         gettimeofday: avoid warning: nested extern declaration of 'localtime'
10936         * lib/gettimeofday.c: Move extern declaration out of function.
10937
10938 2009-01-18  Bruno Haible  <bruno@clisp.org>
10939
10940         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't test for mblen and mbrlen.
10941         * lib/strftime.c (HAVE_MBLEN, HAVE_MBRLEN): Remove macros.
10942         (MULTIBYTE_IS_FORMAT_SAFE): Define to 1 on all platforms except OSF/1.
10943
10944 2009-01-18  Bruno Haible  <bruno@clisp.org>
10945
10946         * lib/strftime.c (MEMPCPY): Remove unused macro.
10947         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't test for mempcpy.
10948
10949 2009-01-18  Martin Lambers  <marlam@marlam.de>
10950
10951         New module 'link'.
10952         * lib/unistd.in.h (link): New declaration.
10953         * lib/link.c: New file.
10954         * m4/link.m4: New file.
10955         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_LINK,
10956         HAVE_LINK.
10957         * modules/unistd (Makefile.am): Substitute GNULIB_LINK, HAVE_LINK.
10958         * modules/link: New file.
10959         * doc/posix-functions/link.texi: Mention the new module.
10960
10961 2009-01-18  Bruno Haible  <bruno@clisp.org>
10962
10963         * tests/test-avltree_list.c (main): Call set_program_name.
10964         * tests/test-avltree_oset.c (main): Likewise.
10965         * tests/test-obstack-printf.c: Include progname.h.
10966         (main): Call set_program_name.
10967         * tests/test-quotearg.c: Include progname.h.
10968         (main): Call set_program_name.
10969         * tests/test-xmemdup0.c: Include progname.h.
10970         (main): Call set_program_name.
10971
10972 2009-01-18  Bruno Haible  <bruno@clisp.org>
10973
10974         New module 'alphasort'.
10975         * lib/dirent.in.h (alphasort): New declaration.
10976         * lib/alphasort.c: New file, from glibc with modifications.
10977         * m4/alphasort.m4: New file.
10978         * modules/alphasort: New file.
10979         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_ALPHASORT,
10980         HAVE_ALPHASORT.
10981         * modules/dirent (Makefile.am): Substitute GNULIB_ALPHASORT,
10982         HAVE_ALPHASORT.
10983         * doc/posix-functions/alphasort.texi: Mention the new module and the
10984         portability problems.
10985
10986 2009-01-18  Bruno Haible  <bruno@clisp.org>
10987
10988         New module 'scandir'.
10989         * lib/dirent.in.h (scandir): New declaration.
10990         * lib/scandir.c: New file, from glibc with modifications.
10991         * m4/scandir.m4: New file.
10992         * modules/scandir: New file.
10993         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_SCANDIR,
10994         HAVE_SCANDIR.
10995         * modules/dirent (Makefile.am): Substitute GNULIB_SCANDIR,
10996         HAVE_SCANDIR.
10997         * doc/posix-functions/scandir.texi: Mention the new module and the
10998         portability problems.
10999
11000 2009-01-17  Bruno Haible  <bruno@clisp.org>
11001
11002         * gnulib-tool (func_remove_prefix): Escape all dots in the prefix.
11003         Update documentation.
11004         (func_remove_suffix): Escape all dots in the suffix. Update
11005         documentation.
11006         (func_filter_filelist): Update documentation.
11007         Reported by Ralf Wildenhues.
11008
11009 2009-01-17  Bruno Haible  <bruno@clisp.org>
11010
11011         * modules/dprintf-posix-tests: New file.
11012         * tests/test-dprintf-posix.sh: New file.
11013         * tests/test-dprintf-posix.c: New file.
11014
11015         New modules 'dprintf', 'dprintf-posix'.
11016         * lib/stdio.in.h (dprintf): New declaration.
11017         * lib/dprintf.c: New file.
11018         * m4/dprintf.m4: New file.
11019         * m4/dprintf-posix.m4: New file.
11020         * modules/dprintf: New file.
11021         * modules/dprintf-posix: New file.
11022         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_DPRINTF,
11023         HAVE_DPRINTF, REPLACE_DPRINTF.
11024         * modules/stdio (Makefile.am): Substitute also GNULIB_DPRINTF,
11025         HAVE_DPRINTF, REPLACE_DPRINTF.
11026         * doc/posix-functions/dprintf.texi: Mention the new modules.
11027
11028 2009-01-17  Bruno Haible  <bruno@clisp.org>
11029
11030         * modules/vdprintf-posix-tests: New file.
11031         * tests/test-vdprintf-posix.sh: New file.
11032         * tests/test-vdprintf-posix.c: New file.
11033
11034         New modules 'vdprintf', 'vdprintf-posix'.
11035         * lib/stdio.in.h (vdprintf): New declaration.
11036         * lib/vdprintf.c: New file.
11037         * m4/vdprintf.m4: New file.
11038         * m4/vdprintf-posix.m4: New file.
11039         * modules/vdprintf: New file.
11040         * modules/vdprintf-posix: New file.
11041         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_VDPRINTF,
11042         HAVE_VDPRINTF, REPLACE_VDPRINTF.
11043         * modules/stdio (Makefile.am): Substitute also GNULIB_VDPRINTF,
11044         HAVE_VDPRINTF, REPLACE_VDPRINTF.
11045         * doc/posix-functions/vdprintf.texi: Mention the new modules.
11046
11047 2009-01-17  Bruno Haible  <bruno@clisp.org>
11048
11049         Fix replacement of fopen on mingw.
11050         * m4/fopen.m4 (gl_FUNC_FOPEN): Define FOPEN_TRAILING_SLASH_BUG also on
11051         mingw.
11052
11053 2009-01-17  Bruno Haible  <bruno@clisp.org>
11054
11055         Fix compilation error on HP-UX 11.00, present since 2008-09-24.
11056         * lib/fopen.c: Include <sys/types.h> and <sys/types.h>.
11057
11058 2009-01-17  Bruno Haible  <bruno@clisp.org>
11059
11060         Avoid test-fflush2.sh failure on mingw.
11061         * tests/test-fflush2.c: Include binary-io.h.
11062         (main): Put standard input into binary mode.
11063         * modules/fflush-tests (Depends-on): Add binary-io.
11064
11065 2009-01-17  Bruno Haible  <bruno@clisp.org>
11066
11067         * lib/wchar.in.h: In another particular situation, include only the
11068         system's <wchar.h> file.
11069         (_GL_ALREADY_INCLUDING_WCHAR_H): New macro.
11070         Reported by Albert Chin-A-Young <china@thewrittenword.com>
11071         and Thomas Guyot-Sionnest <dermoth@aei.ca>.
11072
11073 2009-01-17  Bruno Haible  <bruno@clisp.org>
11074
11075         Support for stripping executables in --enable-relocatable.
11076         * build-aux/install-reloc: Expect one more argument, or an environment
11077         variable RELOC_STRIP_PROG. If set, strip the destination program and
11078         its wrapper.
11079         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV, set
11080         RELOC_STRIP_PROG.
11081         * doc/relocatable-maint.texi (Supporting Relocation): Mention the need
11082         to set RELOCATABLE_STRIP.
11083         * NEWS: Mention the new Makefile requirement.
11084
11085 2009-01-17  Bruno Haible  <bruno@clisp.org>
11086
11087         * build-aux/install-reloc: Remove debugging information left over by
11088         C compiler on MacOS X.
11089
11090 2009-01-17  Bruno Haible  <bruno@clisp.org>
11091
11092         Update use of _NSGetExecutablePath after API change in MacOS X 10.4.
11093         * lib/progreloc.c (find_executable): Fix type of pointer passed to
11094         _NSGetExecutablePath.
11095
11096 2009-01-16  Jim Meyering  <meyering@redhat.com>
11097
11098         strerror: avoid warnings about discarding "const"
11099         * lib/strerror.c (rpl_strerror): Instead of returning a const
11100         string from each and every "case", use a variable, and add a single
11101         cast after the switch.
11102
11103 2009-01-16  Albert Chin-A-Young <china@thewrittenword.com>
11104
11105         * lib/arpa_inet.in.h: Add extern "C" block for C++.
11106
11107 2009-01-16  Bruno Haible  <bruno@clisp.org>
11108
11109         * m4/printf.m4 (gl_SNPRINTF_SIZE1, gl_VSNPRINTF_ZEROSIZE_C99): Use an
11110         array initializer syntax that also works in C++ mode.
11111         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
11112
11113 2009-01-16  Jim Meyering  <meyering@redhat.com>
11114
11115         poll: suppress a warning
11116         * lib/poll.c: Use #pragma GCC diagnostic ignored "-Wtype-limits"
11117         to ignore "...unsigned expression < 0 is always false" warnings.
11118
11119 2009-01-16  Daniel P. Berrange  <berrange@redhat.com>
11120
11121         poll: remove declarations of unused variables
11122         * lib/poll.c (poll) [WIN32_NATIVE]: Remove declarations of unused
11123         sockbuf and optlen.
11124
11125 2009-01-15  Bruno Haible  <bruno@clisp.org>
11126
11127         Make fflush-after-ungetc POSIX compliant on BSD systems.
11128         * lib/fflush.c (clear_ungetc_buffer_preserving_position): New function.
11129         (clear_ungetc_buffer): Implement also for other systems.
11130         (rpl_fflush): On glibc systems, invoke
11131         clear_ungetc_buffer_preserving_position. Otherwise, invoke
11132         clear_ungetc_buffer after fetching the stream's position, not before.
11133
11134 2009-01-15  Bruno Haible  <bruno@clisp.org>
11135
11136         Make fflush-after-ungetc POSIX compliant on glibc systems.
11137         * m4/fflush.m4 (gl_FUNC_FFLUSH): Test also the behaviour of fflush
11138         after ungetc.
11139         * lib/fflush.c (clear_ungetc_buffer): Implement for glibc systems.
11140         (rpl_fflush): On glibc systems, simply call the system's fflush
11141         function after clearing the ungetc buffer.
11142         * lib/fseeko.c (rpl_fseeko): Don't try to lseek past the end of file.
11143         Instead, lseek only to the end of file, then use the system's fseeko
11144         for the rest. On glibc systems, reset the EOF indicator bit.
11145
11146 2009-01-15  Jim Meyering  <meyering@redhat.com>
11147
11148         openmp.m4: revert quote-adding change, for portability to older autoconf
11149         * m4/openmp.m4: Remove the quotes added on 2009-01-14.
11150         This reverts part of 42d1eda5dcce2d68deab7a642e7f29bcd7144a0d.
11151         Simon Josefsson noticed the problem when using autoconf-2.61.
11152
11153 2009-01-15  Bruno Haible  <bruno@clisp.org>
11154
11155         * tests/test-fflush2.sh: Invoke test-fflush2 twice.
11156         * tests/test-fflush2.c (ASSERT): Always fail.
11157         (main): Add two tests for fflush() after ungetc(), taking into account
11158         the Austin Group's clarification.
11159         Suggested by Eric Blake.
11160
11161 2009-01-15  Albert Chin-A-Young  <china@thewrittenword.com>
11162
11163         mktime.m4: remove K&R-style function prototypes
11164         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove K&R-style function prototypes
11165         for the Sun C++ compiler.
11166
11167 2009-01-14  Bruno Haible  <bruno@clisp.org>
11168
11169         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_WCHAR_H): New macro, defined
11170         while including <wchar.h>.
11171         * lib/wchar.in.h: In two particular situations on HP-UX, include only
11172         the system's <wchar.h> file.
11173         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
11174
11175 2009-01-14  Bruno Haible  <bruno@clisp.org>
11176
11177         * m4/csharp.m4: Don't mention gettext on the serial number line.
11178         * m4/csharpexec.m4: Likewise.
11179         * m4/eaccess.m4: Likewise.
11180         * m4/javaexec.m4: Likewise.
11181         * m4/sig_atomic_t.m4: Likewise.
11182         * m4/tmpdir.m4: Likewise.
11183         * m4/intldir.m4: Bump gettext version.
11184         * m4/lib-ld.m4: Likewise.
11185
11186 2009-01-14  Bruno Haible  <bruno@clisp.org>
11187
11188         * lib/progname.c (set_program_name): Add more comments.
11189         Reported by Sergey Poznyakoff <gray@gnu.org.ua>.
11190
11191 2009-01-14  Simon Josefsson  <simon@josefsson.org>
11192
11193         * lib/sys_stat.in.h: Include sys/types.h for nlink_t on systems
11194         were sys/stat.h does not define it.
11195
11196 2009-01-14  Jim Meyering  <meyering@redhat.com>
11197
11198         many *.m4 files: improve m4 quoting
11199         99% of this change was performed by running the following commands:
11200         git ls-files | grep '\.m4$' | xargs perl -pi \
11201           -e 's/(AC_\w+\()([^[()]+?)([,)])/$1\[$2]$3/g;' \
11202           -e 's/(AC_\w+\((?:\[[^,]+?\], ){1})([^,[()]+?)([,)])/$1\[$2]$3/g;' \
11203           -e 's/(AC_\w+\((?:\[[^,]+?\], ){2})([^,[()]+?)([,)])/$1\[$2]$3/g;' \
11204           -e 's/(AC_\w+\((?:\[[^,]+?\], ){3})([^,[()]+?)([,)])/$1\[$2]$3/g'
11205         perl -pi -e 's/\[\.\.\.\]/.../' m4/onceonly.m4
11206         The remainder were to add Copyright dates, increment serial numbers,
11207         undo some changes in comments, exclude m4/intl.m4, and add quotes
11208         around the "1" in ",1" where the unusual spacing prohibited the
11209         above regexps from doing the job.  For more details, see
11210         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/16175>.
11211         * m4/acl.m4: Modified.
11212         * m4/afs.m4: Likewise.
11213         * m4/alloca.m4: Likewise.
11214         * m4/argp.m4: Likewise.
11215         * m4/argz.m4: Likewise.
11216         * m4/atexit.m4: Likewise.
11217         * m4/bison-i18n.m4: Likewise.
11218         * m4/bison.m4: Likewise.
11219         * m4/byteswap.m4: Likewise.
11220         * m4/c-stack.m4: Likewise.
11221         * m4/c-strtod.m4: Likewise.
11222         * m4/calloc.m4: Likewise.
11223         * m4/canonicalize-lgpl.m4: Likewise.
11224         * m4/chown.m4: Likewise.
11225         * m4/clock_time.m4: Likewise.
11226         * m4/codeset.m4: Likewise.
11227         * m4/copy-file.m4: Likewise.
11228         * m4/csharp.m4: Likewise.
11229         * m4/csharpcomp.m4: Likewise.
11230         * m4/csharpexec.m4: Likewise.
11231         * m4/d-ino.m4: Likewise.
11232         * m4/d-type.m4: Likewise.
11233         * m4/dirfd.m4: Likewise.
11234         * m4/double-slash-root.m4: Likewise.
11235         * m4/eaccess.m4: Likewise.
11236         * m4/eealloc.m4: Likewise.
11237         * m4/environ.m4: Likewise.
11238         * m4/errno_h.m4: Likewise.
11239         * m4/euidaccess.m4: Likewise.
11240         * m4/execute.m4: Likewise.
11241         * m4/fatal-signal.m4: Likewise.
11242         * m4/fchdir.m4: Likewise.
11243         * m4/fcntl_h.m4: Likewise.
11244         * m4/fileblocks.m4: Likewise.
11245         * m4/filenamecat.m4: Likewise.
11246         * m4/findprog.m4: Likewise.
11247         * m4/flexmember.m4: Likewise.
11248         * m4/fnmatch.m4: Likewise.
11249         * m4/fopen.m4: Likewise.
11250         * m4/fpending.m4: Likewise.
11251         * m4/fprintf-posix.m4: Likewise.
11252         * m4/free.m4: Likewise.
11253         * m4/frexp.m4: Likewise.
11254         * m4/frexpl.m4: Likewise.
11255         * m4/fsusage.m4: Likewise.
11256         * m4/ftruncate.m4: Likewise.
11257         * m4/gc-camellia.m4: Likewise.
11258         * m4/gc-random.m4: Likewise.
11259         * m4/gc.m4: Likewise.
11260         * m4/getaddrinfo.m4: Likewise.
11261         * m4/getcwd-abort-bug.m4: Likewise.
11262         * m4/getcwd-path-max.m4: Likewise.
11263         * m4/getdate.m4: Likewise.
11264         * m4/getdomainname.m4: Likewise.
11265         * m4/getgroups.m4: Likewise.
11266         * m4/gethostname.m4: Likewise.
11267         * m4/gethrxtime.m4: Likewise.
11268         * m4/getline.m4: Likewise.
11269         * m4/getloadavg.m4: Likewise.
11270         * m4/getndelim2.m4: Likewise.
11271         * m4/getpass.m4: Likewise.
11272         * m4/gettext.m4: Likewise.
11273         * m4/gettime.m4: Likewise.
11274         * m4/gettimeofday.m4: Likewise.
11275         * m4/gnulib-common.m4: Likewise.
11276         * m4/group-member.m4: Likewise.
11277         * m4/host-os.m4: Likewise.
11278         * m4/iconv.m4: Likewise.
11279         * m4/iconv_open.m4: Likewise.
11280         * m4/inet_ntop.m4: Likewise.
11281         * m4/inet_pton.m4: Likewise.
11282         * m4/inline.m4: Likewise.
11283         * m4/intldir.m4: Likewise.
11284         * m4/intlmacosx.m4: Likewise.
11285         * m4/intmax.m4: Likewise.
11286         * m4/intmax_t.m4: Likewise.
11287         * m4/inttypes.m4: Likewise.
11288         * m4/inttypes_h.m4: Likewise.
11289         * m4/inttypes-pri.m4: Likewise.
11290         * m4/isapipe.m4: Likewise.
11291         * m4/isnand.m4: Likewise.
11292         * m4/isnanf.m4: Likewise.
11293         * m4/isnanl.m4: Likewise.
11294         * m4/javacomp.m4: Likewise.
11295         * m4/javaexec.m4: Likewise.
11296         * m4/jm-winsz1.m4: Likewise.
11297         * m4/jm-winsz2.m4: Likewise.
11298         * m4/lchown.m4: Likewise.
11299         * m4/lcmessage.m4: Likewise.
11300         * m4/ldexpl.m4: Likewise.
11301         * m4/lib-ld.m4: Likewise.
11302         * m4/lib-link.m4: Likewise.
11303         * m4/libsigsegv.m4: Likewise.
11304         * m4/link-follow.m4: Likewise.
11305         * m4/localcharset.m4: Likewise.
11306         * m4/locale-fr.m4: Likewise.
11307         * m4/locale-ja.m4: Likewise.
11308         * m4/locale-tr.m4: Likewise.
11309         * m4/locale-zh.m4: Likewise.
11310         * m4/lock.m4: Likewise.
11311         * m4/longlong.m4: Likewise.
11312         * m4/ls-mntd-fs.m4: Likewise.
11313         * m4/lstat.m4: Likewise.
11314         * m4/malloc.m4: Likewise.
11315         * m4/mathl.m4: Likewise.
11316         * m4/mbrtowc.m4: Likewise.
11317         * m4/mbstate_t.m4: Likewise.
11318         * m4/mbswidth.m4: Likewise.
11319         * m4/memchr.m4: Likewise.
11320         * m4/memcmp.m4: Likewise.
11321         * m4/memcpy.m4: Likewise.
11322         * m4/memmem.m4: Likewise.
11323         * m4/memmove.m4: Likewise.
11324         * m4/mempcpy.m4: Likewise.
11325         * m4/memrchr.m4: Likewise.
11326         * m4/memset.m4: Likewise.
11327         * m4/minmax.m4: Likewise.
11328         * m4/mkdir-slash.m4: Likewise.
11329         * m4/mkdtemp.m4: Likewise.
11330         * m4/mktime.m4: Likewise.
11331         * m4/mmap-anon.m4: Likewise.
11332         * m4/mountlist.m4: Likewise.
11333         * m4/nanosleep.m4: Likewise.
11334         * m4/nls.m4: Likewise.
11335         * m4/nocrash.m4: Likewise.
11336         * m4/open.m4: Likewise.
11337         * m4/openat.m4: Likewise.
11338         * m4/openmp.m4: Likewise.
11339         * m4/pathmax.m4: Likewise.
11340         * m4/perl.m4: Likewise.
11341         * m4/physmem.m4: Likewise.
11342         * m4/pipe.m4: Likewise.
11343         * m4/po.m4: Likewise.
11344         * m4/poll.m4: Likewise.
11345         * m4/posixtm.m4: Likewise.
11346         * m4/posixver.m4: Likewise.
11347         * m4/printf-frexp.m4: Likewise.
11348         * m4/printf-frexpl.m4: Likewise.
11349         * m4/printf-posix.m4: Likewise.
11350         * m4/printf-posix-rpl.m4: Likewise.
11351         * m4/printf.m4: Likewise.
11352         * m4/progtest.m4: Likewise.
11353         * m4/putenv.m4: Likewise.
11354         * m4/readline.m4: Likewise.
11355         * m4/readlink.m4: Likewise.
11356         * m4/readutmp.m4: Likewise.
11357         * m4/realloc.m4: Likewise.
11358         * m4/regex.m4: Likewise.
11359         * m4/relocatable.m4: Likewise.
11360         * m4/relocatable-lib.m4: Likewise.
11361         * m4/rename-dest-slash.m4: Likewise.
11362         * m4/rename.m4: Likewise.
11363         * m4/rmdir-errno.m4: Likewise.
11364         * m4/rmdir.m4: Likewise.
11365         * m4/roundf.m4: Likewise.
11366         * m4/roundl.m4: Likewise.
11367         * m4/rpmatch.m4: Likewise.
11368         * m4/save-cwd.m4: Likewise.
11369         * m4/selinux-selinux-h.m4: Likewise.
11370         * m4/setenv.m4: Likewise.
11371         * m4/settime.m4: Likewise.
11372         * m4/sig2str.m4: Likewise.
11373         * m4/sig_atomic_t.m4: Likewise.
11374         * m4/signalblocking.m4: Likewise.
11375         * m4/signbit.m4: Likewise.
11376         * m4/sigpipe.m4: Likewise.
11377         * m4/sockets.m4: Likewise.
11378         * m4/sockpfaf.m4: Likewise.
11379         * m4/st_dm_mode.m4: Likewise.
11380         * m4/stat-time.m4: Likewise.
11381         * m4/stdbool.m4: Likewise.
11382         * m4/stdint.m4: Likewise.
11383         * m4/stdint_h.m4: Likewise.
11384         * m4/stpcpy.m4: Likewise.
11385         * m4/stpncpy.m4: Likewise.
11386         * m4/strcase.m4: Likewise.
11387         * m4/strchrnul.m4: Likewise.
11388         * m4/strcspn.m4: Likewise.
11389         * m4/strdup.m4: Likewise.
11390         * m4/strftime.m4: Likewise.
11391         * m4/strndup.m4: Likewise.
11392         * m4/strnlen.m4: Likewise.
11393         * m4/strpbrk.m4: Likewise.
11394         * m4/strptime.m4: Likewise.
11395         * m4/strsep.m4: Likewise.
11396         * m4/strtod.m4: Likewise.
11397         * m4/strtoimax.m4: Likewise.
11398         * m4/strtok_r.m4: Likewise.
11399         * m4/strtol.m4: Likewise.
11400         * m4/strtoll.m4: Likewise.
11401         * m4/strtoul.m4: Likewise.
11402         * m4/strtoull.m4: Likewise.
11403         * m4/strtoumax.m4: Likewise.
11404         * m4/strverscmp.m4: Likewise.
11405         * m4/threadlib.m4: Likewise.
11406         * m4/timegm.m4: Likewise.
11407         * m4/tm_gmtoff.m4: Likewise.
11408         * m4/tmpdir.m4: Likewise.
11409         * m4/tmpfile.m4: Likewise.
11410         * m4/tzset.m4: Likewise.
11411         * m4/uintmax_t.m4: Likewise.
11412         * m4/unlinkdir.m4: Likewise.
11413         * m4/unlocked-io.m4: Likewise.
11414         * m4/uptime.m4: Likewise.
11415         * m4/userspec.m4: Likewise.
11416         * m4/utimbuf.m4: Likewise.
11417         * m4/utime.m4: Likewise.
11418         * m4/utimes-null.m4: Likewise.
11419         * m4/utimes.m4: Likewise.
11420         * m4/vararrays.m4: Likewise.
11421         * m4/vasnprintf.m4: Likewise.
11422         * m4/vfprintf-posix.m4: Likewise.
11423         * m4/vprintf-posix.m4: Likewise.
11424         * m4/wait-process.m4: Likewise.
11425         * m4/wchar_t.m4: Likewise.
11426         * m4/wint_t.m4: Likewise.
11427         * m4/write-any-file.m4: Likewise.
11428         * m4/yield.m4: Likewise.
11429
11430 2009-01-13  Bruno Haible  <bruno@clisp.org>
11431
11432         Avoid test-copy-file.sh failures when ACL support insufficient.
11433         * modules/copy-file-tests (Makefile.am): Pass USE_ACL in
11434         TESTS_ENVIRONMENT.
11435         * tests/test-copy-file.sh: Skip the ACL comparisons if USE_ACL is 0.
11436         Reported by Jim Meyering.
11437
11438 2009-01-13  Bruno Haible  <bruno@clisp.org>
11439
11440         * modules/unistdio/u-printf-args (Files): Add m4/stdint_h.m4 and
11441         m4/inttypes_h.m4, needed by m4/intmax_t.m4.
11442         * modules/unistdio/u8-printf-parse (Files): Likewise.
11443         * modules/unistdio/u32-printf-parse (Files): Likewise.
11444         * modules/unistdio/ulc-printf-parse (Files): Likewise.
11445
11446 2009-01-13  Simon Josefsson  <simon@josefsson.org>
11447
11448         * modules/unistdio/u16-printf-parse (Files): Add m4/stdint_h.m4
11449         and m4/inttypes_h.m4 too.
11450
11451 2009-01-12  Eric Blake  <ebb9@byu.net>
11452
11453         tests: IRIX 6.2 cc can't compile -0.0 into .data
11454         * tests/test-ceill.c (minus_zero): Compute -0.0L at runtime,
11455         rather than at compile-time.
11456         * tests/test-floorl.c (minus_zero): Likewise.
11457         * tests/test-frexpl.c (minus_zero): Likewise.
11458         * tests/test-isnan.c (minus_zerol): Likewise.
11459         * tests/test-isnanl.h (minus_zero): Likewise.
11460         * tests/test-ldexpl.c (minus_zero): Likewise.
11461         * tests/test-roundl.c (minus_zero): Likewise.
11462         * tests/test-signbit.c (minus_zerol): Likewise.
11463         * tests/test-snprintf-posix.h (minus_zerol): Likewise.
11464         * tests/test-sprintf-posix.h (minus_zerol): Likewise.
11465         * tests/test-truncl.c (minus_zero): Likewise.
11466         * tests/test-vasnprintf-posix.c (minus_zerol): Likewise.
11467         * tests/test-vasprintf-posix.c (minus_zerol): Likewise.
11468         Reported by Tom G. Christensen and Nelson H. F. Beebe.
11469
11470 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
11471
11472         regex: fix glibc bug 9697
11473         * lib/regcomp.c (re_compile_fastmap_iter): Rewrite COMPLEX_BRACKET
11474         handling.
11475
11476 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
11477
11478         regex: fix glibc bug 697
11479         * lib/regexec.c (prune_impossible_nodes): Handle sifted_states[0]
11480         being NULL also if there are no backreferences.
11481
11482 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
11483
11484         regex: merge glibc changes
11485         * lib/regcomp.c (re_compile_fastmap_iter): Use __mbrtowc.
11486         * lib/regex_internal.c (build_wcs_buffer, build_wcs_upper_buffer,
11487         re_string_skip_chars, re_string_reconstruct): Likewise.
11488         * lib/regex_internal.h [!_LIBC] (__mbrtowc): New #define.
11489
11490 2009-01-07  Jim Meyering  <meyering@redhat.com>
11491
11492         poll: filter through cppi
11493         * lib/poll.c: Indent cpp directives to reflect nesting.
11494
11495 2009-01-07  Daniel P. Berrange  <berrange@redhat.com>
11496
11497         poll: don't return uninitialized
11498         * lib/poll.c (poll) [WIN32_NATIVE]: Initialize "rc".
11499
11500 2009-01-06  Jeremy Olexa <darkside@gentoo.org>  (tiny change)
11501
11502         avoid compile failure on AIX 6.1
11503         * lib/getloadavg.c [HAVE_LIBPERFSTAT]: Include <sys/protosw.h>.
11504         Details in http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/15465
11505
11506 2009-01-04  Jim Meyering  <meyering@redhat.com>
11507
11508         remove duplicate inclusion of <stdio.h>
11509         * tests/test-fprintf-posix.c: Likewise.
11510         * tests/test-printf-posix.c: Likewise.
11511         * tests/test-snprintf-posix.c: Likewise.
11512         * tests/test-sprintf-posix.c: Likewise.
11513         * tests/test-vasprintf-posix.c: Likewise.
11514         * tests/test-vfprintf-posix.c: Likewise.
11515         * tests/test-vprintf-posix.c: Likewise.
11516         * tests/test-vsnprintf-posix.c: Likewise.
11517         * tests/test-vsprintf-posix.c: Likewise.
11518
11519 2009-01-03  Jim Meyering  <meyering@redhat.com>
11520
11521         gnulib-tool: fix sed-based filtering
11522         * gnulib-tool (func_filter_filelist): Remove extra backslash
11523         in sed_fff_filter definition.
11524
11525 2009-01-02  Jim Meyering  <meyering@redhat.com>
11526
11527         strftime: avoid compilation failure on Solaris 2.6
11528         * modules/strftime (Depends-on): Add mbrlen and mbsinit.
11529         * lib/strftime.c [DO_MULTIBYTE]: Include <wchar.h> unconditionally.
11530         Don't #define mbrlen or mbsinit, since now they're guaranteed to
11531         be available.  Reported by Tom G. Christensen.  Details in
11532         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/16180>.
11533
11534 2009-01-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11535             Bruno Haible  <bruno@clisp.org>
11536
11537         Speed up gnulib-tool by doing more string processing through shell
11538         built-ins.
11539         * gnulib-tool (fast_func_append): New variable.
11540         (func_remove_prefix, func_remove_suffix): New functions.
11541         (fast_func_remove_prefix, fast_func_remove_suffix): New variables.
11542         (func_filter_filelist): New function.
11543         (func_get_dependencies): Use func_remove_suffix instead of sed.
11544         (func_get_automake_snippet): Use func_filter_filelist instead of a
11545         subshell and sed invocation.
11546
11547 2009-01-01  Bruno Haible  <bruno@clisp.org>
11548
11549         Fix a security bug.
11550         * gnulib-tool (func_import, import, update): Don't allow the characters
11551         '"', '$', '`', '\' in macro arguments that become part of commands that
11552         are evaluated.
11553
11554 2009-01-01  Bruno Haible  <bruno@clisp.org>
11555
11556         * gnulib-tool (func_reset_sigpipe): Add more comments.
11557
11558 2009-01-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11559
11560         * gnulib-tool (func_modules_add_dummy, func_emit_lib_Makefile_am,
11561         func_emit_tests_Makefile_am, func_import): Abort loops early if we
11562         already know the answer.
11563
11564 2009-01-01  Jim Meyering  <meyering@redhat.com>
11565
11566         * lib/version-etc.c (version_etc_va): Update copyright year.
11567
11568 2008-12-30  Bruno Haible  <bruno@clisp.org>
11569
11570         * m4/lib-prefix.m4 (AC_LIB_LINKFLAGS_BODY): Don't overwrite
11571         LIB${NAME}_PREFIX when considering the dependencies of lib${name}.
11572         Reported by Charles Wilson <cygwin@cwilson.fastmail.fm>.
11573
11574 2008-12-29  Eric Blake  <ebb9@byu.net>
11575
11576         multiarch: avoid autoconf AC_REQUIRE bug
11577         * m4/multiarch.m4 (gl_MULTIARCH): Split body...
11578         (gl_MULTIARCH_BODY): ...into new macro, to work around bug in Autoconf
11579         2.63 and older.
11580         Reported by Bruno Haible, and analyzed in
11581         http://lists.gnu.org/archive/html/bug-autoconf/2008-12/msg00039.html
11582
11583 2008-12-29  Bruno Haible  <bruno@clisp.org>
11584
11585         * gnulib-tool (func_import): When generating sed-ignore-removed, handle
11586         files in subdirectories correctly.
11587         Reported by Ralf Wildenhues.
11588
11589 2008-12-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11590
11591         * gnulib-tool (func_update_ignorelist): Use 'join - FILE'
11592         rather than 'join FILE -', for Solaris join.
11593
11594 2008-12-29  Bruno Haible  <bruno@clisp.org>
11595
11596         * m4/codeset.m4 (AM_LANGINFO_CODESET): More systematic m4 argument
11597         quoting.
11598         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
11599         * m4/glibc2.m4 (gt_GLIBC2): Likewise.
11600         * m4/glibc21.m4 (gl_GLIBC21): Likewise.
11601         * m4/iconv.m4 (AM_ICONV_LINK, AM_ICONV): Likewise.
11602         * m4/intdiv0.m4 (gt_INTDIV0): Likewise.
11603         * m4/intlmacosx.m4 (gt_INTL_MACOSX): Likewise.
11604         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Likewise.
11605         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Likewise.
11606         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
11607         * m4/lcmessage.m4 (gt_LC_MESSAGES): Likewise.
11608         * m4/nls.m4 (AM_NLS): Likewise.
11609         * m4/po.m4 (AM_PO_SUBDIRS): Likewise.
11610         * m4/printf-posix.m4 (gt_PRINTF_POSIX): Likewise.
11611         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
11612         * m4/size_max.m4 (gl_SIZE_MAX): Likewise.
11613         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Likewise.
11614         * m4/threadlib.m4 (gl_THREADLIB_BODY): Likewise.
11615         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Likewise.
11616         * m4/visibility.m4 (gl_VISIBILITY): Likewise.
11617         * m4/wchar_t.m4 (gt_TYPE_WCHAR_T): Likewise.
11618         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
11619         * m4/xsize.m4 (gl_XSIZE): Likewise.
11620         Suggested by Jim Meyering.
11621
11622 2008-11-17  Bruce Korb  <bkorb@gnu.org>
11623
11624         * lib/parse-duration.h: non-iso form accepts years, months weeks, too
11625         * lib/parse-duration.c: use a switch instead of cascading if's.
11626
11627 2008-12-29  Eric Blake  <ebb9@byu.net>
11628
11629         wchar.h: supply WEOF on Irix 5.3
11630         * lib/wchar.in.h (wint_t): Also supply WEOF.
11631         * lib/wctype.in.h (wint_t): Likewise.
11632         * doc/posix-headers/wchar.texi (wchar.h): Document the bug.
11633         * doc/posix-headers/wctype.texi (wctype.h): Likewise.
11634         Reported by Tom G. Christensen.
11635
11636 2008-12-26  Bruno Haible  <bruno@clisp.org>
11637
11638         * m4/multiarch.m4 (gl_MULTIARCH): Recognize also the architecture names
11639         i486, i586, i686.
11640
11641 2008-12-26  Bruno Haible  <bruno@clisp.org>
11642
11643         * lib/stdlib.in.h (struct random_data): Fix indentation of comments.
11644
11645 2008-12-26  Bruno Haible  <bruno@clisp.org>
11646
11647         * lib/stdint.in.h: Move the include of <wchar.h> down until after all
11648         the types are defined. Also conditionalize it on __STDC_LIMIT_MACROS,
11649         not __STDC_CONSTANT_MACROS.
11650         Reported by Nelson H. F. Beebe <beebe@math.utah.edu> via Eric Blake.
11651
11652 2008-12-25  Bruno Haible  <bruno@clisp.org>
11653
11654         Add support for universal builds to vasnprintf.
11655         * m4/printf.m4 (gl_PRINTF_ENOMEM): Require gl_MULTIARCH. In Apple
11656         universal builds, guess no.
11657         * modules/vasnprintf-posix (Depends-on): Add multiarch.
11658         * modules/vasprintf-posix (Depends-on): Likewise.
11659         * modules/fprintf-posix (Depends-on): Likewise.
11660         * modules/vfprintf-posix (Depends-on): Likewise.
11661         * modules/snprintf-posix (Depends-on): Likewise.
11662         * modules/vsnprintf-posix (Depends-on): Likewise.
11663         * modules/sprintf-posix (Depends-on): Likewise.
11664         * modules/vsprintf-posix (Depends-on): Likewise.
11665         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
11666         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
11667         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
11668         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
11669         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
11670         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
11671         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
11672
11673         Add support for universal builds to <inttypes.h>.
11674         * lib/inttypes.in.h (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX,
11675         _SCNu64_PREFIX): In Apple
11676         universal builds, define directly, using _LP64.
11677         * m4/inttypes.m4 (gl_INTTYPES_H): In Apple universal builds, set
11678         INT64_MAX_EQ_LONG_MAX and UINT64_MAX_EQ_ULONG_MAX to -1.
11679         * modules/inttypes (Depends-on): Add multiarch.
11680         (Makefile.am): Substitute APPLE_UNIVERSAL_BUILD.
11681
11682         Add support for universal builds to <stdint.h>.
11683         * lib/stdint.in.h (PDFDIFF_MIN, PTRDIFF_MAX, SIZE_MAX): In Apple
11684         universal builds, define directly, using _LP64.
11685         * m4/stdint.m4 (gl_STDINT_TYPE_PROPERTIES): Require gl_MULTIARCH. In
11686         Apple universal builds, don't test for the size and suffix of ptrdiff_t
11687         and size_t.
11688         * modules/stdint (Depends-on): Add multiarch.
11689         (Makefile.am): Substitute APPLE_UNIVERSAL_BUILD.
11690
11691         New module 'multiarch'.
11692         * modules/multiarch: New file.
11693         * m4/multiarch.m4: New file.
11694
11695 2008-12-25  Bruno Haible  <bruno@clisp.org>
11696
11697         * gnulib-tool (func_create_testdir): Avoid failure of mv command.
11698
11699 2008-12-25  Bruno Haible  <bruno@clisp.org>
11700
11701         * modules/btowc (License): Relicense under LGPLv2+.
11702         * modules/mbsinit (License): Likewise.
11703         * modules/mbrtowc (License): Likewise.
11704         * modules/wcrtomb (License): Likewise.
11705         * modules/streq (License): Likewise.
11706         Reported by David Lutterkort <lutter@redhat.com>.
11707
11708 2008-12-23  Bruno Haible  <bruno@clisp.org>
11709
11710         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Fix conditional and comment.
11711
11712 2008-12-23  Bruno Haible  <bruno@clisp.org>
11713
11714         Module getaddrinfo requires linking with $(GETADDRINFO_LIB).
11715         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Put link options into
11716         GETADDRINFO_LIB, not in LIBS.
11717         * modules/getaddrinfo (Link): Set to $(GETADDRINFO_LIB).
11718         * modules/canon-host (Link): Likewise.
11719         * NEWS: Mention the change.
11720         * modules/getaddrinfo-tests (test_getaddrinfo_LDADD): Add the
11721         GETADDRINFO_LIB.
11722
11723 2008-12-22  Bruno Haible  <bruno@clisp.org>
11724
11725         * doc/posix-functions/iswalnum_l.texi: Mention limitation of wchar_t.
11726         * doc/posix-functions/iswalpha_l.texi: Likewise.
11727         * doc/posix-functions/iswblank_l.texi: Likewise.
11728         * doc/posix-functions/iswcntrl_l.texi: Likewise.
11729         * doc/posix-functions/iswctype_l.texi: Likewise.
11730         * doc/posix-functions/iswdigit_l.texi: Likewise.
11731         * doc/posix-functions/iswgraph_l.texi: Likewise.
11732         * doc/posix-functions/iswlower_l.texi: Likewise.
11733         * doc/posix-functions/iswprint_l.texi: Likewise.
11734         * doc/posix-functions/iswpunct_l.texi: Likewise.
11735         * doc/posix-functions/iswspace_l.texi: Likewise.
11736         * doc/posix-functions/iswupper_l.texi: Likewise.
11737         * doc/posix-functions/iswxdigit_l.texi: Likewise.
11738         * doc/posix-functions/mbsnrtowcs.texi: Likewise.
11739         * doc/posix-functions/open_wmemstream.texi: Likewise.
11740         * doc/posix-functions/swscanf.texi: Likewise.
11741         * doc/posix-functions/towctrans_l.texi: Likewise.
11742         * doc/posix-functions/towlower.texi: Likewise.
11743         * doc/posix-functions/towlower_l.texi: Likewise.
11744         * doc/posix-functions/towupper.texi: Likewise.
11745         * doc/posix-functions/towupper_l.texi: Likewise.
11746         * doc/posix-functions/vfwprintf.texi: Likewise.
11747         * doc/posix-functions/vfwscanf.texi: Likewise.
11748         * doc/posix-functions/vswscanf.texi: Likewise.
11749         * doc/posix-functions/vwprintf.texi: Likewise.
11750         * doc/posix-functions/vwscanf.texi: Likewise.
11751         * doc/posix-functions/wcpcpy.texi: Likewise.
11752         * doc/posix-functions/wcpncpy.texi: Likewise.
11753         * doc/posix-functions/wcscasecmp.texi: Likewise.
11754         * doc/posix-functions/wcscasecmp_l.texi: Likewise.
11755         * doc/posix-functions/wcscoll_l.texi: Likewise.
11756         * doc/posix-functions/wcsdup.texi: Likewise.
11757         * doc/posix-functions/wcsncasecmp.texi: Likewise.
11758         * doc/posix-functions/wcsncasecmp_l.texi: Likewise.
11759         * doc/posix-functions/wcsnlen.texi: Likewise.
11760         * doc/posix-functions/wcsnrtombs.texi: Likewise.
11761         * doc/posix-functions/wcsxfrm_l.texi: Likewise.
11762         * doc/posix-functions/wctrans_l.texi: Likewise.
11763         * doc/posix-functions/wctype_l.texi: Likewise.
11764         * doc/glibc-functions/fgetwc_unlocked.texi: Likewise.
11765         * doc/glibc-functions/fgetws_unlocked.texi: Likewise.
11766         * doc/glibc-functions/fputwc_unlocked.texi: Likewise.
11767         * doc/glibc-functions/fputws_unlocked.texi: Likewise.
11768         * doc/glibc-functions/getwc_unlocked.texi: Likewise.
11769         * doc/glibc-functions/getwchar_unlocked.texi: Likewise.
11770         * doc/glibc-functions/putwc_unlocked.texi: Likewise.
11771         * doc/glibc-functions/putwchar_unlocked.texi: Likewise.
11772         * doc/glibc-functions/wcschrnul.texi: Likewise.
11773         * doc/glibc-functions/wcsftime_l.texi: Likewise.
11774         * doc/glibc-functions/wcstod_l.texi: Likewise.
11775         * doc/glibc-functions/wcstof_l.texi: Likewise.
11776         * doc/glibc-functions/wcstol_l.texi: Likewise.
11777         * doc/glibc-functions/wcstold_l.texi: Likewise.
11778         * doc/glibc-functions/wcstoll_l.texi: Likewise.
11779         * doc/glibc-functions/wcstoq.texi: Likewise.
11780         * doc/glibc-functions/wcstoul_l.texi: Likewise.
11781         * doc/glibc-functions/wcstoull_l.texi: Likewise.
11782         * doc/glibc-functions/wcstouq.texi: Likewise.
11783         * doc/glibc-functions/wmempcpy.texi: Likewise.
11784
11785 2008-12-22  Ingo Weinhold  <ingo_weinhold@gmx.de>  (tiny change)
11786             Eric Blake  <ebb9@byu.net>
11787             Paolo Bonzini  <bonzini@gnu.org>
11788             Bruno Haible  <bruno@clisp.org>
11789
11790         Make c-stack work on Haiku.
11791         * lib/c-stack.c (SA_ONSTACK): Define fallback.
11792         (c_stack_action): Use SA_ONSTACK flag.
11793
11794 2008-12-22  Bruno Haible  <bruno@clisp.org>
11795
11796         * m4/locale-fr.m4 (gt_LOCALE_FR_UTF8): Treat Haiku like BeOS.
11797
11798 2008-12-22  Bruno Haible  <bruno@clisp.org>
11799
11800         Work around mbrlen() bugs on AIX, HP-UX, OSF/1, Solaris.
11801         * m4/mbrlen.m4 (gl_FUNC_MBRLEN): Set REPLACE_MBRLEN if mbrtowc is
11802         being overridden.
11803         (gl_MBRLEN_INCOMPLETE_STATE, gl_MBRLEN_RETVAL, gl_MBRLEN_NUL_RETVAL):
11804         New macros.
11805         * lib/wchar.in.h (mbrlen): Override if REPLACE_MBRLEN is set.
11806         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBRLEN.
11807         * modules/wchar (Makefile.am): Substitute REPLACE_MBRLEN.
11808         * doc/posix-functions/mbrlen.texi: Mention the various platform bugs.
11809
11810 2008-12-22  Bruno Haible  <bruno@clisp.org>
11811
11812         * m4/mbrtowc.m4 (gl_MBRTOWC_INCOMPLETE_STATE): Remove unused variable
11813         from test code.
11814
11815 2008-12-22  Eric Blake  <ebb9@byu.net>
11816
11817         Avoid gcc warnings on cygwin.
11818         * lib/regex_internal.c (re_string_reconstruct) [!RE_ENABLE_I18N]:
11819         Avoid unused variable.
11820         * lib/regexec.c (check_arrival_add_next_nodes) [!RE_ENABLE_I18N]:
11821         Likewise.
11822
11823 2008-12-22  Bruno Haible  <bruno@clisp.org>
11824
11825         Remove HAVE_MBRTOWC conditionals.
11826         * lib/mbscasecmp.c: Include mbuiter.h unconditionally.
11827         (mbscasecmp): Assume mbrtowc function.
11828         * lib/mbscasestr.c: Include mbuiter.h unconditionally.
11829         (knuth_morris_pratt_multibyte, mbscasestr): Assume mbrtowc function.
11830         * lib/mbschr.c: Include mbuiter.h unconditionally.
11831         (mbschr): Assume mbrtowc function.
11832         * lib/mbscspn.c: Include mbuiter.h unconditionally.
11833         (mbscspn): Assume mbrtowc function.
11834         * lib/mbslen.c: Include mbuiter.h unconditionally.
11835         (mbslen): Assume mbrtowc function.
11836         * lib/mbsncasecmp.c: Include mbuiter.h unconditionally.
11837         (mbsncasecmp): Assume mbrtowc function.
11838         * lib/mbsnlen.c: Include mbiter.h unconditionally.
11839         (mbsnlen): Assume mbrtowc function.
11840         * lib/mbspbrk.c: Include mbuiter.h unconditionally.
11841         (mbspbrk): Assume mbrtowc function.
11842         * lib/mbspcasecmp.c: Include mbuiter.h unconditionally.
11843         (mbspcasecmp): Assume mbrtowc function.
11844         * lib/mbsrchr.c: Include mbuiter.h unconditionally.
11845         (mbsrchr): Assume mbrtowc function.
11846         * lib/mbssep.c: Include mbuiter.h unconditionally.
11847         (mbssep): Assume mbrtowc function.
11848         * lib/mbsspn.c: Include mbuiter.h unconditionally.
11849         (mbsspn): Assume mbrtowc function.
11850         * lib/mbsstr.c: Include mbuiter.h unconditionally.
11851         (knuth_morris_pratt_multibyte, mbsstr): Assume mbrtowc function.
11852         * lib/mbstok_r.c: Include mbuiter.h unconditionally.
11853         (mbstok_r): Assume mbrtowc function.
11854         * lib/propername.c: Include mbuiter.h unconditionally.
11855         (mbsstr_trimmed_wordbounded): Assume mbrtowc function.
11856         * lib/trim.c: Include mbchar.h, mbiter.h uncondtionally.
11857         (trim2): Assume mbrtowc function.
11858         * lib/mbswidth.c (mbsinit): Remove fallback definition.
11859         (mbsnwidth): Assume mbrtowc function.
11860         * modules/mbswidth (Depends-on): Add mbrtowc, mbsinit.
11861         * lib/quotearg.c (MB_CUR_MAX, mbstate_t, mbrtowc, iswprint): Remove
11862         fallback definitions.
11863         * modules/quotearg (Depends-on): Add mbrtowc, mbsinit.
11864
11865 2008-12-22  Bruno Haible  <bruno@clisp.org>
11866
11867         * doc/posix-functions/mbtowc.texi: Mention a glibc bug.
11868
11869 2008-12-22  Paolo Bonzini  <bonzini@gnu.org>
11870
11871         * modules/regex: Request emulations for the mb*/wc* functions we need.
11872         * m4/regex.m4: Don't look for those functions here.
11873         * lib/regex_internal.h: Do not check HAVE_WCRTOMB and HAVE_MBRTOWC.
11874
11875 2008-12-22  Bruno Haible  <bruno@clisp.org>
11876
11877         * modules/fnmatch (Depends-on): Remove duplicated dependency.
11878
11879 2008-12-21  Bruno Haible  <bruno@clisp.org>
11880
11881         Make mbiter.h, mbuiter.h, mbfile.h usable unconditionally.
11882         * modules/mbiter (Depends-on): Add mbrtowc, mbsinit.
11883         (Include): Remove conditionalization.
11884         * modules/mbuiter (Depends-on): Add mbrtowc, mbsinit.
11885         (Include): Remove conditionalization.
11886         * modules/mbfile (Depends-on): Add mbrtowc, mbsinit.
11887         (Include): Remove conditionalization.
11888         * m4/mbiter.m4 (gl_MBITER): Deprecate the use of AC_FUNC_MBRTOWC.
11889         * m4/mbfile.m4 (gl_MBFILE): Likewise.
11890         * NEWS: Mention the change.
11891         Reported by Alan Hourihane <alanh@fairlite.co.uk>
11892         via Sergey Poznyakoff <gray@gnu.org.ua>.
11893
11894 2008-12-21  Bruno Haible  <bruno@clisp.org>
11895
11896         * MODULES.html.sh (Extended multibyte and wide character utilities
11897         <wchar.h>): Add btowc, wctob, mbsinit, mbrlen, mbrtowc, mbsrtowcs,
11898         wcrtomb, wcsrtombs.
11899         (Support for systems lacking POSIX:2008): Add accept, bind, close,
11900         connect, fclose, getpeername, getsockname, getsockopt, hostent, listen,
11901         mbsnrtowcs, posix_spawn*, recv, recvfrom, sched, select, send, sendto,
11902         setsockopt, shutdown, socket, spawn, sys_wait, wcsnrtombs, write.
11903
11904 2008-12-21  Bruno Haible  <bruno@clisp.org>
11905
11906         * MODULES.html.sh: Change section titles to refer to POSIX:2008.
11907
11908 2008-12-21  Bruno Haible  <bruno@clisp.org>
11909
11910         * modules/wcsnrtombs-tests: New file.
11911         * tests/test-wcsnrtombs1.sh: New file.
11912         * tests/test-wcsnrtombs2.sh: New file.
11913         * tests/test-wcsnrtombs3.sh: New file.
11914         * tests/test-wcsnrtombs4.sh: New file.
11915         * tests/test-wcsnrtombs.c: New file.
11916
11917         New module 'wcsnrtombs'.
11918         * lib/wchar.in.h (wcsnrtombs): New declaration.
11919         * lib/wcsnrtombs.c: New file.
11920         * lib/wcsrtombs-state.c: New file.
11921         * lib/wcsrtombs.c: Refer to _gl_wcsrtombs_state.
11922         (internal_state): Remove variable.
11923         * m4/wcsnrtombs.m4: New file.
11924         * m4/wcsrtombs.m4 (gl_FUNC_WCSRTOMBS): Add wcsrtombs-state.c to the
11925         compilation units.
11926         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCSNRTOMBS,
11927         HAVE_WCSNRTOMBS.
11928         * modules/wchar (Makefile.am): Substitute GNULIB_WCSNRTOMBS,
11929         HAVE_WCSNRTOMBS.
11930         * modules/wcsnrtombs: New file.
11931         * modules/wcsrtombs (Files): Add lib/wcsrtombs-state.c.
11932         * doc/posix-functions/wcsnrtombs.texi: Mention the new module.
11933
11934 2008-12-21  Bruno Haible  <bruno@clisp.org>
11935
11936         * modules/wcsrtombs-tests: New file.
11937         * tests/test-wcsrtombs1.sh: New file.
11938         * tests/test-wcsrtombs2.sh: New file.
11939         * tests/test-wcsrtombs3.sh: New file.
11940         * tests/test-wcsrtombs4.sh: New file.
11941         * tests/test-wcsrtombs.c: New file.
11942
11943         New module 'wcsrtombs'.
11944         * lib/wchar.in.h (wcsrtombs): New declaration.
11945         * lib/wcsrtombs.c: New file.
11946         * m4/wcsrtombs.m4: New file.
11947         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCSRTOMBS,
11948         HAVE_WCSRTOMBS, REPLACE_WCSRTOMBS.
11949         * modules/wchar (Makefile.am): Substitute GNULIB_WCSRTOMBS,
11950         HAVE_WCSRTOMBS, REPLACE_WCSRTOMBS.
11951         * modules/wcsrtombs: New file.
11952         * doc/posix-functions/wcsrtombs.texi: Mention the new module and the
11953         bugs.
11954
11955 2008-12-21  Bruno Haible  <bruno@clisp.org>
11956
11957         Work around a wcrtomb() bug on Solaris 10 and OSF/1 5.1.
11958         * lib/wchar.in.h (wcrtomb): Override if REPLACE_WCRTOMB is set.
11959         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Test the return value of wcrtomb
11960         with NULL destination argument in various locales. Set REPLACE_WCRTOMB
11961         if not correct.
11962         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCRTOMB.
11963         * modules/wchar (Makefile.am): Substitute REPLACE_WCRTOMB.
11964         * modules/wcrtomb (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
11965         m4/locale-zh.m4, m4/codeset.m4.
11966         * doc/posix-functions/wcrtomb.texi: Document the bug.
11967
11968 2008-12-21  Bruno Haible  <bruno@clisp.org>
11969
11970         Work around a btowc() bug on IRIX 6.5.
11971         * lib/wchar.in.h (btowc): Override if REPLACE_BTOWC is set.
11972         * m4/btowc.m4 (gl_FUNC_BTOWC): Test whether btowc(EOF) is correct. Set
11973         REPLACE_WTOBC if not.
11974         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_BTOWC.
11975         * modules/wchar (Makefile.am): Substitute REPLACE_BTOWC.
11976         * doc/posix-functions/btowc.texi: Mention the IRIX bug.
11977
11978 2008-12-21  Bruno Haible  <bruno@clisp.org>
11979
11980         * modules/wcrtomb-tests: New file.
11981         * tests/test-wcrtomb.sh: New file.
11982         * tests/test-wcrtomb.c: New file.
11983
11984         New module 'wcrtomb'.
11985         * lib/wchar.in.h (wcrtomb): New declaration.
11986         * lib/wcrtomb.c: New file.
11987         * m4/wcrtomb.m4: New file.
11988         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCRTOMB,
11989         HAVE_WCRTOMB.
11990         * modules/wchar (Makefile.am): Substitute GNULIB_WCRTOMB,
11991         HAVE_WCRTOMB.
11992         * modules/wcrtomb: New file.
11993         * doc/posix-functions/wcrtomb.texi: Mention the new module.
11994
11995 2008-12-21  Bruno Haible  <bruno@clisp.org>
11996
11997         * modules/mbrtowc (Files): Add m4/codeset.m4, needed by m4/locale-fr.m4.
11998         * modules/mbsrtowcs (Files): Likewise.
11999         * modules/wctob (Files): Likewise.
12000         * modules/c-strcase-tests (Files): Likewise.
12001         * modules/unistdio/u8-vasnprintf-tests (Files): Likewise.
12002         * modules/unistdio/u16-vasnprintf-tests (Files): Likewise.
12003         * modules/unistdio/u32-vasnprintf-tests (Files): Likewise.
12004         * modules/unistdio/ulc-vasnprintf-tests (Files): Likewise.
12005         * modules/vasnprintf-posix-tests (Files): Likewise.
12006
12007 2008-12-21  William Pursell  <bill.pursell@gmail.com>
12008
12009         gitlog-to-changelog: pass all command-line arguments to git-log
12010         * build-aux/gitlog-to-changelog: When producing a ChangeLog,
12011         it is sometimes convenient to filter the commits in various ways.
12012         gitlog-to-changelog only allows --since to specify a start date,
12013         but git-log itself supports many other filtering mechanisms.
12014         At the moment, I want to filter by branch name.  Rather than
12015         adding a --branch option to gitlog-to-changelog, it seems more
12016         flexible to simply pass all options directly to git-log and let
12017         git do the work.  Notice that this effectively makes --since a
12018         redundant option for gitlog-to-changelog, but removing it would
12019         require current usage to change since calls would then require
12020         an additional '--'.
12021
12022 2008-12-21  Bruno Haible  <bruno@clisp.org>
12023
12024         * modules/mbsnrtowcs-tests: New file.
12025         * tests/test-mbsnrtowcs1.sh: New file.
12026         * tests/test-mbsnrtowcs2.sh: New file.
12027         * tests/test-mbsnrtowcs3.sh: New file.
12028         * tests/test-mbsnrtowcs4.sh: New file.
12029         * tests/test-mbsnrtowcs.c: New file.
12030
12031         New module 'mbsnrtowcs'.
12032         * lib/wchar.in.h (mbsnrtowcs): New declaration.
12033         * lib/mbsnrtowcs.c: New file.
12034         * lib/mbsrtowcs-state.c: New file.
12035         * lib/mbsrtowcs.c: Refer to _gl_mbsrtowcs_state.
12036         (internal_state): Remove variable.
12037         * m4/mbsnrtowcs.m4: New file.
12038         * m4/mbsrtowcs.m4 (gl_FUNC_MBSRTOWCS): Add mbsrtowcs-state.c to the
12039         compilation units.
12040         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSNRTOWCS,
12041         HAVE_MBSNRTOWCS, REPLACE_MBSNRTOWCS.
12042         * modules/wchar (Makefile.am): Substitute GNULIB_MBSNRTOWCS,
12043         HAVE_MBSNRTOWCS, REPLACE_MBSNRTOWCS.
12044         * modules/mbsnrtowcs: New file.
12045         * modules/mbsrtowcs (Files): Add lib/mbsrtowcs-state.c.
12046         * doc/posix-functions/mbsnrtowcs.texi: Mention the new module and a
12047         portability problem.
12048
12049 2008-12-21  Bruno Haible  <bruno@clisp.org>
12050
12051         Work around mbsrtowcs bug.
12052         * m4/mbsrtowcs.m4 (gl_MBSRTOWCS_WORKS): New macro.
12053         (gl_FUNC_MBSRTOWCS): Invoke it.
12054         * modules/mbsrtowcs (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
12055         m4/locale-zh.m4.
12056         * doc/posix-functions/mbsrtowcs.texi: Document the bug.
12057
12058 2008-12-21  Bruno Haible  <bruno@clisp.org>
12059
12060         * tests/test-mbsrtowcs.c (main): Execute the loop also for unlimited=1.
12061
12062 2008-12-21  Bruno Haible  <bruno@clisp.org>
12063
12064         Update doc for AIX.
12065         * doc/pastposix-functions/wcswcs.texi: Mention that AIX has only a
12066         16-bit wchar_t type.
12067         * doc/posix-functions/btowc.texi: Likewise.
12068         * doc/posix-functions/fgetwc.texi: Likewise.
12069         * doc/posix-functions/fgetws.texi: Likewise.
12070         * doc/posix-functions/fputwc.texi: Likewise.
12071         * doc/posix-functions/fputws.texi: Likewise.
12072         * doc/posix-functions/fwide.texi: Likewise.
12073         * doc/posix-functions/fwprintf.texi: Likewise.
12074         * doc/posix-functions/fwscanf.texi: Likewise.
12075         * doc/posix-functions/getwchar.texi: Likewise.
12076         * doc/posix-functions/getwc.texi: Likewise.
12077         * doc/posix-functions/iswalnum.texi: Likewise.
12078         * doc/posix-functions/iswalpha.texi: Likewise.
12079         * doc/posix-functions/iswblank.texi: Likewise.
12080         * doc/posix-functions/iswcntrl.texi: Likewise.
12081         * doc/posix-functions/iswctype.texi: Likewise.
12082         * doc/posix-functions/iswdigit.texi: Likewise.
12083         * doc/posix-functions/iswgraph.texi: Likewise.
12084         * doc/posix-functions/iswlower.texi: Likewise.
12085         * doc/posix-functions/iswprint.texi: Likewise.
12086         * doc/posix-functions/iswpunct.texi: Likewise.
12087         * doc/posix-functions/iswspace.texi: Likewise.
12088         * doc/posix-functions/iswupper.texi: Likewise.
12089         * doc/posix-functions/iswxdigit.texi: Likewise.
12090         * doc/posix-functions/mbrtowc.texi: Likewise.
12091         * doc/posix-functions/mbsrtowcs.texi: Likewise.
12092         * doc/posix-functions/mbstowcs.texi: Likewise.
12093         * doc/posix-functions/mbtowc.texi: Likewise.
12094         * doc/posix-functions/putwchar.texi: Likewise.
12095         * doc/posix-functions/putwc.texi: Likewise.
12096         * doc/posix-functions/swprintf.texi: Likewise.
12097         * doc/posix-functions/tolower.texi: Likewise.
12098         * doc/posix-functions/toupper.texi: Likewise.
12099         * doc/posix-functions/towctrans.texi: Likewise.
12100         * doc/posix-functions/ungetwc.texi: Likewise.
12101         * doc/posix-functions/vswprintf.texi: Likewise.
12102         * doc/posix-functions/wcrtomb.texi: Likewise.
12103         * doc/posix-functions/wcscat.texi: Likewise.
12104         * doc/posix-functions/wcschr.texi: Likewise.
12105         * doc/posix-functions/wcscmp.texi: Likewise.
12106         * doc/posix-functions/wcscoll.texi: Likewise.
12107         * doc/posix-functions/wcscpy.texi: Likewise.
12108         * doc/posix-functions/wcscspn.texi: Likewise.
12109         * doc/posix-functions/wcsftime.texi: Likewise.
12110         * doc/posix-functions/wcslen.texi: Likewise.
12111         * doc/posix-functions/wcsncat.texi: Likewise.
12112         * doc/posix-functions/wcsncmp.texi: Likewise.
12113         * doc/posix-functions/wcsncpy.texi: Likewise.
12114         * doc/posix-functions/wcspbrk.texi: Likewise.
12115         * doc/posix-functions/wcsrchr.texi: Likewise.
12116         * doc/posix-functions/wcsrtombs.texi: Likewise.
12117         * doc/posix-functions/wcsspn.texi: Likewise.
12118         * doc/posix-functions/wcsstr.texi: Likewise.
12119         * doc/posix-functions/wcstod.texi: Likewise.
12120         * doc/posix-functions/wcstof.texi: Likewise.
12121         * doc/posix-functions/wcstoimax.texi: Likewise.
12122         * doc/posix-functions/wcstok.texi: Likewise.
12123         * doc/posix-functions/wcstold.texi: Likewise.
12124         * doc/posix-functions/wcstoll.texi: Likewise.
12125         * doc/posix-functions/wcstol.texi: Likewise.
12126         * doc/posix-functions/wcstombs.texi: Likewise.
12127         * doc/posix-functions/wcstoull.texi: Likewise.
12128         * doc/posix-functions/wcstoul.texi: Likewise.
12129         * doc/posix-functions/wcstoumax.texi: Likewise.
12130         * doc/posix-functions/wcswidth.texi: Likewise.
12131         * doc/posix-functions/wcsxfrm.texi: Likewise.
12132         * doc/posix-functions/wctob.texi: Likewise.
12133         * doc/posix-functions/wctomb.texi: Likewise.
12134         * doc/posix-functions/wctrans.texi: Likewise.
12135         * doc/posix-functions/wctype.texi: Likewise.
12136         * doc/posix-functions/wcwidth.texi: Likewise.
12137         * doc/posix-functions/wmemchr.texi: Likewise.
12138         * doc/posix-functions/wmemcmp.texi: Likewise.
12139         * doc/posix-functions/wmemcpy.texi: Likewise.
12140         * doc/posix-functions/wmemmove.texi: Likewise.
12141         * doc/posix-functions/wmemset.texi: Likewise.
12142         * doc/posix-functions/wprintf.texi: Likewise.
12143         * doc/posix-functions/wscanf.texi: Likewise.
12144
12145 2008-12-21  Bruno Haible  <bruno@clisp.org>
12146
12147         Update doc for HP-UX 11.11.
12148         * doc/posix-functions/btowc.texi: Clarify that the function is missing
12149         in HP-UX version 11.00, not in all versions of HP-UX 11.
12150         * doc/posix-functions/fwide.texi: Likewise.
12151         * doc/posix-functions/fwprintf.texi: Likewise.
12152         * doc/posix-functions/fwscanf.texi: Likewise.
12153         * doc/posix-functions/inet_ntop.texi: Likewise.
12154         * doc/posix-functions/inet_pton.texi: Likewise.
12155         * doc/posix-functions/mbrlen.texi: Likewise.
12156         * doc/posix-functions/mbrtowc.texi: Likewise.
12157         * doc/posix-functions/mbsinit.texi: Likewise.
12158         * doc/posix-functions/mbsrtowcs.texi: Likewise.
12159         * doc/posix-functions/swprintf.texi: Likewise.
12160         * doc/posix-functions/swscanf.texi: Likewise.
12161         * doc/posix-functions/towctrans.texi: Likewise.
12162         * doc/posix-functions/vfwprintf.texi: Likewise.
12163         * doc/posix-functions/vswprintf.texi: Likewise.
12164         * doc/posix-functions/vwprintf.texi: Likewise.
12165         * doc/posix-functions/wcrtomb.texi: Likewise.
12166         * doc/posix-functions/wcsrtombs.texi: Likewise.
12167         * doc/posix-functions/wcsstr.texi: Likewise.
12168         * doc/posix-functions/wctob.texi: Likewise.
12169         * doc/posix-functions/wctrans.texi: Likewise.
12170         * doc/posix-functions/wmemchr.texi: Likewise.
12171         * doc/posix-functions/wmemcmp.texi: Likewise.
12172         * doc/posix-functions/wmemcpy.texi: Likewise.
12173         * doc/posix-functions/wmemmove.texi: Likewise.
12174         * doc/posix-functions/wmemset.texi: Likewise.
12175         * doc/posix-functions/wprintf.texi: Likewise.
12176         * doc/posix-functions/wscanf.texi: Likewise.
12177
12178 2008-12-21  Bruno Haible  <bruno@clisp.org>
12179
12180         Work around a portability problem.
12181         * tests/test-mbsrtowcs.c (main): Use a temporary conversion state.
12182         * doc/posix-functions/mbsrtowcs.texi: Document the portability problem.
12183
12184 2008-12-20  Bruno Haible  <bruno@clisp.org>
12185
12186         * lib/wchar.in.h (mbsrtowcs): Redefine if REPLACE_MBSRTOWCS is set.
12187         * m4/mbsrtowcs.m4 (gl_FUNC_MBSRTOWCS): Invoke gl_MBSTATE_T_BROKEN. Set
12188         REPLACE_MBSRTOWCS if mbsrtowcs needs to be overridden.
12189         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBSRTOWCS.
12190         * modules/wchar (Makefile.am): Substitute REPLACE_MBSRTOWCS.
12191
12192         Work around mbrtowc bugs on AIX, HP-UX, OSF/1, Solaris.
12193         * lib/wchar.in.h (mbstate_t): Redefine also if REPLACE_MBSTATE_T is
12194         set.
12195         (GNULIB_defined_mbstate_t): New macro.
12196         (mbsinit): Redefine if REPLACE_MBSINIT is set.
12197         (mbrtowc): Redefine if REPLACE_MBRTOWC is set.
12198         * lib/mbrtowc.c (rpl_mbrtowc): Add an alternative implementation that
12199         reuses the system's mbrtowc function but works around the bugs.
12200         * m4/mbrtowc.m4 (gl_MBSTATE_T_BROKEN, gl_MBRTOWC_INCOMPLETE_STATE,
12201         gl_MBRTOWC_NULL_ARG, gl_MBRTOWC_RETVAL, gl_MBRTOWC_NUL_RETVAL): New
12202         macros.
12203         (gl_FUNC_MBRTOWC): Invoke them. Set REPLACE_MBRTOWC if mbrtowc needs to
12204         be overridden. Optionally define MBRTOWC_NULL_ARG_BUG,
12205         MBRTOWC_RETVAL_BUG, MBRTOWC_NUL_RETVAL_BUG.
12206         * m4/mbsinit.m4 (gl_FUNC_MBSINIT): Invoke gl_MBSTATE_T_BROKEN. Set
12207         REPLACE_MBSINIT if mbsinit needs to be overridden.
12208         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBSTATE_T,
12209         REPLACE_MBSINIT, REPLACE_MBRTOWC.
12210         * modules/wchar (Makefile.am): Substitute REPLACE_MBSTATE_T,
12211         REPLACE_MBSINIT, REPLACE_MBRTOWC.
12212         * modules/mbrtowc (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
12213         m4/locale-zh.m4.
12214         (Depends): Add mbsinit.
12215         * modules/mbsinit (Depends): Add mbrtowc.
12216         * doc/posix-functions/mbrtowc.texi: Mention the various bugs.
12217
12218 2008-12-20  Bruno Haible  <bruno@clisp.org>
12219
12220         * tests/test-mbrtowc.c (main): Change sample string in EUC-JP encoding
12221         so that there are no conversion errors on AIX.
12222         * tests/test-mbsrtowcs.c (main): LIkewise.
12223
12224 2008-12-20  Bruno Haible  <bruno@clisp.org>
12225
12226         Work around wctob bug on Solaris <= 9.
12227         * lib/wchar.in.h (wctob): Redefine if REPLACE_WCTOB is set.
12228         * m4/wctob.m4 (gl_FUNC_WCTOB): Test whether wctob works.
12229         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCTOB.
12230         * modules/wchar (Makefile.am): Substitute REPLACE_WCTOB.
12231         * modules/wctob (Files): Add m4/locale-fr.m4.
12232         * doc/posix-functions/wctob.texi: Mention the Solaris bug.
12233
12234 2008-12-20  Bruno Haible  <bruno@clisp.org>
12235
12236         * doc/posix-functions/select.texi: Mention Solaris 2.6 bug with
12237         /dev/null.
12238         * tests/test-select-in.sh: Likewise.
12239         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
12240
12241 2008-12-20  Bruno Haible  <bruno@clisp.org>
12242
12243         Don't pretend that Cygwin has a ja_JP.EUC-JP locale.
12244         * m4/locale-ja.m4 (gt_LOCALE_JA): Add test for MB_CUR_MAX. Needed on
12245         Cygwin 1.5.x.
12246
12247 2008-12-20  Bruno Haible  <bruno@clisp.org>
12248
12249         Ensure mbstate_t is defined on HP-UX 11.11.
12250         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Require
12251         AC_CANONICAL_HOST. On HP-UX, define _XOPEN_SOURCE to 500.
12252         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Require
12253         AC_USE_SYSTEM_EXTENSIONS.
12254         * modules/fnmatch (Depends-on): Add extensions.
12255         * modules/mbrlen (Depends-on): Likewise.
12256         * modules/mbrtowc (Depends-on): Likewise.
12257         * modules/mbsinit (Depends-on): Likewise.
12258         * modules/mbsrtowcs (Depends-on): Likewise.
12259         * modules/mbswidth (Depends-on): Likewise.
12260         * modules/quotearg (Depends-on): Likewise.
12261         * modules/strftime (Depends-on): Likewise.
12262
12263 2008-12-20  Bruno Haible  <bruno@clisp.org>
12264
12265         Ensure wctob is declared on IRIX 6.5.
12266         * lib/wchar.in.h (wctob): Declare also when HAVE_DECL_WCTOB is 0.
12267         * m4/wctob.m4 (gl_FUNC_WCTOB): Set HAVE_DECL_WCTOB instead of
12268         HAVE_WCTOB. Also test whether <wchar.h> declares wctob.
12269         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize HAVE_DECL_WCTOB instead
12270         of HAVE_WCTOB.
12271         * modules/wchar (Makefile.am): Substitute HAVE_DECL_WCTOB instead of
12272         HAVE_WCTOB.
12273         * doc/posix-functions/wctob.texi: Mention missing declaration on IRIX.
12274
12275 2008-12-19  Bruno Haible  <bruno@clisp.org>
12276
12277         * modules/mbsrtowcs-tests: New file.
12278         * tests/test-mbsrtowcs1.sh: New file.
12279         * tests/test-mbsrtowcs2.sh: New file.
12280         * tests/test-mbsrtowcs3.sh: New file.
12281         * tests/test-mbsrtowcs4.sh: New file.
12282         * tests/test-mbsrtowcs.c: New file.
12283
12284         New module 'mbsrtowcs'.
12285         * lib/wchar.in.h (mbsrtowcs): New declaration.
12286         * lib/mbsrtowcs.c: New file.
12287         * m4/mbsrtowcs.m4: New file.
12288         * modules/mbsrtowcs: New file.
12289         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSRTOWCS and
12290         HAVE_MBSRTOWCS.
12291         * modules/wchar (Makefile.am): Substitute GNULIB_MBSRTOWCS and
12292         HAVE_MBSRTOWCS.
12293         * doc/posix-functions/mbsrtowcs.texi: Document the new module.
12294
12295 2008-12-19  Bruno Haible  <bruno@clisp.org>
12296
12297         New module 'mbrlen'.
12298         * lib/wchar.in.h (mbrlen): New declaration.
12299         * lib/mbrlen.c: New file.
12300         * m4/mbrlen.m4: New file.
12301         * modules/mbrlen: New file.
12302         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBRLEN and
12303         HAVE_MBRLEN.
12304         * modules/wchar (Makefile.am): Substitute GNULIB_MBRLEN and
12305         HAVE_MBRLEN.
12306         * doc/posix-functions/mbrlen.texi: Document the new module.
12307
12308 2008-12-19  Bruno Haible  <bruno@clisp.org>
12309
12310         * lib/mbrtowc.c: Include verify.h. Verify an assumption.
12311         * modules/mbrtowc (Depends-on): Add verify.
12312         Suggested by Paul Eggert.
12313
12314 2008-12-18  Bruno Haible  <bruno@clisp.org>
12315
12316         * modules/mbsinit-tests: New file.
12317         * tests/test-mbsinit.sh: New file.
12318         * tests/test-mbsinit.c: New file.
12319
12320 2008-12-18  Bruno Haible  <bruno@clisp.org>
12321
12322         * modules/mbrtowc-tests: New file.
12323         * tests/test-mbrtowc1.sh: New file.
12324         * tests/test-mbrtowc2.sh: New file.
12325         * tests/test-mbrtowc3.sh: New file.
12326         * tests/test-mbrtowc4.sh: New file.
12327         * tests/test-mbrtowc.c: New file.
12328
12329         New module 'mbrtowc'.
12330         * lib/wchar.in.h (mbstate_t): Override when the system does not have
12331         mbsinit and mbrtowc.
12332         (mbrtowc): New declaration.
12333         * lib/mbrtowc.c: New file.
12334         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC, gl_PREREQ_MBRTOWC): New macros.
12335         * modules/mbrtowc: New file.
12336         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBRTOWC and
12337         HAVE_MBRTOWC.
12338         * modules/wchar (Makefile.am): Substitute GNULIB_MBRTOWC and
12339         HAVE_MBRTOWC.
12340         * doc/posix-functions/mbrtowc.texi: Document the new module.
12341
12342 2008-12-18  Bruno Haible  <bruno@clisp.org>
12343
12344         New module 'wctob'.
12345         * lib/wchar.in.h (wctob): New declaration.
12346         * lib/wctob.c: New file.
12347         * m4/wctob.m4: New file.
12348         * modules/wctob: New file.
12349         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCTOB and
12350         HAVE_WCTOB.
12351         * modules/wchar (Makefile.am): Substitute GNULIB_WCTOB and HAVE_WCTOB.
12352         * doc/posix-functions/wctob.texi: Document the new module.
12353
12354 2008-12-18  Bruno Haible  <bruno@clisp.org>
12355
12356         * m4/mbsinit.m4 (gl_FUNC_MBSINIT): Invoke gl_REPLACE_WCHAR_H.
12357         * m4/btowc.m4 (gl_FUNC_BTOWC): Likewise.
12358
12359 2008-12-18  Simon Josefsson  <simon@josefsson.org>
12360
12361         * lib/flock.c: Use proper #if symbol in check.  Reported by "Tom
12362         G. Christensen" <tgc@jupiterrise.com>.
12363
12364         * lib/flock.c: Need to include errno.h.  Reported by "Tom
12365         G. Christensen" <tgc@jupiterrise.com>.
12366
12367         * lib/flock.c: Need to include string.h.  Reported by "Tom
12368         G. Christensen" <tgc@jupiterrise.com> and Eric Blake
12369         <ebb9@byu.net>.
12370
12371 2008-12-18  Bruno Haible  <bruno@clisp.org>
12372
12373         * m4/locale-ja.m4: New file, from GNU gettext.
12374
12375 2008-12-17  Bruno Haible  <bruno@clisp.org>
12376
12377         * m4/mbrtowc.m4 (AC_FUNC_MBRTOWC): Don't override in autoconf >= 2.60.
12378         Suggested by Eric Blake.
12379
12380 2008-12-17  Bruno Haible  <bruno@clisp.org>
12381
12382         * m4/errno_h.m4 (AC_COMPUTE_INT): Provide fallback definition.
12383
12384 2008-12-17  Bruno Haible  <bruno@clisp.org>
12385
12386         * lib/mbsinit.c: Include verify.h. Verify an assumption.
12387         * modules/mbsinit (Depends-on): Add verify.
12388         Suggested by Paul Eggert.
12389
12390 2008-12-17  Bruno Haible  <bruno@clisp.org>
12391
12392         * m4/mbrtowc.m4 (AC_FUNC_MBRTOWC): Renamed from gl_FUNC_MBRTOWC.
12393         * m4/mbfile.m4 (gl_MBFILE): Use AC_FUNC_MBRTOWC instead of
12394         gl_FUNC_MBRTOWC.
12395         * m4/mbiter.m4 (gl_MBITER): LIkewise.
12396         * m4/mbscasecmp.m4 (gl_PREREQ_MBSCASECMP): Likewise.
12397         * m4/mbscasestr.m4 (gl_PREREQ_MBSCASESTR): Likewise.
12398         * m4/mbschr.m4 (gl_PREREQ_MBSCHR): Likewise.
12399         * m4/mbscspn.m4 (gl_PREREQ_MBSCSPN): Likewise.
12400         * m4/mbslen.m4 (gl_PREREQ_MBSLEN): Likewise.
12401         * m4/mbsncasecmp.m4 (gl_PREREQ_MBSNCASECMP): Likewise.
12402         * m4/mbsnlen.m4 (gl_PREREQ_MBSNLEN): Likewise.
12403         * m4/mbspbrk.m4 (gl_PREREQ_MBSPBRK): Likewise.
12404         * m4/mbspcasecmp.m4 (gl_PREREQ_MBSPCASECMP): Likewise.
12405         * m4/mbsrchr.m4 (gl_PREREQ_MBSRCHR): Likewise.
12406         * m4/mbssep.m4 (gl_PREREQ_MBSSEP): Likewise.
12407         * m4/mbsspn.m4 (gl_PREREQ_MBSSPN): Likewise.
12408         * m4/mbsstr.m4 (gl_PREREQ_MBSSTR): Likewise.
12409         * m4/mbstok_r.m4 (gl_PREREQ_MBSTOK_R): Likewise.
12410         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
12411         * m4/quotearg.m4 (gl_QUOTEARG): Likewise.
12412         * modules/trim (configure.ac): Likewise.
12413
12414 2008-12-17  Bruno Haible  <bruno@clisp.org>
12415
12416         * modules/btowc-tests: New file.
12417         * tests/test-btowc1.sh: New file.
12418         * tests/test-btowc2.sh: New file.
12419         * tests/test-btowc.c: New file.
12420
12421         New module 'btowc'.
12422         * lib/wchar.in.h (btowc): New declaration.
12423         * lib/btowc.c: New file.
12424         * m4/btowc.m4: New file.
12425         * modules/btowc: New file.
12426         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_BTOWC and
12427         HAVE_BTOWC.
12428         * modules/wchar (Makefile.am): Substitute GNULIB_BTOWC and HAVE_BTOWC.
12429         * doc/posix-functions/btowc.texi: Document the new module.
12430
12431 2008-12-17  Bruno Haible  <bruno@clisp.org>
12432
12433         New module 'mbsinit'.
12434         * lib/wchar.in.h (mbsinit): New declaration.
12435         * lib/mbsinit.c: New file.
12436         * m4/mbsinit.m4: New file.
12437         * modules/mbsinit: New file.
12438         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSINIT and
12439         HAVE_MBSINIT.
12440         * modules/wchar (Makefile.am): Substitute GNULIB_MBSINIT and
12441         HAVE_MBSINIT.
12442         * doc/posix-functions/mbsinit.texi: Document the new module.
12443
12444 2008-12-16  Bruno Haible  <bruno@clisp.org>
12445
12446         * lib/unistd.in.h: Add comment.
12447         * tests/test-environ.c: Don't include <stdlib.h>.
12448
12449 2008-12-16  Bruno Haible  <bruno@clisp.org>
12450
12451         * lib/parse-duration.h (parse_duration): Document return value
12452         convention.
12453         * lib/parse-duration.c: Include specification header first. Add
12454         comments.
12455         (_): Remove macro.
12456         (parse_year_month_day, parse_hour_minute_second): Move side effects
12457         outside of strchr call.
12458         (parse_non_iso8601): Move side effects outside of isspace call.
12459         (parse_duration): Don't test errno is res != BAD_TIME. Remove fprintf
12460         call.
12461
12462 2008-12-16  Bruno Haible  <bruno@clisp.org>
12463
12464         * tests/test-parse-duration.sh: Produce no output when the test
12465         succeeds.
12466
12467 2008-12-16  Bruno Haible  <bruno@clisp.org>
12468
12469         * tests/test-parse-duration.sh: Fix quoting of $tmp and $tmpf
12470         expressions.
12471
12472 2008-12-15  Bruno Haible  <bruno@clisp.org>
12473
12474         * doc/glibc-functions/fgetxattr.texi: Tweak wording.
12475         * doc/glibc-functions/flistxattr.texi: Likewise.
12476         * doc/glibc-functions/fopencookie.texi: Likewise.
12477         * doc/glibc-functions/fremovexattr.texi: Likewise.
12478         * doc/glibc-functions/fsetxattr.texi: Likewise.
12479         * doc/glibc-functions/getxattr.texi: Likewise.
12480         * doc/glibc-functions/lgetxattr.texi: Likewise.
12481         * doc/glibc-functions/listxattr.texi: Likewise.
12482         * doc/glibc-functions/llistxattr.texi: Likewise.
12483         * doc/glibc-functions/lremovexattr.texi: Likewise.
12484         * doc/glibc-functions/lsetxattr.texi: Likewise.
12485         * doc/glibc-functions/removexattr.texi: Likewise.
12486         * doc/glibc-functions/setxattr.texi: Likewise.
12487         * doc/posix-functions/open_memstream.texi: Likewise.
12488
12489 2008-12-15  Eric Blake  <ebb9@byu.net>
12490
12491         Update doc for cygwin 1.7.
12492         * doc/posix-functions/faccessat.texi: Cygwin 1.7 added several new
12493         functions.
12494         * doc/posix-functions/fchmodat.texi: Likewise.
12495         * doc/posix-functions/fchownat.texi: Likewise.
12496         * doc/posix-functions/fdopendir.texi: Likewise.
12497         * doc/posix-functions/fmemopen.texi: Likewise.
12498         * doc/posix-functions/freeaddrinfo.texi: Likewise.
12499         * doc/posix-functions/fstatat.texi: Likewise.
12500         * doc/posix-functions/futimens.texi: Likewise.
12501         * doc/posix-functions/gai_strerror.texi: Likewise.
12502         * doc/posix-functions/getaddrinfo.texi: Likewise.
12503         * doc/posix-functions/getnameinfo.texi: Likewise.
12504         * doc/posix-functions/if_freenameindex.texi: Likewise.
12505         * doc/posix-functions/if_indextoname.texi: Likewise.
12506         * doc/posix-functions/if_nameindex.texi: Likewise.
12507         * doc/posix-functions/if_nametoindex.texi: Likewise.
12508         * doc/posix-functions/insque.texi: Likewise.
12509         * doc/posix-functions/linkat.texi: Likewise.
12510         * doc/posix-functions/llrint.texi: Likewise.
12511         * doc/posix-functions/llrintf.texi: Likewise.
12512         * doc/posix-functions/llrintl.texi: Likewise.
12513         * doc/posix-functions/lockf.texi: Likewise.
12514         * doc/posix-functions/lrintl.texi: Likewise.
12515         * doc/posix-functions/mkdirat.texi: Likewise.
12516         * doc/posix-functions/mkfifoat.texi: Likewise.
12517         * doc/posix-functions/mknodat.texi: Likewise.
12518         * doc/posix-functions/mq_close.texi: Likewise.
12519         * doc/posix-functions/mq_getattr.texi: Likewise.
12520         * doc/posix-functions/mq_notify.texi: Likewise.
12521         * doc/posix-functions/mq_open.texi: Likewise.
12522         * doc/posix-functions/mq_receive.texi: Likewise.
12523         * doc/posix-functions/mq_send.texi: Likewise.
12524         * doc/posix-functions/mq_setattr.texi: Likewise.
12525         * doc/posix-functions/mq_timedreceive.texi: Likewise.
12526         * doc/posix-functions/mq_timedsend.texi: Likewise.
12527         * doc/posix-functions/mq_unlink.texi: Likewise.
12528         * doc/posix-functions/open_memstream.texi: Likewise.
12529         * doc/posix-functions/openat.texi: Likewise.
12530         * doc/posix-functions/posix_fadvise.texi: Likewise.
12531         * doc/posix-functions/posix_fallocate.texi: Likewise.
12532         * doc/posix-functions/posix_madvise.texi: Likewise.
12533         * doc/posix-functions/posix_memalign.texi: Likewise.
12534         * doc/posix-functions/posix_openpt.texi: Likewise.
12535         * doc/posix-functions/readlinkat.texi: Likewise.
12536         * doc/posix-functions/remque.texi: Likewise.
12537         * doc/posix-functions/renameat.texi: Likewise.
12538         * doc/posix-functions/rintl.texi: Likewise.
12539         * doc/posix-functions/sem_unlink.texi: Likewise.
12540         * doc/posix-functions/shm_open.texi: Likewise.
12541         * doc/posix-functions/shm_unlink.texi: Likewise.
12542         * doc/posix-functions/signgam.texi: Likewise.
12543         * doc/posix-functions/sigset.texi: Likewise.
12544         * doc/posix-functions/stpcpy.texi: Likewise.
12545         * doc/posix-functions/stpncpy.texi: Likewise.
12546         * doc/posix-functions/strerror.texi: Likewise.
12547         * doc/posix-functions/strtod.texi: Likewise.
12548         * doc/posix-functions/symlinkat.texi: Likewise.
12549         * doc/posix-functions/unlinkat.texi: Likewise.
12550         * doc/posix-functions/utimensat.texi: Likewise.
12551         * doc/glibc-functions/bindresvport.texi: Likewise.
12552         * doc/glibc-functions/dn_expand.texi: Likewise.
12553         * doc/glibc-functions/exp10.texi: Likewise.
12554         * doc/glibc-functions/exp10f.texi: Likewise.
12555         * doc/glibc-functions/fgetxattr.texi: Likewise.
12556         * doc/glibc-functions/flistxattr.texi: Likewise.
12557         * doc/glibc-functions/fopencookie.texi: Likewise.
12558         * doc/glibc-functions/freeifaddrs.texi: Likewise.
12559         * doc/glibc-functions/fremovexattr.texi: Likewise.
12560         * doc/glibc-functions/fsetxattr.texi: Likewise.
12561         * doc/glibc-functions/getifaddrs.texi: Likewise.
12562         * doc/glibc-functions/getxattr.texi: Likewise.
12563         * doc/glibc-functions/lgetxattr.texi: Likewise.
12564         * doc/glibc-functions/listxattr.texi: Likewise.
12565         * doc/glibc-functions/llistxattr.texi: Likewise.
12566         * doc/glibc-functions/lremovexattr.texi: Likewise.
12567         * doc/glibc-functions/lsetxattr.texi: Likewise.
12568         * doc/glibc-functions/pow10.texi: Likewise.
12569         * doc/glibc-functions/pow10f.texi: Likewise.
12570         * doc/glibc-functions/rcmd_af.texi: Likewise.
12571         * doc/glibc-functions/removexattr.texi: Likewise.
12572         * doc/glibc-functions/res_init.texi: Likewise.
12573         * doc/glibc-functions/res_mkquery.texi: Likewise.
12574         * doc/glibc-functions/res_query.texi: Likewise.
12575         * doc/glibc-functions/res_querydomain.texi: Likewise.
12576         * doc/glibc-functions/res_send.texi: Likewise.
12577         * doc/glibc-functions/rresvport_af.texi: Likewise.
12578         * doc/glibc-functions/setxattr.texi: Likewise.
12579         * doc/glibc-functions/strcasestr.texi: Likewise.
12580
12581 2008-12-15  Bruno Haible  <bruno@clisp.org>
12582
12583         Fix compilation error on OSF/1 4.0.
12584         * lib/sys_select.in.h: When invoked from OSF/1 <sys/types.h> or
12585         <sys/time.h>, simply delegate to the system header.
12586         Reported by Daniel Richard G. <oss@teragram.com>.
12587
12588 2008-12-15  Bruno Haible  <bruno@clisp.org>
12589
12590         * doc/posix-functions/openat.texi: Mention the 'openat' module.
12591         * doc/posix-functions/fchmodat.texi: Likewise.
12592         * doc/posix-functions/fchownat.texi: Likewise.
12593         * doc/posix-functions/fdopendir.texi: Likewise.
12594         * doc/posix-functions/fstatat.texi: Likewise.
12595         * doc/posix-functions/mkdirat.texi: Likewise.
12596         * doc/posix-functions/unlinkat.texi: Likewise.
12597
12598 2008-12-14  Bruno Haible  <bruno@clisp.org>
12599
12600         Update doc for POSIX:2008.
12601         * doc/posix-functions/faccessat.texi: New file.
12602         * doc/posix-functions/fchmodat.texi: New file.
12603         * doc/posix-functions/fchownat.texi: New file.
12604         * doc/posix-functions/fdopendir.texi: New file.
12605         * doc/posix-functions/fstatat.texi: New file.
12606         * doc/posix-functions/futimens.texi: New file.
12607         * doc/posix-functions/linkat.texi: New file.
12608         * doc/posix-functions/mkdirat.texi: New file.
12609         * doc/posix-functions/mkfifoat.texi: New file.
12610         * doc/posix-functions/mknodat.texi: New file.
12611         * doc/posix-functions/open_wmemstream.texi: New file.
12612         * doc/posix-functions/openat.texi: New file.
12613         * doc/posix-functions/psiginfo.texi: New file.
12614         * doc/posix-functions/pthread_mutex_consistent.texi: New file.
12615         * doc/posix-functions/pthread_mutexattr_getrobust.texi: New file.
12616         * doc/posix-functions/pthread_mutexattr_setrobust.texi: New file.
12617         * doc/posix-functions/readlinkat.texi: New file.
12618         * doc/posix-functions/renameat.texi: New file.
12619         * doc/posix-functions/strerror_l.texi: New file.
12620         * doc/posix-functions/symlinkat.texi: New file.
12621         * doc/posix-functions/unlinkat.texi: New file.
12622         * doc/posix-functions/utimensat.texi: New file.
12623         * doc/gnulib.texi (Function Substitutes): Add these subsections.
12624
12625 2008-12-14  Bruno Haible  <bruno@clisp.org>
12626
12627         Update doc for POSIX:2008.
12628         * doc/posix-functions/alphasort.texi: Renamed from
12629         doc/glibc-functions/alphasort.texi.
12630         * doc/posix-functions/dirfd.texi: Renamed from
12631         doc/glibc-functions/dirfd.texi.
12632         * doc/posix-functions/dprintf.texi: Renamed from
12633         doc/glibc-functions/dprintf.texi.
12634         * doc/posix-functions/duplocale.texi: Renamed from
12635         doc/glibc-functions/duplocale.texi.
12636         * doc/posix-functions/fexecve.texi: Renamed from
12637         doc/glibc-functions/fexecve.texi.
12638         * doc/posix-functions/fmemopen.texi: Renamed from
12639         doc/glibc-functions/fmemopen.texi.
12640         * doc/posix-functions/freelocale.texi: Renamed from
12641         doc/glibc-functions/freelocale.texi.
12642         * doc/posix-functions/getdate_err.texi: Renamed from
12643         doc/glibc-functions/getdate_err.texi.
12644         * doc/posix-functions/isalnum_l.texi: Renamed from
12645         doc/glibc-functions/isalnum_l.texi.
12646         * doc/posix-functions/isalpha_l.texi: Renamed from
12647         doc/glibc-functions/isalpha_l.texi.
12648         * doc/posix-functions/isblank_l.texi: Renamed from
12649         doc/glibc-functions/isblank_l.texi.
12650         * doc/posix-functions/iscntrl_l.texi: Renamed from
12651         doc/glibc-functions/iscntrl_l.texi.
12652         * doc/posix-functions/isdigit_l.texi: Renamed from
12653         doc/glibc-functions/isdigit_l.texi.
12654         * doc/posix-functions/isgraph_l.texi: Renamed from
12655         doc/glibc-functions/isgraph_l.texi.
12656         * doc/posix-functions/islower_l.texi: Renamed from
12657         doc/glibc-functions/islower_l.texi.
12658         * doc/posix-functions/isprint_l.texi: Renamed from
12659         doc/glibc-functions/isprint_l.texi.
12660         * doc/posix-functions/ispunct_l.texi: Renamed from
12661         doc/glibc-functions/ispunct_l.texi.
12662         * doc/posix-functions/isspace_l.texi: Renamed from
12663         doc/glibc-functions/isspace_l.texi.
12664         * doc/posix-functions/isupper_l.texi: Renamed from
12665         doc/glibc-functions/isupper_l.texi.
12666         * doc/posix-functions/iswalnum_l.texi: Renamed from
12667         doc/glibc-functions/iswalnum_l.texi.
12668         * doc/posix-functions/iswalpha_l.texi: Renamed from
12669         doc/glibc-functions/iswalpha_l.texi.
12670         * doc/posix-functions/iswblank_l.texi: Renamed from
12671         doc/glibc-functions/iswblank_l.texi.
12672         * doc/posix-functions/iswcntrl_l.texi: Renamed from
12673         doc/glibc-functions/iswcntrl_l.texi.
12674         * doc/posix-functions/iswctype_l.texi: Renamed from
12675         doc/glibc-functions/iswctype_l.texi.
12676         * doc/posix-functions/iswdigit_l.texi: Renamed from
12677         doc/glibc-functions/iswdigit_l.texi.
12678         * doc/posix-functions/iswgraph_l.texi: Renamed from
12679         doc/glibc-functions/iswgraph_l.texi.
12680         * doc/posix-functions/iswlower_l.texi: Renamed from
12681         doc/glibc-functions/iswlower_l.texi.
12682         * doc/posix-functions/iswprint_l.texi: Renamed from
12683         doc/glibc-functions/iswprint_l.texi.
12684         * doc/posix-functions/iswpunct_l.texi: Renamed from
12685         doc/glibc-functions/iswpunct_l.texi.
12686         * doc/posix-functions/iswspace_l.texi: Renamed from
12687         doc/glibc-functions/iswspace_l.texi.
12688         * doc/posix-functions/iswupper_l.texi: Renamed from
12689         doc/glibc-functions/iswupper_l.texi.
12690         * doc/posix-functions/iswxdigit_l.texi: Renamed from
12691         doc/glibc-functions/iswxdigit_l.texi.
12692         * doc/posix-functions/isxdigit_l.texi: Renamed from
12693         doc/glibc-functions/isxdigit_l.texi.
12694         * doc/posix-functions/mbsnrtowcs.texi: Renamed from
12695         doc/glibc-functions/mbsnrtowcs.texi.
12696         * doc/posix-functions/mkdtemp.texi: Renamed from
12697         doc/glibc-functions/mkdtemp.texi.
12698         * doc/posix-functions/newlocale.texi: Renamed from
12699         doc/glibc-functions/newlocale.texi.
12700         * doc/posix-functions/nl_langinfo_l.texi: Renamed from
12701         doc/glibc-functions/nl_langinfo_l.texi.
12702         * doc/posix-functions/open_memstream.texi: Renamed from
12703         doc/glibc-functions/open_memstream.texi.
12704         * doc/posix-functions/opterr.texi: Renamed from
12705         doc/glibc-functions/opterr.texi.
12706         * doc/posix-functions/optind.texi: Renamed from
12707         doc/glibc-functions/optind.texi.
12708         * doc/posix-functions/optopt.texi: Renamed from
12709         doc/glibc-functions/optopt.texi.
12710         * doc/posix-functions/psignal.texi: Renamed from
12711         doc/glibc-functions/psignal.texi.
12712         * doc/posix-functions/scandir.texi: Renamed from
12713         doc/glibc-functions/scandir.texi.
12714         * doc/posix-functions/sched_get_priority_min.texi: Renamed from
12715         doc/glibc-functions/sched_get_priority_min.texi.
12716         * doc/posix-functions/signgam.texi: Renamed from
12717         doc/glibc-functions/signgam.texi.
12718         * doc/posix-functions/stpcpy.texi: Renamed from
12719         doc/glibc-functions/stpcpy.texi.
12720         * doc/posix-functions/stpncpy.texi: Renamed from
12721         doc/glibc-functions/stpncpy.texi.
12722         * doc/posix-functions/strcasecmp_l.texi: Renamed from
12723         doc/glibc-functions/strcasecmp_l.texi.
12724         * doc/posix-functions/strcoll_l.texi: Renamed from
12725         doc/glibc-functions/strcoll_l.texi.
12726         * doc/posix-functions/strfmon_l.texi: Renamed from
12727         doc/glibc-functions/strfmon_l.texi.
12728         * doc/posix-functions/strftime_l.texi: Renamed from
12729         doc/glibc-functions/strftime_l.texi.
12730         * doc/posix-functions/strncasecmp_l.texi: Renamed from
12731         doc/glibc-functions/strncasecmp_l.texi.
12732         * doc/posix-functions/strndup.texi: Renamed from
12733         doc/glibc-functions/strndup.texi.
12734         * doc/posix-functions/strnlen.texi: Renamed from
12735         doc/glibc-functions/strnlen.texi.
12736         * doc/posix-functions/strsignal.texi: Renamed from
12737         doc/glibc-functions/strsignal.texi.
12738         * doc/posix-functions/strxfrm_l.texi: Renamed from
12739         doc/glibc-functions/strxfrm_l.texi.
12740         * doc/posix-functions/timer_gettime.texi: Renamed from
12741         doc/glibc-functions/timer_gettime.texi.
12742         * doc/posix-functions/tolower_l.texi: Renamed from
12743         doc/glibc-functions/tolower_l.texi.
12744         * doc/posix-functions/toupper_l.texi: Renamed from
12745         doc/glibc-functions/toupper_l.texi.
12746         * doc/posix-functions/towctrans_l.texi: Renamed from
12747         doc/glibc-functions/towctrans_l.texi.
12748         * doc/posix-functions/towlower_l.texi: Renamed from
12749         doc/glibc-functions/towlower_l.texi.
12750         * doc/posix-functions/towupper_l.texi: Renamed from
12751         doc/glibc-functions/towupper_l.texi.
12752         * doc/posix-functions/uselocale.texi: Renamed from
12753         doc/glibc-functions/uselocale.texi.
12754         * doc/posix-functions/vdprintf.texi: Renamed from
12755         doc/glibc-functions/vdprintf.texi.
12756         * doc/posix-functions/wcpcpy.texi:
12757         Renamed from doc/glibc-functions/wcpcpy.texi.
12758         * doc/posix-functions/wcpncpy.texi: Renamed from
12759         doc/glibc-functions/wcpncpy.texi.
12760         * doc/posix-functions/wcscasecmp.texi: Renamed from
12761         doc/glibc-functions/wcscasecmp.texi.
12762         * doc/posix-functions/wcscasecmp_l.texi: Renamed from
12763         doc/glibc-functions/wcscasecmp_l.texi.
12764         * doc/posix-functions/wcscoll_l.texi: Renamed from
12765         doc/glibc-functions/wcscoll_l.texi.
12766         * doc/posix-functions/wcsdup.texi: Renamed from
12767         doc/glibc-functions/wcsdup.texi.
12768         * doc/posix-functions/wcsncasecmp.texi: Renamed from
12769         doc/glibc-functions/wcsncasecmp.texi.
12770         * doc/posix-functions/wcsncasecmp_l.texi: Renamed from
12771         doc/glibc-functions/wcsncasecmp_l.texi.
12772         * doc/posix-functions/wcsnlen.texi: Renamed from
12773         doc/glibc-functions/wcsnlen.texi.
12774         * doc/posix-functions/wcsnrtombs.texi: Renamed from
12775         doc/glibc-functions/wcsnrtombs.texi.
12776         * doc/posix-functions/wcsxfrm_l.texi: Renamed from
12777         doc/glibc-functions/wcsxfrm_l.texi.
12778         * doc/posix-functions/wctrans_l.texi: Renamed from
12779         doc/glibc-functions/wctrans_l.texi.
12780         * doc/posix-functions/wctype_l.texi: Renamed from
12781         doc/glibc-functions/wctype_l.texi.
12782         * doc/gnulib.texi (Function Substitutes): Add these subsections.
12783         (Glibc ctype.h, Glibc dirent.h, Glibc getopt.h, Glibc math.h,
12784         Glibc sched.h, Glibc signal.h, Glibc stdio.h, Glibc stdlib.h,
12785         Glibc string.h, Glibc time.h, Glibc unistd.h, Glibc wchar.h): Remove
12786         these subsections.
12787         (Glibc langinfo.h, Glibc locale.h, Glibc monetary.h, Glibc wctype.h):
12788         Remove sections.
12789
12790 2008-12-14  Bruno Haible  <bruno@clisp.org>
12791
12792         Update doc for POSIX:2008.
12793         * doc/posix-functions/*.texi: Update URL of POSIX specification.
12794
12795 2008-12-14  Bruno Haible  <bruno@clisp.org>
12796
12797         Update doc for POSIX:2008.
12798         * doc/pastposix-functions/bcmp.texi: Renamed from
12799         doc/posix-functions/bcmp.texi.
12800         * doc/pastposix-functions/bcopy.texi: Renamed from
12801         doc/posix-functions/bcopy.texi.
12802         * doc/pastposix-functions/bsd_signal.texi: Renamed from
12803         doc/posix-functions/bsd_signal.texi.
12804         * doc/pastposix-functions/bzero.texi: Renamed from
12805         doc/posix-functions/bzero.texi.
12806         * doc/pastposix-functions/ecvt.texi: Renamed from
12807         doc/posix-functions/ecvt.texi.
12808         * doc/pastposix-functions/fcvt.texi: Renamed from
12809         doc/posix-functions/fcvt.texi.
12810         * doc/pastposix-functions/ftime.texi: Renamed from
12811         doc/posix-functions/ftime.texi.
12812         * doc/pastposix-functions/gcvt.texi: Renamed from
12813         doc/posix-functions/gcvt.texi.
12814         * doc/pastposix-functions/getcontext.texi: Renamed from
12815         doc/posix-functions/getcontext.texi.
12816         * doc/pastposix-functions/gethostbyaddr.texi: Renamed from
12817         doc/posix-functions/gethostbyaddr.texi.
12818         * doc/pastposix-functions/gethostbyname.texi: Renamed from
12819         doc/posix-functions/gethostbyname.texi.
12820         * doc/pastposix-functions/getwd.texi: Renamed from
12821         doc/posix-functions/getwd.texi.
12822         * doc/pastposix-functions/h_errno.texi: Renamed from
12823         doc/posix-functions/h_errno.texi.
12824         * doc/pastposix-functions/index.texi: Renamed from
12825         doc/posix-functions/index.texi.
12826         * doc/pastposix-functions/makecontext.texi: Renamed from
12827         doc/posix-functions/makecontext.texi.
12828         * doc/pastposix-functions/mktemp.texi: Renamed from
12829         doc/posix-functions/mktemp.texi.
12830         * doc/pastposix-functions/pthread_attr_getstackaddr.texi: Renamed from
12831         doc/posix-functions/pthread_attr_getstackaddr.texi.
12832         * doc/pastposix-functions/pthread_attr_setstackaddr.texi: Renamed from
12833         doc/posix-functions/pthread_attr_setstackaddr.texi.
12834         * doc/pastposix-functions/rindex.texi: Renamed from
12835         doc/posix-functions/rindex.texi.
12836         * doc/pastposix-functions/scalb.texi: Renamed from
12837         doc/posix-functions/scalb.texi.
12838         * doc/pastposix-functions/setcontext.texi: Renamed from
12839         doc/posix-functions/setcontext.texi.
12840         * doc/pastposix-functions/swapcontext.texi: Renamed from
12841         doc/posix-functions/swapcontext.texi.
12842         * doc/pastposix-functions/ualarm.texi: Renamed from
12843         doc/posix-functions/ualarm.texi.
12844         * doc/pastposix-functions/usleep.texi: Renamed from
12845         doc/posix-functions/usleep.texi.
12846         * doc/pastposix-functions/vfork.texi: Renamed from
12847         doc/posix-functions/vfork.texi.
12848         * doc/pastposix-functions/wcswcs.texi: Renamed from
12849         doc/posix-functions/wcswcs.texi.
12850         * doc/gnulib.texi (Legacy Function Substitutes): New chapter.
12851         (Function Substitutes): Update.
12852
12853 2008-12-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12854
12855         * modules/relocatable-prog-wrapper (Depends-on): Add errno, needed by
12856         m4/strerror.m4.
12857
12858 2008-12-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12859             Bruno Haible  <bruno@clisp.org>
12860
12861         * modules/unilbrk/tables (Depends-on): Add unilbrk/base.
12862
12863 2008-12-13  Bruno Haible  <bruno@clisp.org>
12864
12865         * modules/strtoull (Depends-on): Remove unistd.
12866
12867 2008-12-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12868
12869         * modules/strtoull (Depends-on): Add stdlib.
12870
12871 2008-12-11  Simon Josefsson  <simon@josefsson.org>
12872
12873         * m4/manywarnings.m4 (gl_MANYWARN_ALL_GCC): Add more warnings.
12874
12875 2008-12-10  Jim Meyering  <meyering@redhat.com>
12876
12877         gl_ASSERT: don't say assertions are disabled when they're not
12878         * m4/assert.m4 (gl_ASSERT): Do not make configure report
12879         "checking whether to enable assertions... no", when they are in
12880         fact enabled.  This is solely a bug in the output of configure.
12881         In spite of saying "no", NDEBUG was not defined in that case.
12882         Also, as noted by Eric Blake, leave assertions enabled upon
12883         --enable-assert=INVALID.
12884
12885 2008-12-10  Bruno Haible  <bruno@clisp.org>
12886
12887         Change MODULES.html to refer to POSIX:2008 where possible.
12888         * MODULES.html.sh (POSIX2008_URL): New variable.
12889         (posix_headers): Remove sys/timeb, ucontext.
12890         (posix2001_headers): New variable.
12891         (posix_functions): Remove bcmp, bcopy, bsd_signal, bzero, ecvt, fcvt,
12892         ftime, gcvt, getcontext, gethostbyaddr, gethostbyname, getwd, h_errno,
12893         index, makecontext, mktemp, pthread_attr_getstackaddr,
12894         pthread_attr_setstackaddr, rindex, scalb, setcontext, swapcontext,
12895         ualarm, usleep, vfork, wcswcs. Add the new POSIX:2008 functions.
12896         (posix2001_functions): New variable.
12897         (func_module): Use URLs to POSIX:2008 where possible and to POSIX:2001
12898         otherwise.
12899
12900 2008-12-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12901
12902         add missing include to parse-duration.c
12903         * lib/parse-duration.c: #include "xalloc.h", for xstrdup.
12904         * modules/parse-duration (Depends-on): Add xalloc.
12905
12906         fix sed script reading maint.mk
12907         * top/maint.mk (MYSELF): New macro, define as $(srcdir)/$(ME).
12908         (syntax-check-rules): Use it.
12909
12910 2008-12-09  Bruno Haible  <bruno@clisp.org>
12911
12912         * m4/ldexpl.m4 (gl_FUNC_LDEXPL_WORKS): Add another check, that fails on
12913         MacOS X 10.4/PowerPC.
12914         Reported by Simon Josefsson.
12915
12916 2008-12-08  Jim Meyering  <meyering@redhat.com>
12917
12918         work around mingw's lack of some S_IF definitions
12919         * lib/fts.c (S_IFLNK, S_IFSOCK): Define if not already defined.
12920         Reported by Simon Josefsson.
12921
12922 2008-12-08  Bruno Haible  <bruno@clisp.org>
12923
12924         * m4/signbitl.m4 (gl_SIGNBIT_TEST_PROGRAM): Add a link check of signbit
12925         applied to variables. Needed on MacOS X 10.4/PowerPC.
12926         Reported by Simon Josefsson.
12927
12928 2008-12-08  William Pursell  <bill.pursell@gmail.com>  (tiny change)
12929         and Eric Blake  <ebb9@byu.net>
12930
12931         assert: honor --enable-assert
12932         * m4/assert.m4 (gl_ASSERT): Synchronize with autoconf 2.64, in
12933         order to honor --enable-assert, rather than treating it as a
12934         synonym for --disable-assert.
12935
12936 2008-12-08  Jim Meyering  <meyering@redhat.com>
12937
12938         * lib/posixtm.c: Remove now-useless declaration of mktime.
12939
12940         * build-aux/announce-gen (get_tool_versions): Accept .xz tarballs.
12941
12942 2008-12-07  Bruno Haible  <bruno@clisp.org>
12943
12944         * tests/test-lock.c (test_lock, test_rwlock, test_recursive_lock,
12945         test_once): Mark functions as static.
12946         * tests/test-tls.c (test_tls): Likewise.
12947
12948 2008-12-07  Bruno Haible  <bruno@clisp.org>
12949
12950         * lib/striconveha.h (uniconv_register_autodetect): Renamed from
12951         iconv_register_autodetect.
12952
12953 2008-12-07  Jim Meyering  <meyering@redhat.com>
12954
12955         posixtm.c: avoid a warning
12956         * lib/posixtm.c (posixtime): Don't initialize tm0.
12957         It's no longer needed to placate gcc4's -Wuninitialized,
12958         and the attempt to placate would elicit a new warning.
12959
12960         unicodeio.c: mark unused parameters
12961         * lib/unicodeio.c (exit_failure_callback): Mark unused parameter.
12962         (fallback_failure_callback): Likewise.
12963
12964 2008-12-07  Bruno Haible  <bruno@clisp.org>
12965
12966         * gnulib-tool (func_create_testdir): When building the tests
12967         subdirectory, ignore the modules gnumakefile and maintainer-makefile.
12968         Reported by Simon Josefsson.
12969
12970 2008-12-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12971
12972         * doc/manywarnings.texi, doc/gnulib-intro.texi: Fix typos.
12973
12974 2008-12-06  Bruno Haible  <bruno@clisp.org>
12975
12976         * lib/c-stack.h (c_stack_action): Clarify possible side effects.
12977         Suggested by Eric Blake.
12978
12979 2008-12-06  Bruno Haible  <bruno@clisp.org>
12980
12981         Fix a c-stack test failure on MacOS X.
12982         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Require
12983         AC_CANONICAL_HOST. Define FAULT_YIELDS_SIGBUS. If set, install a signal
12984         handler for SIGBUS as well.
12985         * lib/c-stack.c (c_stack_action): If FAULT_YIELDS_SIGBUS is set,
12986         install a signal handler for SIGBUS as well.
12987         Reported by Bruce Dugan <bld0401@gmail.com> via Eric Blake.
12988
12989 2008-12-06  Bruno Haible  <bruno@clisp.org>
12990
12991         Advocacy documentation.
12992         * doc/gnulib-intro.texi (Benefits): New section.
12993         * doc/gnulib.texi: Update.
12994
12995 2008-12-06  Bruno Haible  <bruno@clisp.org>
12996
12997         Document the 'manywarnings' module.
12998         * doc/manywarnings.texi: New file.
12999         * doc/gnulib.texi: Include it.
13000
13001 2008-12-05  Eric Blake  <ebb9@byu.net>
13002
13003         tests: silence some gcc warnings
13004         * tests/test-getdate.c (LOG) [!DEBUG]: Mark no-op void.
13005         * tests/uniwidth/test-uc_width2.c (finish_interval): Avoid printf
13006         type mismatches.
13007
13008 2008-12-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13009             Bruno Haible  <bruno@clisp.org>
13010
13011         * m4/openmp.m4 (AC_OPENMP): Do not define with Autoconf 2.62 or newer.
13012
13013 2008-11-29  Jim Meyering  <meyering@redhat.com>
13014
13015         unicodeio.c: mark unused parameters
13016         * lib/unicodeio.c (exit_failure_callback): Mark unused parameter.
13017         (fallback_failure_callback): Likewise.
13018
13019         fts: fix a thinko
13020         * lib/fts.c (s_ifmt_shift_bits): Remove function.  Not needed after all.
13021         (set_stat_type): Return S_IF*-valued "type" directly.
13022         Prompted by James Youngman's spotting a related bug.
13023         Confirmed by further testing through find.
13024
13025         fts: provide dirent.d_type via FTSENT.fts_statp, when possible
13026         * lib/fts.c (D_TYPE): Define.
13027         (DT_UNKNOWN, DT_BLK, DT_CHR) [HAVE_STRUCT_DIRENT_D_TYPE]: Define.
13028         (DT_DIR, DT_FIFO, DT_LNK, DT_REG, DT_SOCK): Likewise.
13029         (s_ifmt_shift_bits): New function.
13030         (set_stat_type): New function.
13031         (fts_build): When not calling fts_stat, call set_stat_type
13032         to propagate dirent.d_type info to fts_read caller.
13033         * lib/fts_.h (FTSENT) [FTS_DEFER_STAT]: Mention that
13034         fts_statp->st_mode type information may be valid.
13035
13036 2008-11-28  Simon Josefsson  <simon@josefsson.org>
13037
13038         * lib/sys_time.in.h: Add extern "C" block for C++.  Suggested by
13039         Brian Dessent <brian@dessent.net>.  Reported by Sam Steingold
13040         <sds@gnu.org>.
13041
13042 2008-11-20  Bruno Haible  <bruno@clisp.org>
13043
13044         Attempt to work around an AIX 5.3, 6.1 compiler bug with include_next.
13045         * lib/math.in.h: Use INCLUDE_NEXT_AS_FIRST_DIRECTIVE instead of
13046         INCLUDE_NEXT.
13047         * m4/include_next.m4 (gl_INCLUDE_NEXT): Set also
13048         INCLUDE_NEXT_AS_FIRST_DIRECTIVE.
13049         * modules/math (Makefile.am): Substitute
13050         INCLUDE_NEXT_AS_FIRST_DIRECTIVE instead of INCLUDE_NEXT.
13051         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
13052
13053 2008-11-18  Alexandre Duret-Lutz  <adl@lrde.epita.fr>
13054             Bruno Haible  <bruno@clisp.org>
13055
13056         * lib/stdint.in.h: Define all type macros so that their expansion is
13057         a single typedef'ed token. Fixes a compilation failure in Boost which
13058         does "using ::int8_t;".
13059
13060 2008-11-18  Simon Josefsson  <simon@josefsson.org>
13061
13062         * m4/manywarnings.m4: New file with gl_MANYWARN_COMPLEMENT and
13063         gl_MANYWARN_ALL_GCC.
13064         * m4/warnings.m4: Removed gl_WARN_SUPPORTED and
13065         gl_WARN_COMPLEMENT.  Suggested by Bruno Haible <bruno@clisp.org>.
13066         * modules/manywarnings: New file.
13067         * MODULES.html.sh: Mention manywarnings module.
13068
13069 2008-11-18  Bruno Haible  <bruno@clisp.org>
13070
13071         * doc/gnulib-tool.texi (Unit tests): New section.
13072
13073 2008-11-18  Simon Josefsson  <simon@josefsson.org>
13074
13075         * top/maint.mk (refresh-po): Fix sed regexp to avoid problems with
13076         paths like 'lib/po/foo.po'.
13077
13078 2008-11-17  Simon Josefsson  <simon@josefsson.org>
13079
13080         * m4/warnings.m4: Improve code.  Reported by Ralf Wildenhues
13081         <Ralf.Wildenhues@gmx.de> and Paolo Bonzini <bonzini@gnu.org>.
13082
13083 2008-11-17  Simon Josefsson  <simon@josefsson.org>
13084
13085         * m4/warnings.m4: Use CPPFLAGS to really check whether the
13086         parameter works.
13087
13088 2008-11-17  Simon Josefsson  <simon@josefsson.org>
13089
13090         * m4/warnings.m4: Add gl_WARN_COMPLEMENT and gl_WARN_SUPPORTED.
13091
13092 2008-11-17  Bruce Korb  <bkorb@gnu.org>
13093
13094         * modules/parse-duration-tests: New file.
13095         * tests/test-parse-duration.sh: New file.
13096         * tests/test-parse-duration.c: New file.
13097
13098         New module 'parse-duration'.
13099         * lib/parse-duration.h: New file.
13100         * lib/parse-duration.c: New file.
13101         * modules/parse-duration: New file.
13102
13103 2008-11-17  Bruno Haible  <bruno@clisp.org>
13104
13105         * tests/test-select-out.sh: Comment out the first pipe test.
13106         Reported by Simon Josefsson.
13107
13108 2008-11-17  Bruno Haible  <bruno@clisp.org>
13109
13110         * modules/getaddrinfo (Depends-on): Add servent, hostent.
13111         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_SERVENT and
13112         gl_HOSTENT.
13113
13114 2008-11-17  Bruno Haible  <bruno@clisp.org>
13115
13116         * m4/sockets.m4 (gl_SOCKETS): After trying -lsocket, try also
13117         -lnetwork and -lnet. Needed for Haiku and BeOS.
13118
13119 2008-11-16  Bruno Haible  <bruno@clisp.org>
13120
13121         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix indentation.
13122
13123 2008-11-16  Bruno Haible  <bruno@clisp.org>
13124
13125         Avoid test failure on Haiku.
13126         * tests/test-fsync.c: Include <errno.h>.
13127         (main): Don't require that fsync (0) fails.
13128
13129 2008-11-15  Bruno Haible  <bruno@clisp.org>
13130
13131         New module 'hostent'.
13132         * modules/hostent: New file.
13133         * m4/hostent.m4: New file, based on code in m4/getaddrinfo.m4.
13134
13135 2008-11-15  Bruno Haible  <bruno@clisp.org>
13136
13137         New module 'servent'.
13138         * modules/servent: New file.
13139         * m4/servent.m4: New file, based on code in m4/getaddrinfo.m4.
13140
13141 2008-11-15  Bruno Haible  <bruno@clisp.org>
13142
13143         Avoid generating same test program with two different rules.
13144         * modules/frexp-nolibm-tests (Makefile.am): Rename test program from
13145         test-frexp to test-frexp-nolibm.
13146         * modules/frexpl-nolibm-tests (Makefile.am): Rename test program from
13147         test-frexpl to test-frexpl-nolibm.
13148
13149 2008-11-15  Bruno Haible  <bruno@clisp.org>
13150
13151         * modules/frexpl-tests (Makefile.am): Link test-frexpl with
13152         $(FREXPL_LIBM).
13153
13154 2008-11-15  Bruno Haible  <bruno@clisp.org>
13155
13156         * lib/netdb.in.h: Activate the definitions also when the system's
13157         <netdb.h> has 'struct addrinfo'.
13158         * m4/netdb_h.m4 (gl_HEADER_NETDB): Replace netdb.h also when it lacks
13159         EAI_OVERFLOW or AI_NUMERICSERV.
13160         * doc/posix-headers/netdb.texi: Document the problem.
13161
13162 2008-11-15  Bruno Haible  <bruno@clisp.org>
13163
13164         * tests/test-sched.c: Test also the existence of the SCHED_* macros.
13165
13166         Make the 'sched' module work on platforms where <sched.h> exists but
13167         is incomplete (such as Haiku).
13168         * lib/sched.in.h; Include the system's <sched.h> if it exists.
13169         (SCHED_FIFO, SCHED_RR, SCHED_OTHER): New macros.
13170         * m4/sched_h.m4 (gl_SCHED_H): Test whether <sched.h> exists and also
13171         defines SCHED_FIFO, SCHED_RR, SCHED_OTHER. Set HAVE_SCHED_H,
13172         HAVE_STRUCT_SCHED_PARAM.
13173         * modules/sched (Depends-on): Add include_next.
13174         (Makefile.am): Substitute HAVE_SCHED_H, INCLUDE_NEXT,
13175         PRAGMA_SYSTEM_HEADER, NEXT_SCHED_H, HAVE_STRUCT_SCHED_PARAM.
13176         * doc/posix-headers/sched.texi: Document the issue.
13177
13178 2008-11-13  Jim Meyering  <meyering@redhat.com>
13179
13180         test-argp-2: avoid test failure when PACKAGE_BUGREPORT is defined
13181         * tests/test-argp-2.sh: When PACKAGE_BUGREPORT was defined, this
13182         test would fail due to the difference in the Report bugs to ...
13183         line.  The expected address is empty, "<>", while the actual
13184         would contain e.g., "<bug-tar@gnu.org>".  Filter out any address.
13185
13186 2008-11-12  Bruno Haible  <bruno@clisp.org>
13187
13188         lstat: don't compile lstat.c on systems lacking lstat
13189         * m4/lstat.m4 (gl_FUNC_LSTAT): Don't compile lstat.c on systems
13190         which don't have lstat; this is handled by lib/sys_stat.in.h already.
13191         Reported by Daniel P. Berrange via Jim Meyering.
13192
13193 2008-11-12  Jim Meyering  <meyering@redhat.com>
13194
13195         * lib/unicodeio.c (unicode_to_mb): Correct spelling of u8_uctomb.
13196
13197 2008-11-12  Simon Josefsson  <simon@josefsson.org>
13198
13199         * modules/warnings (configure.ac): Do AC_SUBST([WARN_CFLAGS]) here
13200         instead.
13201
13202 2008-11-12  Bruno Haible  <bruno@clisp.org>
13203
13204         * lib/unicodeio.c: Include unistr.h.
13205         (utf8_wctomb): Remove function.
13206         (unicode_to_mb): Use utf8_uctomb instead of utf8_wctomb.
13207
13208 2008-11-12  Simon Josefsson  <simon@josefsson.org>
13209
13210         * m4/warnings.m4 (gl_WARN_INIT): Remove, suggested by Ralf
13211         Wildenhues <Ralf.Wildenhues@gmx.de> and Bruno Haible
13212         <bruno@clisp.org>.
13213         * modules/warnings (configure.ac): Don't call gl_WARN_INIT.
13214
13215 2008-11-12  Simon Josefsson  <simon@josefsson.org>
13216
13217         * doc/warnings.texi: New file, from Bruno Haible <bruno@clisp.org>.
13218         * doc/gnulib.texi: Add section for warnings.
13219
13220 2008-11-11  Bruno Haible  <bruno@clisp.org>
13221
13222         * lib/sockets.h: Add a comment.
13223
13224 2008-11-11  Karl Berry  <karl@gnu.org>
13225
13226         * config/srclist.txt (fdl.texi): add, syncing from gnustandards.
13227
13228 2008-11-11  Eric Blake  <ebb9@byu.net>
13229
13230         fdl.texi: avoid git symlinks
13231         * doc/fdl.texi: Copy, rather than link, fdl-1.3.texi.
13232
13233 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
13234
13235         * m4/warnings.m4 (gl_WARN_ADD): Don't AC_SUBST the empty string.
13236
13237 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
13238
13239         * m4/warnings.m4 (gl_WARN_INIT): Substitute WARN_CFLAGS.
13240         (gl_WARN_ADD): Substitute $2 if literal.
13241
13242 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
13243
13244         * m4/warning.m4: Remove.
13245
13246 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
13247
13248         * m4/warnings.m4: Almost complete rewrite. :-)
13249
13250 2008-11-10  Simon Josefsson  <simon@josefsson.org>
13251
13252         * modules/warnings: New module.
13253         * m4/warnings.m4: New file.
13254         * MODULES.html.sh: Mention warnings module.
13255         With review improvements from Paolo Bonzini <bonzini@gnu.org> and
13256         Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
13257
13258 2008-11-10  Eric Blake  <ebb9@byu.net>
13259
13260         fdl.texi: make a symlink to the latest version
13261         * doc/standards.texi: Revert today's earlier change.
13262         * doc/fdl-1.2.texi: Rename from old fdl.texi...
13263         * doc/fdl.texi: ...and replace this with a symlink to the newer
13264         fdl-1.3.texi.
13265
13266 2008-11-10  Bruno Haible  <bruno@clisp.org>
13267
13268         * tests/test-select-fd.c (main): Accept the result file name as fourth
13269         argument.
13270         * tests/test-select-in.sh: Pass t-select-in.tmp as fourth argument.
13271         * tests/test-select-out.sh: Pass t-select-out.tmp as fourth argument.
13272
13273 2008-11-10  Bruno Haible  <bruno@clisp.org>
13274
13275         * lib/netdb.in.h: Use HAVE_STRUCT_ADDRINFO, HAVE_DECL_GETADDRINFO,
13276         HAVE_DECL_FREEADDRINFO, HAVE_DECL_GAI_STRERROR, HAVE_DECL_GETNAMEINFO
13277         as autoconf-substituted macros.
13278         * m4/netdb_h.m4 (gl_NETDB_H_DEFAULTS): Initialize these variables to 1.
13279         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require
13280         gl_NETDB_H_DEFAULTS. Set these variables.
13281         * modules/netdb (Makefile.am): Substitute these variables.
13282
13283 2008-11-10  Eric Blake  <ebb9@byu.net>
13284
13285         standards.texi: include correct file for FDL 1.3
13286         * doc/standards.texi (GNU Free Documentation License): Change
13287         include file to pull in FDL 1.3, not 1.2.
13288
13289         fdl.texi: revert accidental change to license
13290         * doc/fdl.texi: This is FDL 1.2, not 1.3.
13291
13292 2008-11-10  Bruno Haible  <bruno@clisp.org>
13293
13294         * m4/printf.m4 (gl_PRINTF_ENOMEM): Guess yes on Haiku. Use the
13295         cross-compiling guesses also when the native compile gives no result.
13296
13297 2008-11-10  Bruno Haible  <bruno@clisp.org>
13298
13299         * lib/spawni.c (__spawni): Force variable into the stack.
13300
13301 2008-11-10  Bruno Haible  <bruno@clisp.org>
13302
13303         Add support for Haiku.
13304         * lib/fbufmode.c (fbufmode): Test a symbol that is not only defined on
13305         glibc and BeOS, but also on Haiku.
13306         * lib/fpurge.c (fpurge): Likewise.
13307         * lib/freadable.c (freadable): Likewise.
13308         * lib/freadahead.c (freadahead): Likewise.
13309         * lib/freading.c (freading): Likewise.
13310         * lib/freadptr.c (freadptr): Likewise.
13311         * lib/freadseek.c (freadptrinc): Likewise.
13312         * lib/fseeko.c (rpl_fseeko): Likewise.
13313         * lib/fseterr.c (fseterr): Likewise.
13314         * lib/fwritable.c (fwritable): Likewise.
13315         * lib/fwriting.c (fwriting): Likewise.
13316         Reported by Ingo Weinhold <ingo_weinhold@gmx.de>.
13317
13318 2008-11-10  Ingo Weinhold  <ingo_weinhold@gmx.de>
13319
13320         * lib/config.charset: Treat Haiku like BeOS.
13321
13322 2008-11-10  Ingo Weinhold  <ingo_weinhold@gmx.de>
13323
13324         * lib/binary-io.h (O_BINARY, O_TEXT): Treat Haiku like BeOS.
13325         * lib/fcntl.in.h (O_BINARY, O_TEXT): Likewise.
13326
13327 2008-11-08  Bruno Haible  <bruno@clisp.org>
13328
13329         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H): Avoid using AC_CHECK_DECL inside
13330         AC_CACHE_CHECK.
13331
13332 2008-11-08  Bruno Haible  <bruno@clisp.org>
13333
13334         * modules/select-tests (configure.ac): Check for unistd.h, sys/wait.h.
13335
13336 2008-11-08  Bruno Haible  <bruno@clisp.org>
13337
13338         * tests/test-select-fd.c: New file.
13339         * tests/test-select-in.sh: New file.
13340         * tests/test-select-out.sh: New file.
13341         * tests/test-select-stdin.c: New file.
13342         * modules/select-tests (Files): Add the new files.
13343         (Depends-on): Add gettimeofday.
13344         (Makefile.am): Add test-select-in.sh, test-select-out.sh to TESTS.
13345         Set TESTS_ENVIRONMENT. Add test-select-fd, test-select-stdin to
13346         check_PROGRAMS. Define test_select_fd_LDADD, test_select_stdin_LDADD.
13347
13348 2008-11-06  Alexander V. Lukyanov  <lav@netis.ru>
13349             Bruno Haible  <bruno@clisp.org>
13350
13351         * lib/sys_stat.in.h: Enclose function definitions in extern "C".
13352
13353 2008-10-12  Giuseppe Scrivano  <gscrivano@gnu.org>
13354
13355         * build-aux/pmccabe2html: Added support for C++ source files.
13356
13357 2008-11-05  Ben Pfaff  <blp@gnu.org>
13358
13359         Fix lib/close.c build on Windows.
13360         * modules/close (Files): Add lib/w32sock.h.
13361
13362 2008-11-05  Joel E. Denny  <jdenny@ces.clemson.edu>
13363
13364         Accept Bison's NEWS format.
13365         * build-aux/announce-gen (print_news_deltas): Tweak
13366         $re_prefix.
13367
13368 2008-11-04  Bruno Haible  <bruno@clisp.org>
13369
13370         * modules/random_r (Maintainer): Add glibc.
13371
13372 2008-11-04  Simon Josefsson  <simon@josefsson.org>
13373
13374         * doc/alloca-opt.texi: Change license to GFDLv1.3+, as suggested
13375         by karl@freefriends.org (Karl Berry).
13376         * doc/alloca.texi: Likewise.
13377         * doc/c-ctype.texi: Likewise.
13378         * doc/c-strcase.texi: Likewise.
13379         * doc/c-strcaseeq.texi: Likewise.
13380         * doc/c-strcasestr.texi: Likewise.
13381         * doc/c-strstr.texi: Likewise.
13382         * doc/c-strtod.texi: Likewise.
13383         * doc/c-strtold.texi: Likewise.
13384         * doc/ctime.texi: Likewise.
13385         * doc/error.texi: Likewise.
13386         * doc/fdl.texi: Likewise.
13387         * doc/gcd.texi: Likewise.
13388         * doc/getdate.texi: Likewise.
13389         * doc/gnulib-intro.texi: Likewise.
13390         * doc/gnulib-tool.texi: Likewise.
13391         * doc/gnulib.texi: Likewise.
13392         * doc/inet_ntoa.texi: Likewise.
13393         * doc/maintain.texi: Likewise.
13394         * doc/make-stds.texi: Likewise.
13395         * doc/quote.texi: Likewise.
13396         * doc/regexprops-generic.texi: Likewise.
13397         * doc/standards.texi: Likewise.
13398         * doc/verify.texi: Likewise.
13399         * doc/visibility.texi: Likewise.
13400         * doc/gnulib.texi (GNU Free Documentation License): Include
13401         fdl-1.3.texi instead of fdl.texi.
13402
13403 2008-11-04  Simon Josefsson  <simon@josefsson.org>
13404
13405         * doc/fdl-1.3.texi: New file, from
13406         <http://www.gnu.org/licenses/fdl-1.3.texi>.
13407         * modules/fdl-1.3: Add.
13408         * MODULES.html.sh: Add fdl-1.3.
13409
13410 2008-11-03  Bruno Haible  <bruno@clisp.org>
13411
13412         Make determination of absolute name of header file work with AIX xlc.
13413         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Require
13414         AC_CANONICAL_HOST. On AIX, use "$CPP -C" rather than "$CPP" for
13415         preprocessing.
13416         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
13417         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
13418
13419 2008-11-03  Simon Josefsson  <simon@josefsson.org>
13420
13421         * top/maint.mk (COVERAGE_CCOPTS): Use --coverage instead of
13422         -fprofile-arcs -ftest-coverage.  Suggested by Ludovic Courtès
13423         <ludo@gnu.org>.
13424
13425 2008-11-02  Bruno Haible  <bruno@clisp.org>
13426
13427         Mark 'strpbrk' obsolete.
13428         * modules/strpbrk (Status, Notice): New sections.
13429         * modules/strtok_r (Depends-on): Add strpbrk.
13430
13431 2008-11-02  Bruno Haible  <bruno@clisp.org>
13432
13433         Mark 'strdup' obsolete.
13434         * modules/strdup (Status, Notice): New sections.
13435         * modules/findprog (Depends-on): Add strdup.
13436         * modules/getaddrinfo (Depends-on): Likewise.
13437         * modules/localename (Depends-on): Likewise.
13438         * modules/relocatable-lib (Depends-on): Likewise.
13439         * modules/relocatable-lib-lgpl (Depends-on): Likewise.
13440         * modules/relocatable-prog (Depends-on): Likewise.
13441         * modules/trim (Depends-on): Likewise.
13442         * modules/unictype/gen-ctype (Depends-on): Likewise.
13443         * modules/unilbrk/gen-lbrk (Depends-on): Likewise.
13444
13445 2008-11-02  Bruno Haible  <bruno@clisp.org>
13446
13447         Mark 'strcspn' obsolete.
13448         * modules/strcspn (Status, Notice): New sections.
13449
13450 2008-11-02  Bruno Haible  <bruno@clisp.org>
13451
13452         Mark 'rmdir' obsolete.
13453         * modules/rmdir (Status, Notice): New sections.
13454         * modules/clean-temp (Depends-on): Add rmdir.
13455         * modules/openat (Depends-on): Likewise.
13456
13457 2008-11-02  Bruno Haible  <bruno@clisp.org>
13458
13459         Mark 'raise' obsolete.
13460         * modules/raise (Status, Notice): New sections.
13461         (Include): Specify <signal.h>.
13462         * modules/stdio (Depends-on): Add raise.
13463         * modules/write (Depends-on): Likewise.
13464
13465 2008-11-02  Bruno Haible  <bruno@clisp.org>
13466
13467         Mark 'memset' obsolete.
13468         * modules/memset (Status, Notice): New sections.
13469
13470 2008-11-02  Bruno Haible  <bruno@clisp.org>
13471
13472         Mark 'memmove' obsolete.
13473         * modules/memmove (Status, Notice): New sections.
13474         * modules/argp (Depends-on): Add memmove.
13475         * modules/argz (Depends-on): Likewise.
13476         * modules/canonicalize (Depends-on): Likewise.
13477         * modules/canonicalize-lgpl (Depends-on): Likewise.
13478         * modules/fts (Depends-on): Likewise.
13479         * modules/getcwd (Depends-on): Likewise.
13480         * modules/human (Depends-on): Likewise.
13481         * modules/regex (Depends-on): Likewise.
13482         * modules/striconveh (Depends-on): Likewise.
13483         * modules/trim (Depends-on): Likewise.
13484         * modules/unistr/u8-move (Depends-on): Likewise.
13485         * modules/unistr/u16-move (Depends-on): Likewise.
13486         * modules/unistr/u32-move (Depends-on): Likewise.
13487
13488 2008-11-02  Bruno Haible  <bruno@clisp.org>
13489
13490         Mark 'memcpy' obsolete.
13491         * modules/memcpy (Status, Notice): New sections.
13492
13493 2008-11-02  Bruno Haible  <bruno@clisp.org>
13494
13495         Mark 'memcmp' obsolete.
13496         * modules/memcmp (Status, Notice): New sections.
13497         * modules/argmatch (Depends-on): Add memchr.
13498         * modules/backupfile (Depends-on): Likewise.
13499         * modules/c-strcasestr (Depends-on): Likewise.
13500         * modules/crypto/des (Depends-on): Likewise.
13501         * modules/csharpcomp (Depends-on): Likewise.
13502         * modules/fnmatch (Depends-on): Likewise.
13503         * modules/git-merge-changelog (Depends-on): Likewise.
13504         * modules/isnand (Depends-on): Likewise.
13505         * modules/isnand-nolibm (Depends-on): Likewise.
13506         * modules/isnanf (Depends-on): Likewise.
13507         * modules/isnanf-nolibm (Depends-on): Likewise.
13508         * modules/isnanl (Depends-on): Likewise.
13509         * modules/isnanl-nolibm (Depends-on): Likewise.
13510         * modules/mbchar (Depends-on): Likewise.
13511         * modules/memcoll (Depends-on): Likewise.
13512         * modules/quotearg (Depends-on): Likewise.
13513         * modules/regex (Depends-on): Likewise.
13514         * modules/relocatable-prog (Depends-on): Likewise.
13515         * modules/same (Depends-on): Likewise.
13516         * modules/signbit (Depends-on): Likewise.
13517         * modules/strcasestr-simple (Depends-on): Likewise.
13518         * modules/unictype/gen-ctype (Depends-on): Likewise.
13519         * modules/unilbrk/gen-lbrk (Depends-on): Likewise.
13520         * modules/uniname/uniname (Depends-on): Likewise.
13521         * modules/unistr/u8-cmp (Depends-on): Likewise.
13522
13523 2008-11-02  Bruno Haible  <bruno@clisp.org>
13524
13525         Mark 'memchr' obsolete.
13526         * modules/memchr (Status, Notice): New sections.
13527         * modules/argp (Depends-on): Add memchr.
13528         * modules/base64 (Depends-on): Likewise.
13529         * modules/c-strcasestr (Depends-on): Likewise.
13530         * modules/chdir-long (Depends-on): Likewise.
13531         * modules/fnmatch (Depends-on): Likewise.
13532         * modules/getsubopt (Depends-on): Likewise.
13533         * modules/git-merge-changelog (Depends-on): Likewise.
13534         * modules/glob (Depends-on): Likewise.
13535         * modules/strcasestr-simple (Depends-on): Likewise.
13536         * modules/strnlen (Depends-on): Likewise.
13537
13538 2008-11-02  Bruno Haible  <bruno@clisp.org>
13539
13540         Mark 'atexit' obsolete.
13541         * modules/atexit (Status, Notice): New sections.
13542         * modules/chdir-long (Depends-on): Add atexit.
13543         * modules/wait-process (Depends-on): Likewise.
13544
13545 2008-11-02  Bruno Haible  <bruno@clisp.org>
13546
13547         * gnulib-tool: New option --with-obsolete.
13548         (func_usage): Document it.
13549         (func_modules_transitive_closure): Drop obsolete dependencies if
13550         incobsolete is not true.
13551         (func_import): Read and save the incobsolete variable to the cache.
13552
13553 2008-11-02  Bruno Haible  <bruno@clisp.org>
13554
13555         * modules/TEMPLATE-EXTENDED: New field 'Status'.
13556         * gnulib-tool: New option --extract-status.
13557         (func_usage): Document it.
13558         (sed_extract_prog): Recognize it.
13559         (func_get_status): New function.
13560
13561 2008-10-30  Simon Josefsson  <simon@josefsson.org>
13562
13563         * modules/sockets (License): Change from LGPL to LGPLv2+.
13564
13565 2008-10-28  Simon Josefsson  <simon@josefsson.org>
13566
13567         * top/maint.mk: Add coverage rules, inspired by scripts in gnupdf.
13568
13569 2008-10-28  Simon Josefsson  <simon@josefsson.org>
13570
13571         * MODULES.html.sh (Support for systems lacking POSIX:2001):
13572         Mention times and sys_times.
13573         * modules/sys_times, modules/sys_times-tests: New modules.
13574         * modules/times, modules/times-tests: Likewise
13575         * m4/sys_times_h.m4: New file.
13576         * lib/sys_times.in.h: Likewise
13577         * lib/times.c: Likewise.
13578         * tests/test-sys_times.c: Likewise.
13579         * tests/test-times.c: Likewise.
13580         * doc/posix-headers/sys_times.texi: Update.
13581         * doc/posix-functions/times.texi: Update.
13582
13583 2008-10-28  Jim Meyering  <meyering@redhat.com>
13584
13585         * modules/tempname (Depends-on): Add lstat.
13586
13587         * modules/lstat (License): Relicense: LGPL -> LGPLv2+.
13588
13589 2008-10-28  Simon Josefsson  <simon@josefsson.org>
13590
13591         * gnulib-tool (func_emit_tests_Makefile_am): Revert last commit.
13592         * modules/argp-tests (test_argp_LDADD): Set EXEEXT here instead,
13593         using idiom used elsewhere in gnulib.
13594
13595 2008-10-27  Jim Meyering  <meyering@redhat.com>
13596
13597         * modules/gethostname (License): Relicense: LGPL -> LGPLv2+.
13598
13599 2008-10-27  Simon Josefsson  <simon@josefsson.org>
13600
13601         * gnulib-tool (func_emit_tests_Makefile_am): Set EXEEXT in
13602         TESTS_ENVIRONMENT, for shell scripts that needs to call built
13603         programs.
13604         * tests/test-argp-2.sh: Use $EXEEXT when needed.
13605
13606 2008-10-27  Simon Josefsson  <simon@josefsson.org>
13607
13608         * lib/sys_stat.in.h (lstat): Fix declaration for mingw.
13609
13610 2008-10-27  Bruno Haible  <bruno@clisp.org>
13611
13612         * tests/test-lstat.c: Include <stdio.h>.
13613
13614 2008-10-27  Simon Josefsson  <simon@josefsson.org>
13615
13616         * modules/lstat-tests: New module.
13617         * tests/test-lstat.c: New file.
13618
13619 2008-10-26  Jim Meyering  <meyering@redhat.com>
13620
13621         * lib/mkdir.c (rpl_mkdir) [_WIN32...]: Mark mode as an unused parameter.
13622
13623 2008-10-26  Simon Josefsson  <simon@josefsson.org>
13624             Bruno Haible  <bruno@clisp.org>
13625
13626         Fix a clash between the type DATADIR on Windows and the macro DATADIR.
13627         * modules/configmake (Include): Add a note that the include must come
13628         after all system headers.
13629         * lib/javaversion.c: Include configmake.h after all other includes.
13630
13631 2008-10-26  Bruno Haible  <bruno@clisp.org>
13632
13633         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Set default of
13634         HAVE_STRUCT_RANDOM_DATA to 1.
13635         (gl_STDLIB_H): Simplify.
13636
13637 2008-10-26  Simon Josefsson  <simon@josefsson.org>
13638
13639         * m4/stdlib_h.m4: Check for struct random_data.  Initialize and
13640         substitute HAVE_STRUCT_RANDOM_DATA.
13641         * lib/stdlib.in.h [!HAVE_STRUCT_RANDOM_DATA]: Provide struct
13642         random_data.
13643         * modules/stdlib (Makefile.am): Substitute
13644         HAVE_STRUCT_RANDOM_DATA.
13645
13646 2008-10-26  Simon Josefsson  <simon@josefsson.org>
13647
13648         * doc/gnulib.texi (@copying): Use GFDLv1.2+.
13649         * doc/gnulib-intro.texi (Copyright): Likewise.
13650
13651 2008-10-26  Simon Josefsson  <simon@josefsson.org>
13652
13653         * doc/gnulib.texi (Header files): C++ fixes, based on Bruno's
13654         findings.
13655
13656 2008-10-25  Ben Pfaff  <blp@cs.stanford.edu>
13657             Bruno Haible  <bruno@clisp.org>
13658
13659         * lib/unistd.in.h: Include <winsock2.h>.
13660         (socket, connect,accept, bind, getpeername, getsockname, getsockopt,
13661         listen, recv, send, recvfrom, sendto, setsockopt, shutdown, select):
13662         Provide dummy declarations.
13663         (gethostname): Override.
13664         * lib/sys_socket.in.h (gethostname): Provide dummy declaration.
13665         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Invoke
13666         gl_PREREQ_SYS_H_WINSOCK2.
13667         * modules/gethostname (Files): Add m4/sys_socket_h.m4.
13668         * doc/posix-functions/gethostname.texi: More details.
13669
13670 2008-10-25  Bruno Haible  <bruno@clisp.org>
13671
13672         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Require
13673         gl_UNISTD_H_DEFAULTS, gl_SYS_IOCTL_H_DEFAULTS only if they exist.
13674         * modules/sys_socket (Files): Remove m4/unistd_h.m4, m4/sys_ioctl_h.m4.
13675
13676         * lib/sys_socket.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET); Move macro from
13677         here ...
13678         * lib/unistd.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET); ... to here.
13679         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Remove invocation of
13680         gl_UNISTD_H_DEFAULTS.
13681
13682 2008-10-25  Eric Blake  <ebb9@byu.net>
13683
13684         signbit: avoid spurious compiler failure
13685         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Move non-constant
13686         declarations inside function.
13687
13688 2008-10-24  Simon Josefsson  <simon@josefsson.org>
13689             Bruno Haible  <bruno@clisp.org>
13690
13691         * lib/stdlib.in.h (@GNULIB_RANDOM_R@): Include stdint.h.
13692         * modules/random_r (Depends-on): Add stdint.
13693
13694 2008-10-24  Bruno Haible  <bruno@clisp.org>
13695
13696         * modules/intprops (License): Change to LGPLv2+, with approval by Paul
13697         Eggert.
13698         * modules/strerror (License): Likewise.
13699
13700 2008-10-24  Jim Meyering  <meyering@redhat.com>
13701
13702         sys_socket: fix typo that inhibited expansion of @GNULIB_SEND@
13703         * modules/sys_socket (Depends-on) [Depends-on]: Fix typo.
13704
13705 2008-10-24  Eric Blake  <ebb9@byu.net>
13706
13707         getgroups: fix compilation when getgroups is available
13708         * lib/getgroups.c (includes): Include <unistd.h> for getgroups,
13709         but with <config.h> override of getgroups disabled.
13710
13711 2008-10-24  Simon Josefsson  <simon@josefsson.org>
13712
13713         * doc/gnulib.texi (Header files): Add note about C++ problems.
13714         Explained by Bruno Haible <bruno@clisp.org>.
13715
13716 2008-10-23  Bruno Haible  <bruno@clisp.org>
13717
13718         Define a dummy SA_NODEFER macro on Interix.
13719         * lib/signal.in.h (SA_NODEFER): Define fallback.
13720         Reported by Aleksey Cheusov <cheusov@tut.by> via
13721         Thomas Klausner <wiz@netbsd.org> and Eric Blake.
13722
13723 2008-10-23  Bruno Haible  <bruno@clisp.org>
13724
13725         * modules/freadahead (License): Change to LGPLv2+.
13726         Suggested by Simon Josefsson.
13727
13728 2008-10-23  Jim Meyering  <meyering@redhat.com>
13729
13730         random_r: new module
13731         * modules/random_r: New file.
13732         * m4/random_r.m4: New file.
13733         * lib/random_r.c: New file, from glibc.
13734         * modules/random_r-tests: New file.
13735         * tests/test-random_r.c: New file.
13736         * lib/stdlib.in.h (srandom_r, initstate_r, setstate_r, random_r):
13737          Declare.
13738         (RAND_MAX): Define.
13739         * m4/stdlib_h.m4: Define and AC_SUBST GNULIB_RANDOM_R and HAVE_RANDOM_R.
13740         * modules/stdlib: Substitute them, too.
13741         * MODULES.html.sh (Extra functions based on POSIX:2001) [Misc]: Add it.
13742         * doc/glibc-functions/initstate_r.texi: Mention the new module.
13743         * doc/glibc-functions/random_r.texi: Likewise.
13744         * doc/glibc-functions/setstate_r.texi: Likewise.
13745         * doc/glibc-functions/srandom_r.texi: Likewise.
13746         * config/srclist.txt: Mention it.
13747
13748 2008-10-23  David Lutterkort  <lutter@redhat.com>
13749
13750         * modules/selinux-h: Search for LIB_SELINUX and mark it as a
13751         link requirement
13752
13753 2008-10-23  Jim Meyering  <meyering@redhat.com>
13754
13755         selinux-h: mark parameters of stub functions as intentionally unused
13756         * lib/se-selinux.in.h: Mark parameters as _UNUSED_PARAMETER_.
13757         * lib/se-context.in.h: Likewise.
13758
13759 2008-10-22  Simon Josefsson  <simon@josefsson.org>
13760
13761         * lib/sys_socket.in.h (FD_ISSET): Fix warnings under mingw.
13762
13763 2008-10-22  Simon Josefsson  <simon@josefsson.org>
13764
13765         * m4/getgroups.m4: Avoid invoking test with wrong parameters.
13766
13767 2008-10-22  Eric Blake  <ebb9@byu.net>
13768
13769         glthread/thread: avoid compiler warning
13770         * lib/glthread/thread.c (gl_thread_exit_func) [USE_WIN32_THREADS]:
13771         Add unreachable abort to silence compiler.
13772
13773 2008-10-22  Eric Blake  <ebb9@byu.net>
13774
13775         netdb: also supply struct addrinfo for cygwin 1.5.x
13776         * m4/netdb_h.m4 (gl_HEADER_NETDB): Check for incomplete header on
13777         older cygwin.
13778         * lib/netdb.in.h [!HAVE_STRUCT_ADDRINFO]: Also supply contents for
13779         cygwin.
13780         * doc/posix-headers/netdb.texi (netdb.h): Document this.
13781
13782 2008-10-22  Bruno Haible  <bruno@clisp.org>
13783
13784         * users.txt: Update entry about pspp.
13785
13786 2008-10-21  Bruno Haible  <bruno@clisp.org>
13787
13788         Simplification.
13789         * lib/sys_socket.in.h (_gl_close_fd_maybe_socket): Remove declaration.
13790         * lib/close.c (_gl_close_fd_maybe_socket): Make static.
13791
13792         Simplification.
13793         * lib/ioctl.c (ioctl): Don't undefine.
13794         * lib/socket.c (socket): Don't undefine.
13795
13796         Remove unused module indicator macros.
13797         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR): Don't define
13798         GNULIB_$1 as a C macro.
13799
13800         * doc/posix-functions/close.texi: Undo last change.
13801         * doc/posix-functions/ioctl.texi: Merge the two paragraphs about
13802         Windows platforms.
13803
13804 2008-10-21  Bruno Haible  <bruno@clisp.org>
13805
13806         Add gethostname() declaration to <unistd.h>.
13807         * lib/unistd.in.h (gethostname): New declaration.
13808         * lib/gethostname.c: Include <unistd.h>.
13809         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Require
13810         gl_UNISTD_H_DEFAULTS. Set HAVE_GETHOSTNAME.
13811         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETHOSTNAME
13812         and HAVE_GETHOSTNAME.
13813         * modules/gethostname (Depends-on): Add unistd.
13814         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
13815         (Include): Specify <unistd.h>.
13816         * modules/unistd (Makefile.am): Substitute GNULIB_GETHOSTNAME and
13817         HAVE_GETHOSTNAME.
13818         * tests/test-gethostname.c: Include <unistd.h> first.
13819
13820 2008-10-21  Bruno Haible  <bruno@clisp.org>
13821
13822         * modules/poll-tests (Depends-on): Add sys_ioctl, ioctl.
13823         * modules/select-tests (Depends-on): Likewise.
13824         Reported by Simon Josefsson.
13825
13826 2008-10-21  Simon Josefsson  <simon@josefsson.org>
13827
13828         * lib/close.c: Add _gl_close_fd_maybe_socket from winsock.c.
13829         * lib/accept.c: New file, based on winsock.c.
13830         * lib/bind.c: New file, based on winsock.c.
13831         * lib/connect.c: New file, based on winsock.c.
13832         * lib/getpeername.c: New file, based on winsock.c.
13833         * lib/getsockname.c: New file, based on winsock.c.
13834         * lib/getsockopt.c: New file, based on winsock.c.
13835         * lib/ioctl.c: New file, based on winsock.c.
13836         * lib/listen.c: New file, based on winsock.c.
13837         * lib/recv.c: New file, based on winsock.c.
13838         * lib/recvfrom.c: New file, based on winsock.c.
13839         * lib/send.c: New file, based on winsock.c.
13840         * lib/sendto.c: New file, based on winsock.c.
13841         * lib/setsockopt.c: New file, based on winsock.c.
13842         * lib/shutdown.c: New file, based on winsock.c.
13843         * lib/socket.c: New file, based on winsock.c.
13844         * lib/w32sock.h: New file, based on winsock.c.
13845         * lib/winsock.c: Remove file.
13846         * modules/accept: Likewise.
13847         * modules/bind: Likewise.
13848         * modules/connect: Likewise.
13849         * modules/getpeername: Likewise.
13850         * modules/getsockname: Likewise.
13851         * modules/getsockopt: Likewise.
13852         * modules/ioctl: Likewise.
13853         * modules/listen: Likewise.
13854         * modules/recv: Likewise.
13855         * modules/recvfrom: Likewise.
13856         * modules/send: Likewise.
13857         * modules/sendto: Likewise.
13858         * modules/setsockopt: Likewise.
13859         * modules/shutdown: Likewise.
13860         * modules/socket: Use socket.c instead of winsock.c.
13861         * modules/sys_socket: Remove (unneeded?) dependency on winsock.c.
13862         * doc/posix-functions/accept.texi: Doc fix.
13863         * doc/posix-functions/bind.texi: Doc fix.
13864         * doc/posix-functions/close.texi: Doc fix.
13865         * doc/posix-functions/connect.texi: Doc fix.
13866         * doc/posix-functions/getpeername.texi: Doc fix.
13867         * doc/posix-functions/getsockname.texi: Doc fix.
13868         * doc/posix-functions/getsockopt.texi: Doc fix.
13869         * doc/posix-functions/ioctl.texi: Doc fix.
13870         * doc/posix-functions/listen.texi: Doc fix.
13871         * doc/posix-functions/recv.texi: Doc fix.
13872         * doc/posix-functions/recvfrom.texi: Doc fix.
13873         * doc/posix-functions/send.texi: Doc fix.
13874         * doc/posix-functions/sendto.texi: Doc fix.
13875         * doc/posix-functions/setsockopt.texi: Doc fix.
13876         * doc/posix-functions/shutdown.texi: Doc fix.
13877         * doc/posix-functions/socket.texi: Doc fix.
13878
13879 2008-10-20  Bruno Haible  <bruno@clisp.org>
13880
13881         Take into account the role of SIGABRT_COMPAT on Windows 2008.
13882         * lib/sigprocmask.c (SIGABRT_COMPAT, SIGABRT_COMPAT_MASK): New macros.
13883         (sigismember, sigaddset, sigdelset, sigfillset, rpl_signal): Handle it
13884         as an alias for SIGABRT.
13885         * lib/sigaction.c (SIGABRT_COMPAT): New macro.
13886         (sigaction): Map it to SIGABRT.
13887         Reported by Ramiro Polla <ramiro.polla@gmail.com> via Eric Blake.
13888
13889 2008-10-20  Bruno Haible  <bruno@clisp.org>
13890
13891         * lib/fts.c: Don't include lstat.h.
13892         * lib/openat.c: Include <sys/stat.h> instead of lstat.h.
13893
13894         Move the lstat() declaration to <sys/stat.h>.
13895         * lib/lstat.h: Remove file.
13896         * lib/sys_stat.in.h: Add special invocation convention.
13897         (lstat): New declaration.
13898         * lib/lstat.c (orig_lstat): New function.
13899         (rpl_lstat): Use orig_lstat instead of lstat.
13900         * m4/lstat.m4 (gl_FUNC_LSTAT): Require gl_SYS_STAT_H_DEFAULTS and
13901         AC_C_INLINE. Set REPLACE_LSTAT.
13902         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize GNULIB_LSTAT
13903         and REPLACE_LSTAT.
13904         * modules/lstat (Files): Remove lib/lstat.h.
13905         (configure.ac): Invoke gl_SYS_STAT_MODULE_INDICATOR.
13906         (Include): Specify <sys/stat.h> instead of lstat.h.
13907         * modules/sys_stat (Makefile.am): Substitute GNULIB_LSTAT and
13908         REPLACE_LSTAT.
13909         * NEWS: Mention the change.
13910
13911 2008-10-20  Bruno Haible  <bruno@clisp.org>
13912
13913         * modules/posix_spawn-tests: New file.
13914         * tests/test-posix_spawn3.c: New file.
13915
13916 2008-10-20  Bruno Haible  <bruno@clisp.org>
13917
13918         * modules/posix_spawnp-tests (Depends-on): Add sys_wait.
13919         * tests/test-posix_spawn1.c (WTERMSIG, WCOREDUMP, WEXITSTATUS,
13920         WIFSIGNALED, WIFEXITED, WIFSTOPPED): Remove fallback definitions.
13921         * tests/test-posix_spawn2.c (WTERMSIG, WCOREDUMP, WEXITSTATUS,
13922         WIFSIGNALED, WIFEXITED, WIFSTOPPED): Likewise.
13923
13924 2008-10-20  Bruno Haible  <bruno@clisp.org>
13925
13926         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Test against another bug
13927         of posix_spawn on AIX 5.3.
13928
13929 2008-10-20  Bruno Haible  <bruno@clisp.org>
13930
13931         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Make the check on MacOS X.
13932
13933 2008-10-20  Bruno Haible  <bruno@clisp.org>
13934
13935         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Use AC_LANG_SOURCE instead
13936         of AC_LANG_PROGRAM.
13937
13938 2008-10-20  Simon Josefsson  <simon@josefsson.org>
13939
13940         * lib/netdb.in.h: Don't define GNU specific constants until they
13941         are supported or needed.  Reported by Bruno Haible
13942         <bruno@clisp.org>.
13943
13944 2008-10-20  Simon Josefsson  <simon@josefsson.org>
13945
13946         * lib/canon-host.c: Include netdb.h instead of getaddrinfo.h.
13947
13948 2008-10-20  Simon Josefsson  <simon@josefsson.org>
13949
13950         * lib/getaddrinfo.h: Remove file.
13951         * modules/getaddrinfo: Reflect move from getaddrinfo.h to netdb.h.
13952         * m4/getaddrinfo.m4: Call gl_HEADER_NETDB.  Don't check for netdb.h.
13953         * lib/netdb.in.h: Add declarations from getaddrinfo.h.
13954         * m4/netdb_h.m4: Initialize GNULIB_GETADDRINFO to 0.
13955         * modules/netdb: Substitute GNULIB_GETADDRINFO.
13956         * lib/getaddrinfo.c: Include netdb.h instead of getaddrinfo.h.
13957         * tests/test-getaddrinfo.c: Likewise.
13958         * lib/gai_strerror.c: Likewise.  Also drop HAVE_NETDB_H check.
13959         * NEWS: Mention change.
13960
13961 2008-10-19  Bruno Haible  <bruno@clisp.org>
13962
13963         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Remove unneeded code.
13964
13965 2008-10-19  Bruno Haible  <bruno@clisp.org>
13966
13967         * lib/wait-process.c: Include simply <sys/wait.h>.
13968         (waitpid, WTERMSIG, WCOREDUMP, WEXITSTATUS, WIFSIGNALED, WIFEXITED,
13969         WIFSTOPPED): Remove fallback definitions.
13970         * modules/wait-process (Depends-on): Add sys_wait.
13971
13972         New module 'sys_wait'.
13973         * modules/sys_wait: New file.
13974         * lib/sys_wait.in.h: New file, partially copied from
13975         lib/wait-process.c.
13976         * m4/sys_wait_h.m4: New file.
13977         * doc/posix-headers/sys_wait.texi: Mention the new module.
13978
13979 2008-10-19  Bruno Haible  <bruno@clisp.org>
13980
13981         * m4/wait-process.m4 (gl_WAIT_PROCESS): Remove test for unistd.h.
13982
13983 2008-10-19  Bruno Haible  <bruno@clisp.org>
13984
13985         Assume that waitpid() fills an 'int' status, not a 'union wait'.
13986         * lib/wait-process.c (WAIT_T): Remove type.
13987         (WTERMSIG, WCOREDUMP, WEXITSTATUS): Define fallbacks using bit masks.
13988         (wait_subprocess): Update.
13989
13990 2008-10-19  Bruno Haible  <bruno@clisp.org>
13991
13992         New module 'atoll'.
13993         * modules/atoll: New file.
13994         * lib/stdlib.in.h (atoll): New declaration.
13995         * lib/atoll.c: New file, from glibc with modifications.
13996         * m4/atoll.m4: New file.
13997         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_ATOLL,
13998         HAVE_ATOLL.
13999         * modules/stdlib (Makefile.am): Substitute GNULIB_ATOLL, HAVE_ATOLL.
14000         * doc/posix-functions/atoll.texi: Mention the new module.
14001
14002 2008-10-19  Bruno Haible  <bruno@clisp.org>
14003
14004         Add strtoull() declaration to <stdlib.h>.
14005         * lib/stdlib.in.h (strtoull): New declaration.
14006         * m4/strtoull.m4 (gl_FUNC_STRTOLL): Require gl_STDLIB_H_DEFAULTS.
14007         Set HAVE_STRTOULL.
14008         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_STRTOULL,
14009         HAVE_STRTOULL.
14010         * modules/strtoull (Depends-on): Add stdlib.
14011         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
14012         * modules/stdlib (Makefile.am): Substitute GNULIB_STRTOULL,
14013         HAVE_STRTOULL.
14014
14015 2008-10-19  Bruno Haible  <bruno@clisp.org>
14016
14017         Add strtoll() declaration to <stdlib.h>.
14018         * lib/stdlib.in.h (strtoll): New declaration.
14019         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Require gl_STDLIB_H_DEFAULTS.
14020         Set HAVE_STRTOLL.
14021         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_STRTOLL,
14022         HAVE_STRTOLL.
14023         * modules/strtoll (Depends-on): Add stdlib.
14024         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
14025         * modules/stdlib (Makefile.am): Substitute GNULIB_STRTOLL, HAVE_STRTOLL.
14026
14027 2008-10-19  Bruno Haible  <bruno@clisp.org>
14028
14029         * modules/bcopy (Depends-on): Add strings.
14030         (Include): Specify <strings.h>.
14031
14032 2008-10-19  Bruno Haible  <bruno@clisp.org>
14033
14034         * doc/posix-functions/atexit.texi: Update doc regarding mingw.
14035
14036 2008-10-19  Bruno Haible  <bruno@clisp.org>
14037
14038         * lib/openat-die.c (openat_save_fail, openat_restore_fail): Rename
14039         the parameter from 'errno' to 'errnum'. Fixes a compilation error on
14040         mingw.
14041
14042 2008-10-19  Bruno Haible  <bruno@clisp.org>
14043
14044         * lib/atanl.c: Don't include isnanl.h.
14045         * lib/cosl.c: Likewise.
14046         * lib/ldexpl.c: Likewise.
14047         * lib/logl.c: Likewise.
14048         * lib/sinl.c: Likewise.
14049         * lib/sqrtl.c: Likewise.
14050         * lib/tanl.c: Likewise.
14051
14052         Move the isnanf(), isnand(), isnanl() declarations to <math.h>.
14053         * lib/isnanf.h: Remove file.
14054         * lib/isnand.h: Remove file.
14055         * lib/isnanl.h: Remove file.
14056         * lib/math.in.h: Include the contents of lib/isnanf.h, lib/isnand.h,
14057         lib/isnanl.h. Use HAVE_ISNANF, HAVE_ISNAND, HAVE_ISNANL as substituted
14058         macros.
14059         * m4/isnanf.m4 (gl_FUNC_ISNANF): Require gl_MATH_H_DEFAULTS. Set
14060         HAVE_ISNANF, don't define it as a C macro.
14061         * m4/isnand.m4 (gl_FUNC_ISNAND): Require gl_MATH_H_DEFAULTS. Set
14062         HAVE_ISNAND, don't define it as a C macro.
14063         * m4/isnanl.m4 (gl_FUNC_ISNANL): Require gl_MATH_H_DEFAULTS. Set
14064         HAVE_ISNANL, don't define it as a C macro.
14065         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_ISNAN[FDL] and
14066         HAVE_ISNAN[FDL].
14067         * modules/isnanf (Files): Remove lib/isnanf.h.
14068         (Depends-on): Add math.
14069         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
14070         (Include): Specify <math.h> instead of isnanf.h.
14071         * modules/isnand (Files): Remove lib/isnand.h.
14072         (Depends-on): Add math.
14073         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
14074         (Include): Specify <math.h> instead of isnand.h.
14075         * modules/isnanl (Files): Remove lib/isnanl.h.
14076         (Depends-on): Add math.
14077         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
14078         (Include): Specify <math.h> instead of isnanl.h.
14079         * modules/math (Makefile.am): Substitute GNULIB_ISNAN[FDL] and
14080         HAVE_ISNAN[FDL].
14081         * tests/test-isnanf.c: Include <math.h> instead of isnanf.h.
14082         * tests/test-isnand.c: Include <math.h> instead of isnand.h.
14083         * tests/test-isnanl.c: Include <math.h> instead of isnanl.h.
14084         * NEWS: Mention the change.
14085
14086 2008-10-18  Bruno Haible  <bruno@clisp.org>
14087
14088         Add getusershell(), setusershell(), endusershell() declarations to
14089         <unistd.h>.
14090         * lib/unistd.in.h (getusershell, setusershell, endusershell): New
14091         declarations.
14092         * lib/getusershell.c: Include unistd.h.
14093         * m4/getusershell.m4 (gl_FUNC_GETUSERSHELL): Require
14094         gl_UNISTD_H_DEFAULTS and AC_USE_SYSTEM_EXTENSIONS. Set
14095         HAVE_GETUSERSHELL.
14096         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETUSERSHELL
14097         and HAVE_GETUSERSHELL.
14098         * modules/getusershell (Depends-on): Add unistd, extensions.
14099         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
14100         (Include): Specify <unistd.h>.
14101         * modules/unistd (Makefile.am): Substitute GNULIB_GETUSERSHELL and
14102         HAVE_GETUSERSHELL.
14103
14104 2008-10-18  Bruno Haible  <bruno@clisp.org>
14105
14106         Add a getloadavg() declaration to <stdlib.h>.
14107         * lib/stdlib.in.h; Include <sys/loadavg.h> when needed for the
14108         getloadavg declaration.
14109         (getloadavg): New declaration.
14110         * lib/getloadavg.c: Include <stdlib.h> first.
14111         * m4/getloadavg.m4 (gl_GETLOADAVG): Require gl_STDLIB_H_DEFAULTS and
14112         AC_USE_SYSTEM_EXTENSIONS. Test whether sys/loadavg.h exists. Set
14113         HAVE_SYS_LOADAVG_H and HAVE_DECL_GETLOADAVG.
14114         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_GETLOADAVG,
14115         HAVE_SYS_LOADAVG_H, HAVE_DECL_GETLOADAVG.
14116         * modules/getloadavg (Depends-on): Add stdlib, extensions.
14117         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
14118         (Include): Specify <stdlib.h>.
14119         * modules/stdlib (Makefile.am): Substitute GNULIB_GETLOADAVG,
14120         HAVE_SYS_LOADAVG_H, HAVE_DECL_GETLOADAVG.
14121
14122 2008-10-18  Bruno Haible  <bruno@clisp.org>
14123
14124         * lib/dirchownmod.c: Don't include lchmod.h.
14125
14126         Move the lchmod() declaration to <sys/stat.h>.
14127         * lib/lchmod.h: Remove file.
14128         * lib/sys_stat.in.h: Add placeholder for GL_LINK_WARNING.
14129         (lchmod): New declaration, moved here from lib/lchown.h.
14130         * m4/lchmod.m4 (gl_FUNC_LCHMOD): Require gl_SYS_STAT_H_DEFAULTS and
14131         AC_USE_SYSTEM_EXTENSIONS. Set HAVE_LCHMOD.
14132         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize GNULIB_LCHMOD
14133         and HAVE_LCHMOD.
14134         * modules/lchmod (Files): Remove lib/lchmod.h.
14135         (Depends-on): Add sys_stat, extensions.
14136         (configure.ac): Invoke gl_SYS_STAT_MODULE_INDICATOR.
14137         (Include): Specify <sys/stat.h> instead of lchmod.h.
14138         * modules/sys_stat (Depends-on): Add link-warning.
14139         (Makefile.am): Substitute GNULIB_LCHMOD, HAVE_LCHMOD, and the
14140         definition of GL_LINK_WARNING.
14141         * NEWS: Mention the change.
14142
14143 2008-10-18  Bruno Haible  <bruno@clisp.org>
14144
14145         * lib/fchdir.c: Don't include dirfd.h.
14146         * lib/fts.c: Likewise.
14147         * lib/getcwd.c: Likewise.
14148         * lib/glob.c: Likewise.
14149
14150         Move the dirfd() declaration to <dirent.h>.
14151         * lib/dirfd.h: Remove file.
14152         * lib/dirent.in.h: Add placeholder for GL_LINK_WARNING.
14153         (dirfd): New declaration.
14154         * lib/dirfd.c: Include <dirent.h> instead of dirfd.h.
14155         * m4/dirfd.m4 (gl_FUNC_DIRFD): Require gl_DIRENT_H_DEFAULTS and
14156         AC_USE_SYSTEM_EXTENSIONS. Invoke gl_REPLACE_DIRENT_H. Set
14157         HAVE_DECL_DIRFD.
14158         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_DIRFD and
14159         HAVE_DECL_DIRFD.
14160         * modules/dirfd (Files): Remove lib/dirfd.h.
14161         (Depends-on): Add dirent, extensions.
14162         (configure.ac): Invoke gl_DIRENT_MODULE_INDICATOR.
14163         (Include): Specify <dirent.h> instead of dirfd.h.
14164         * modules/dirent (Depends-on): Add link-warning.
14165         (Makefile.am): Substitute GNULIB_DIRFD, HAVE_DECL_DIRFD, and
14166         definition of GL_LINK_WARNING.
14167         * NEWS: Mention the change.
14168
14169 2008-10-18  Bruno Haible  <bruno@clisp.org>
14170
14171         Move the euidaccess() declaration to <unistd.h>.
14172         * lib/euidaccess.h: Remove file.
14173         * lib/unistd.in.h (euidaccess): New declaration.
14174         * lib/euidaccess.c: Don't include euidaccess.h.
14175         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Require gl_UNISTD_H_DEFAULTS.
14176         Don't check whether euidaccess is declared. Set HAVE_EUIDACCESS.
14177         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_EUIDACCESS
14178         and HAVE_EUIDACCESS.
14179         * modules/euidaccess (Files): Remove lib/euidaccess.h.
14180         (Depends-on): Add unistd.
14181         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
14182         (Include): Specify <unistd.h> instead of euidaccess.h.
14183         * modules/unistd (Makefile.am): Substitute GNULIB_EUIDACCESS and
14184         HAVE_EUIDACCESS.
14185         * NEWS: Mention the change.
14186
14187 2008-10-18  Bruno Haible  <bruno@clisp.org>
14188
14189         * lib/xgetdomainname.c: Include <unistd.h> instead of getdomainname.h.
14190
14191         Move the getdomainname() declaration to <unistd.h>.
14192         * lib/getdomainname.h: Remove file.
14193         * lib/unistd.in.h (getdomainname): New declaration.
14194         * lib/getdomainname.c: Include <unistd.h> instead of getdomainname.h.
14195         * m4/getdomainname.m4 (gl_FUNC_GETDOMAINNAME): Require
14196         gl_UNISTD_H_DEFAULTS and AC_USE_SYSTEM_EXTENSIONS. Set
14197         HAVE_GETDOMAINNAME.
14198         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
14199         GNULIB_GETDOMAINNAME and HAVE_GETDOMAINNAME.
14200         * modules/getdomainname (Files): Remove lib/getdomainname.h.
14201         (Depends-on): Add unistd, extensions.
14202         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
14203         (Includes): Specify <unistd.h> instead of getdomainname.h.
14204         * modules/unistd (Makefile.am): Substitute GNULIB_GETDOMAINNAME and
14205         HAVE_GETDOMAINNAME.
14206         * NEWS: Mention the change.
14207
14208 2008-10-18  Bruno Haible  <bruno@clisp.org>
14209
14210         * modules/dirent: New file.
14211         * m4/dirent_h.m4: New file.
14212         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_DIRENT_H_DEFAULTS.
14213         Invoke gl_REPLACE_DIRENT_H. Don't assign DIRENT_H directly.
14214         * modules/fchdir (Files): Remove lib/dirent.in.h.
14215         (Depends-on): Add dirent.
14216         (Makefile.am): Move rules to modules/dirent.
14217         * doc/posix-headers/dirent.texi: Mention the new module.
14218
14219 2008-10-18  Bruno Haible  <bruno@clisp.org>
14220
14221         Avoid -Wunused-parameter warnings in public gnulib header files.
14222         * m4/gnulib-common.m4 (gl_COMMON_BODY): Define _UNUSED_PARAMETER_ as a
14223         macro.
14224         * lib/unistr.h (u32_mbtouc_unsafe, u32_mbtouc): Use it.
14225
14226 2008-10-18  Bruno Haible  <bruno@clisp.org>
14227
14228         * doc/glibc-functions/dirfd.texi: Mention the module 'dirfd'.
14229         * doc/glibc-functions/error.texi: Mention the module 'error'.
14230         * doc/glibc-functions/euidaccess.texi: Mention the module 'euidaccess'.
14231         * doc/glibc-functions/getdomainname.texi: Mention the module
14232         'getdomainname'.
14233         * doc/glibc-functions/getloadavg.texi: Mention the module 'getloadavg'.
14234         * doc/glibc-functions/getpagesize.texi: Mention the module
14235         'getpagesize'.
14236         * doc/glibc-functions/getusershell.texi: Mention the module
14237         'getusershell'.
14238         * doc/glibc-functions/isnanl.texi: Mention the module 'isnanl'.
14239         * doc/glibc-functions/lchmod.texi: Mention the module 'lchmod'.
14240         * doc/glibc-functions/mempcpy.texi: Mention the module 'mempcpy'.
14241         * doc/glibc-functions/memrchr.texi: Mention the module 'memrchr'.
14242         * doc/glibc-functions/mkdtemp.texi: Mention the module 'mkdtemp'.
14243         * doc/glibc-functions/rpmatch.texi: Mention the module 'rpmatch'.
14244         * doc/glibc-functions/stpcpy.texi: Mention the module 'stpcpy'.
14245         * doc/glibc-functions/stpncpy.texi: Mention the module 'stpncpy'.
14246         * doc/glibc-functions/strchrnul.texi: Mention the module 'strchrnul'.
14247         * doc/glibc-functions/strndup.texi: Mention the module 'strndup'.
14248         * doc/glibc-functions/strnlen.texi: Mention the module 'strnlen'.
14249         * doc/glibc-functions/strsep.texi: Mention the module 'strsep'.
14250         * doc/glibc-functions/timegm.texi: Mention the module 'timegm'.
14251         * doc/glibc-functions/vasprintf.texi: Mention the module 'vasprintf'.
14252
14253 2008-10-17  Bruno Haible  <bruno@clisp.org>
14254
14255         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): On platforms other than
14256         HP-UX and IRIX, use -0.0L.
14257         * tests/test-ceill.c (minus_zero): Likewise.
14258         * tests/test-floorl.c (minus_zero): Likewise.
14259         * tests/test-frexpl.c (minus_zero): Likewise.
14260         * tests/test-isnan.c (minus_zerol): Likewise.
14261         * tests/test-isnanl.h (minus_zero): Likewise.
14262         * tests/test-ldexpl.c (minus_zero): Likewise.
14263         * tests/test-roundl.c (minus_zero): Likewise.
14264         * tests/test-signbit.c (minus_zerol): Likewise.
14265         * tests/test-snprintf-posix.h (minus_zerol): Likewise.
14266         * tests/test-sprintf-posix.h (minus_zerol): Likewise.
14267         * tests/test-truncl.c (minus_zero): Likewise.
14268         * tests/test-vasnprintf-posix.c (minus_zerol): Likewise.
14269         * tests/test-vasprintf-posix.c (minus_zerol): Likewise.
14270         Reported by Markus Armbruster <armbru@redhat.com> via Jim Meyering
14271         and by Nelson H. F. Beebe <beebe@math.utah.edu> via Eric Blake.
14272
14273 2008-10-17  Bruno Haible  <bruno@clisp.org>
14274
14275         Avoid gcc warnings because of #pragma GCC system_header on older gcc.
14276         * lib/arpa_inet.in.h: Encloses reference to PRAGMA_SYSTEM_HEADER so
14277         that it gets activated only for gcc >= 3.0.
14278         * lib/dirent.in.h: Likewise.
14279         * lib/errno.in.h: Likewise.
14280         * lib/fcntl.in.h: Likewise.
14281         * lib/float.in.h: Likewise.
14282         * lib/iconv.in.h: Likewise.
14283         * lib/inttypes.in.h: Likewise.
14284         * lib/locale.in.h: Likewise.
14285         * lib/math.in.h: Likewise.
14286         * lib/netdb.in.h: Likewise.
14287         * lib/netinet_in.in.h: Likewise.
14288         * lib/search.in.h: Likewise.
14289         * lib/signal.in.h: Likewise.
14290         * lib/spawn.in.h: Likewise.
14291         * lib/stdarg.in.h: Likewise.
14292         * lib/stdint.in.h: Likewise.
14293         * lib/stdio.in.h: Likewise.
14294         * lib/stdlib.in.h: Likewise.
14295         * lib/string.in.h: Likewise.
14296         * lib/strings.in.h: Likewise.
14297         * lib/sys_file.in.h: Likewise.
14298         * lib/sys_ioctl.in.h: Likewise.
14299         * lib/sys_select.in.h: Likewise.
14300         * lib/sys_socket.in.h: Likewise.
14301         * lib/sys_stat.in.h: Likewise.
14302         * lib/sys_time.in.h: Likewise.
14303         * lib/sysexits.in.h: Likewise.
14304         * lib/time.in.h: Likewise.
14305         * lib/unistd.in.h: Likewise.
14306         * lib/wchar.in.h: Likewise.
14307         * lib/wctype.in.h: Likewise.
14308         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
14309
14310 2008-10-17  Jim Meyering  <meyering@redhat.com>
14311
14312         ignore-value: don't depend on inline module
14313         * modules/ignore-value (Depends-on): Remove 'inline'.
14314         (configure.ac): Instead, add AC_REQUIRE([AC_C_INLINE]) here.
14315         Suggestion from Bruno Haible.
14316
14317 2008-10-17  Bruno Haible  <bruno@clisp.org>
14318
14319         New implementation of condition variables for Win32.
14320         * lib/glthread/cond.h (struct gl_waitqueue_link): New type.
14321         (gl_linked_waitqueue_t): New type.
14322         (gl_cond_t): Use it.
14323         * lib/glthread/cond.c (struct gl_waitqueue_element): New type.
14324         (gl_waitqueue_init, gl_waitqueue_add, gl_waitqueue_remove,
14325         gl_waitqueue_notify_first, gl_waitqueue_notify_all): New functions.
14326         (glthread_cond_init_func, glthread_cond_wait_func,
14327         glthread_cond_timedwait_func, glthread_cond_signal_func,
14328         glthread_cond_broadcast_func, glthread_cond_destroy_func):
14329         Reimplemented on the basis of gl_linked_waitqueue_t.
14330         * lib/glthread/lock.h (gl_carray_waitqueue_t): Renamed from
14331         gl_waitqueue_t.
14332         (gl_rwlock_t): Update.
14333         * lib/glthread/lock.c (gl_waitqueue_t): Alias to gl_carray_waitqueue_t.
14334
14335 2008-10-17  Simon Josefsson  <simon@josefsson.org>
14336
14337         * modules/recvfrom (Depends-on): Add dependency on getpeername.
14338         Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
14339
14340 2008-10-17  Jim Meyering  <meyering@redhat.com>
14341
14342         ignore-value: new module
14343         * modules/ignore-value: New file.
14344         * lib/ignore-value.h: New file.
14345         * MODULES.html.sh (Compiler warning management): New section,
14346         just for this module.  More to come.
14347
14348 2008-10-16  Paul Eggert  <eggert@cs.ucla.edu>
14349
14350         open-safer.c: avoid 'signed and unsigned in conditional...' warning
14351         * lib/open-safer.c (open_safer): Use an "if/else" statement in place
14352         of the ternary operator.  Reported by Reuben Thomas <rrt@sc3d.org>.
14353
14354 2008-10-16  Jim Meyering  <meyering@redhat.com>
14355
14356         openat-die.c: avoid 'no previous prototype' warning
14357         * lib/openat-die.c: Include "openat.h".
14358         Reported by Reuben Thomas <rrt@sc3d.org>.
14359
14360 2008-10-16  Simon Josefsson  <simon@josefsson.org>
14361
14362         * m4/netdb_h.m4: Assume that if netdb.h exists, it works.
14363         * lib/netdb.in.h: Fix typo.
14364         Reported by Bruno Haible  <bruno@clisp.org>
14365
14366         * lib/netdb.in.h: Include sys/socket.h for platforms without
14367         netdb.h, to get structures like hostent on MinGW.
14368         * modules/netdb (Depends-on): Add sys_socket.
14369
14370 2008-10-15  Simon Josefsson  <simon@josefsson.org>
14371
14372         * modules/netdb, modules/netdb-tests: New file.
14373         * m4/netdb_h.m4: New file.
14374         * lib/netdb.in.h: Add, currently just an empty file pending
14375         definitions.
14376         * tests/test-netdb.c: New file.
14377         * doc/posix-headers/netdb.texi: Mention that we replace it if
14378         needed.
14379         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
14380         netdb.
14381
14382 2008-10-15  Simon Josefsson  <simon@josefsson.org>
14383
14384         * doc/gnulib.texi (Getaddrinfo and WINVER): Sync documentation
14385         with code.
14386
14387 2008-10-13  Bruno Haible  <bruno@clisp.org>
14388
14389         * lib/glthread/cond.c (glthread_cond_wait_func,
14390         glthread_cond_timedwait_func): Add a comment.
14391
14392 2008-10-13  Yoann Vandoorselaere  <yoann@prelude-ids.org>
14393
14394         * tests/test-poll.c: Include <sys/ioctl.h>, for ioctl().
14395         * tests/test-select.c: Likewise,
14396
14397 2008-10-13  Bruno Haible  <bruno@clisp.org>
14398
14399         * lib/glthread/cond.c (glthread_cond_wait_func,
14400         glthread_cond_timedwait_func): Fix variable name.
14401         Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
14402
14403 2008-10-13  Paolo Bonzini  <bonzini@gnu.org>
14404
14405         fix getaddrinfo emulation for systems with struct sockaddr.sa_len
14406         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Detect
14407         struct sockaddr.sa_len.
14408         * lib/getaddrinfo.c (getaddrinfo): Set it if appropriate.
14409
14410 2008-10-13  Simon Josefsson  <simon@josefsson.org>
14411
14412         * build-aux/pmccabe2html: Add css and css_url parameters.
14413
14414 2008-10-12  Bruno Haible  <bruno@clisp.org>
14415
14416         * tests/test-sameacls.c (main) [AIX]: Clear type argument before
14417         calling aclx_get.
14418         Reported by Rainer Tammer <tammer@tammer.net>.
14419
14420 2008-10-12  Bruno Haible  <bruno@clisp.org>
14421
14422         Use msvcrt aware primitives for creation/termination of Win32 threads.
14423         * lib/glthread/thread.c: Include <process.h>.
14424         (glthread_create_func): Use _beginthreadex instead of CreateThread.
14425         (wrapper_func): Update signature.
14426         (gl_thread_exit_func): Use _endthreadex instead of EndThread.
14427
14428 2008-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
14429             Bruno Haible  <bruno@clisp.org>
14430
14431         Provide a Win32 implementation of the 'cond' module.
14432         * lib/glthread/cond.h [USE_WIN32]: New implementation.
14433         * lib/glthread/cond.c (glthread_cond_init_func,
14434         glthread_cond_wait_func, glthread_cond_timedwait_func,
14435         glthread_cond_signal_func, glthread_cond_broadcast_func,
14436         glthread_cond_destroy_func) [USE_WIN32]: New functions.
14437         * modules/cond (Dependencies): Add gettimeofday.
14438
14439 2008-10-11  Bruno Haible  <bruno@clisp.org>
14440
14441         Make sleep work on older versions of mingw.
14442         * m4/sleep.m4 (gl_FUNC_SLEEP): Test whether 'sleep' is declared, not
14443         only whether it exists.
14444         * doc/posix-functions/sleep.texi: Mention the problem with older
14445         versions of mingw.
14446
14447 2008-10-11  Bruno Haible  <bruno@clisp.org>
14448
14449         New module 'shutdown'.
14450         * modules/shutdown: New file.
14451         * lib/sys_socket.in.h (shutdown): New declaration.
14452         * lib/winsock.c (shutdown): New function.
14453         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Initialize
14454         GNULIB_SHUTDOWN.
14455         * modules/sys_socket (Makefile.am): Substitute GNULIB_SHUTDOWN.
14456         * doc/posix-functions/shutdown.texi: Document the new module.
14457
14458 2008-10-11  Jim Meyering  <meyering@redhat.com>
14459
14460         * lib/fclose.c: Fix typo in comment: s/close/fclose/.
14461
14462 2008-10-11  Bruno Haible  <bruno@clisp.org>
14463
14464         New module 'fclose'.
14465         * modules/fclose: New file.
14466         * lib/stdio.in.h (fclose): New declaration.
14467         * lib/fclose.c: New file.
14468         * m4/fclose.m4: New file.
14469         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_FCLOSE,
14470         REPLACE_FCLOSE.
14471         * m4/close.m4 (gl_REPLACE_CLOSE): Invoke gl_REPLACE_FCLOSE.
14472         * modules/stdio (Makefile.am): Substitute GNULIB_FCLOSE,
14473         REPLACE_FCLOSE.
14474         * modules/close (Depends-on): fclose.
14475         * doc/posix-functions/fclose.texi: Mention the problem on Windows.
14476
14477 2008-10-11  Bruno Haible  <bruno@clisp.org>
14478
14479         * lib/winsock.c (_gl_close_fd_maybe_socket): If closesocket fails,
14480         set errno and don't call _close.
14481
14482 2008-10-10  Bruno Haible  <bruno@clisp.org>
14483
14484         * lib/copy-acl.c (qcopy_acl) [CYGWIN]: Call chmod before setting the
14485         ACL, not afterwards. Fixes test failure on Cygwin.
14486
14487 2008-10-09  Ben Pfaff  <blp@gnu.org>
14488
14489         * build-aux/announce-gen: Fix gnulib version related part of usage
14490         message.  Die with a useful error message if no tarballs are
14491         found.
14492
14493 2008-10-10  Jim Meyering  <meyering@redhat.com>
14494
14495         bootstrap: use git's --depth=N option only if it's supported
14496         * build-aux/bootstrap: Work with git-1.4.4.4, which does not
14497         recognize the --depth option.  Reported by Pádraig Brady.
14498
14499 2008-10-09  Bruno Haible  <bruno@clisp.org>
14500
14501         New module 'ioctl'.
14502         * modules/ioctl: New file.
14503         * lib/sys_socket.in.h (ioctl): Remove declaration.
14504         * lib/winsock.c: Include <sys/ioctl.h>.
14505         (rpl_ioctl): Define only of the gnulib module 'ioctl' is present.
14506         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Require
14507         gl_SYS_IOCTL_H_DEFAULTS. Set also SYS_IOCTL_H_HAVE_WINSOCK2_H.
14508         * modules/sys_socket (Files): Add m4/sys_ioctl_h.m4.
14509         * doc/posix-functions/ioctl.texi: Mention the new module.
14510
14511 2008-10-09  Bruno Haible  <bruno@clisp.org>
14512
14513         New module 'sys_ioctl'.
14514         * lib/sys_ioctl.in.h: New file.
14515         * m4/sys_ioctl_h.m4: New file.
14516         * modules/sys_ioctl: New file.
14517         * doc/glibc-headers/sys_ioctl.texi: Mention the new module.
14518
14519 2008-10-09  Bruno Haible  <bruno@clisp.org>
14520
14521         * lib/sys_socket.in.h (ioctl): Make signature POSIX compliant.
14522         * lib/winsock.c: Include <stdarg.h>.
14523         (rpl_ioctl): Change to second argument 'int' and then varargs.
14524
14525 2008-10-09  Bruno Haible  <bruno@clisp.org>
14526
14527         * m4/close.m4 (gl_FUNC_CLOSE): Arrange to replace the close() function
14528         when the sys_socket module is present and the system has <winsock2.h>.
14529
14530 2008-10-09  Bruno Haible  <bruno@clisp.org>
14531
14532         * doc/posix-functions/close.texi: Mention module 'close' instead of
14533         module 'sys_socket'.
14534
14535 2008-10-09  Bruno Haible  <bruno@clisp.org>
14536
14537         * doc/glibc-headers/sys_ioctl.texi: New file.
14538         * doc/gnulib.texi: Include it.
14539
14540 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
14541             Bruno Haible  <bruno@clisp.org>
14542
14543         Combine the two replacements of 'close'.
14544         * lib/sys_socket.in.h (close): Define to a reminder to include
14545         <unistd.h>.
14546         (_gl_close_fd_maybe_socket): New declaration.
14547         (HAVE__GL_CLOSE_FD_MAYBE_SOCKET): New macro.
14548         * lib/winsock.c (close): Remove undefinition.
14549         (_gl_close_fd_maybe_socket): Renamed from rpl_close. Define only when
14550         needed for the gnulib module 'close'.
14551         * lib/unistd.in.h (close): If the gnulib module 'close' is not used,
14552         define to an error symbol or to a warning, if suitable.
14553         * lib/close.c: Include <sys/socket.h>.
14554         (rpl_close): Invoke _gl_close_fd_maybe_socket when gnulib defines it.
14555         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Set also
14556         UNISTD_H_HAVE_WINSOCK2_H.
14557         (gl_SYS_SOCKET_H_DEFAULTS): Require gl_UNISTD_H_DEFAULTS.
14558         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
14559         UNISTD_H_HAVE_WINSOCK2_H.
14560         * modules/sys_socket (Files): Add m4/unistd_h.m4.
14561         (configure.ac): Set a module indicator.
14562         (Makefile.am): Substitute GNULIB_CLOSE.
14563         * modules/unistd (Makefile.am): Substitute UNISTD_H_HAVE_WINSOCK2_H.
14564         * modules/poll-tests (Depends-on): Add close.
14565         * modules/select-tests (Depends-on): Likewise.
14566
14567 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
14568             Bruno Haible  <bruno@clisp.org>
14569
14570         New module 'close'.
14571         * modules/close: New file.
14572         * lib/unistd.in.h (close): Move declaration out of the
14573         FCHDIR_REPLACEMENT scope.
14574         (_gl_unregister_fd): New declaration.
14575         * lib/close.c: New file.
14576         * lib/fchdir.c (rpl_close): Remove function.
14577         * m4/close.m4: New file.
14578         * m4/fchdir.m4 (gl_FUNC_FCHDIR): When replacing fchdir, also replace
14579         close.
14580         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_CLOSE and
14581         REPLACE_CLOSE.
14582         * modules/unistd (Makefile.am): Substitute GNULIB_CLOSE and
14583         REPLACE_CLOSE.
14584         * modules/fchdir (Depends-on): Add close.
14585
14586 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
14587             Bruno Haible  <bruno@clisp.org>
14588
14589         * lib/fcntl.in.h (open): Simplify conditionals.
14590         (_gl_register_fd): New declaration.
14591         * lib/fchdir.c (rpl_open): Remove function.
14592         * lib/open.c: When FCHDIR_REPLACEMENT is defined, compile the file
14593         also.
14594         (open): When FCHDIR_REPLACEMENT is defined, invoke _gl_register_fd.
14595         * m4/fchdir.m4 (gl_FUNC_FCHDIR): When replacing fchdir, also replace
14596         open.
14597
14598 2008-10-09  Jim Meyering  <meyering@redhat.com>
14599
14600         GNUmakefile: use the more name-space-friendly "_version"
14601         * top/GNUmakefile (_dummy): Update.
14602         (_version): Rename from "version".
14603
14604 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
14605             Bruno Haible  <bruno@clisp.org>
14606
14607         * lib/fchdir.c (_gl_unregister_fd): New functions, extracted from
14608         rpl_close.
14609         (_gl_register_fd): New function, extracted from rpl_open.
14610         (rpl_close, rpl_closedir): Use _gl_unregister_fd.
14611         (rpl_open, rpl_opendir): Use _gl_register_fd.
14612
14613 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
14614
14615         Fix organization of 'open' replacement.
14616         * m4/open.m4 (gl_REPLACE_OPEN): New macro.
14617         (gl_FUNC_OPEN): Use it.
14618         (gl_PREREQ_OPEN): Add a : to make the body non-empty.
14619
14620 2008-10-08  Bruno Haible  <bruno@clisp.org>
14621
14622         * modules/getdate-tests (test_getdata_LDADD): Add LIBINTL.
14623
14624 2008-10-08  Simon Josefsson  <simon@josefsson.org>
14625
14626         * m4/sys_socket_h.m4: Don't AC_LIBOBJ(winsock).  The file is
14627         AC_LIBOBJ'ed by each gnulib module that needs it (e.g., socket,
14628         listen).
14629
14630 2008-10-08  Eric Blake  <ebb9@byu.net>
14631
14632         GNUmakefile: add 'make version' target
14633         * top/GNUmakefile (_curr-ver): Split version update rules...
14634         (version): ...into a target.
14635
14636 2008-10-07  Bruno Haible  <bruno@clisp.org>
14637
14638         Use a more portable replacement expression for -0.0L.
14639         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Use -LDBL_MIN * LDBL_MIN
14640         instead of -0.0L. Fix m4 quotation.
14641
14642         * tests/test-signbit.c: Include <float.h>.
14643         (minus_zero): New variable.
14644         (test_signbitl): Use minus_zero instead of -zero.
14645         * modules/signbit-tests (Depends-on): Add float.
14646
14647         * tests/test-ceill.c: Include <float.h>.
14648         (zero): Remove variable.
14649         (minus_zero): New variable.
14650         (main): Use minus_zero instead of -zero.
14651         * modules/ceill-tests (Depends-on): Add float.
14652
14653         * tests/test-floorl.c: Include <float.h>.
14654         (zero): Remove variable.
14655         (minus_zero): New variable.
14656         (main): Use minus_zero instead of -zero.
14657         * modules/floorl-tests (Depends-on): Add float.
14658
14659         * tests/test-roundl.c: Include <float.h>.
14660         (zero): Remove variable.
14661         (minus_zero): New variable.
14662         (main): Use minus_zero instead of -zero.
14663         * modules/roundl-tests (Depends-on): Add float.
14664
14665         * tests/test-truncl.c: Include <float.h>.
14666         (zero): Remove variable.
14667         (minus_zero): New variable.
14668         (main): Use minus_zero instead of -zero.
14669         * modules/truncl-tests (Depends-on): Add float.
14670
14671         * tests/test-frexpl.c (zero): Remove variable.
14672         (minus_zero): New variable.
14673         (main): Use minus_zero instead of -zero.
14674         * modules/frexpl-tests (Depends-on): Add float.
14675
14676         * tests/test-isnan.c (zerol): Remove variable.
14677         (minus_zerol): New variable.
14678         (test_long_double): Use minus_zerol instead of -zerol.
14679         * modules/isnan-tests (Depends-on): Add float.
14680
14681         * tests/test-isnanl.h (zero): Remove variable.
14682         (minus_zero): New variable.
14683         (main): Use minus_zero instead of -zero.
14684         * modules/isnanl-nolibm-tests (Depends-on): Add float.
14685         * modules/isnanl-tests (Depends-on): Add float.
14686
14687         * tests/test-ldexpl.c (zero): Remove variable.
14688         (minus_zero): New variable.
14689         (main): Use minus_zero instead of -zero.
14690         * modules/ldexpl-tests (Depends-on): Add float.
14691
14692         * tests/test-snprintf-posix.h (zerol): Remove variable.
14693         (minus_zerol): New variable.
14694         (test_function): Use minus_zerol instead of -zerol.
14695         * modules/snprintf-posix-tests (Depends-on): Add float.
14696         * modules/vsnprintf-posix-tests (Depends-on): Add float.
14697
14698         * tests/test-sprintf-posix.h (zerol): Remove variable.
14699         (minus_zerol): New variable.
14700         (test_function): Use minus_zerol instead of -zerol.
14701         * modules/sprintf-posix-tests (Depends-on): Add float.
14702         * modules/vsprintf-posix-tests (Depends-on): Add float.
14703
14704         * tests/test-vasnprintf-posix.c (zerol): Remove variable.
14705         (minus_zerol): New variable.
14706         (test_function): Use minus_zerol instead of -zerol.
14707         * modules/vasnprintf-posix-tests (Depends-on): Add float.
14708
14709         * tests/test-vasprintf-posix.c (zerol): Remove variable.
14710         (minus_zerol): New variable.
14711         (test_function): Use minus_zerol instead of -zerol.
14712         * modules/vasprintf-posix-tests (Depends-on): Add float.
14713
14714 2008-10-07  Simon Josefsson  <simon@josefsson.org>
14715
14716         * MODULES.html.sh (Support for building documentation): Mention
14717         pmccabe2html.  Sort entries.
14718
14719         Add pmccabe2html module, from gnupdf.
14720         * build-aux/pmccabe.css: New file.
14721         * build-aux/pmccabe2html: New file.
14722         * m4/pmccabe2html.m4: New file.
14723         * modules/pmccabe2html: New file.
14724
14725 2008-10-07  Richard W.M. Jones <rjones@redhat.com>
14726
14727         flock: new module
14728         * MODULES.html.sh: Add to list of modules.
14729         * lib/flock.c: flock implementation for Windows and Unix systems
14730         which have fcntl.
14731         * doc/glibc-functions/flock.texi: Update documentation.
14732         * lib/sys_file.in.h: <sys/file.h> header file.
14733         * m4/flock.m4: M4 macros.
14734         * m4/sys_file_h.m4: M4 macros for replacement sys/file.h.
14735         * modules/flock: flock module.
14736         * modules/flock-tests: flock tests module.
14737         * modules/sys_file: sys/file.h module.
14738         * tests/test-flock.c: test suite for flock.
14739
14740 2008-10-06  Jim Meyering  <meyering@redhat.com>
14741
14742         bootstrap: check for LT_INIT more portably still ;-)
14743         * build-aux/bootstrap: Don't rely on \>, since it's not portable.
14744         Spotted by Bruno Haible.
14745
14746 2008-10-06  Eric Blake  <ebb9@byu.net>
14747
14748         test-signbit: avoid tripping Irix cc bug on -0.0L
14749         * tests/test-signbit.c (minus_zerol): Delete, and replace with
14750         '-zerol'.  This may break on HP-UX/hppa, but at least makes the
14751         entire testsuite consistent and avoids an Irix 6.2 bug.
14752
14753 2008-10-05  Bruno Haible  <bruno@clisp.org>
14754             Jim Meyering  <jim@meyering.net>
14755
14756         Add an option for ignoring EPIPE during close_stdout.
14757         * lib/closeout.h: Include <stdbool.h>.
14758         (close_stdout_set_ignore_EPIPE): New declaration.
14759         * lib/closeout.c: Include <stdbool.h>.
14760         (ignore_EPIPE): New variable.
14761         (close_stdout_set_ignore_EPIPE): New function.
14762         (close_stdout): Ignore EPIPE error if ignore_EPIPE is set.
14763         * lib/close-stream.c (close_stream): Mention the possible EPIPE
14764         failure.
14765         * modules/closeout (Depends-on): Add stdbool.
14766
14767 2008-10-05  Bruno Haible  <bruno@clisp.org>
14768
14769         * modules/accept: New file.
14770         * modules/bind: New file.
14771         * modules/connect: New file.
14772         * modules/getpeername: New file.
14773         * modules/getsockname: New file.
14774         * modules/getsockopt: New file.
14775         * modules/listen: New file.
14776         * modules/recv: New file.
14777         * modules/recvfrom: New file.
14778         * modules/send: New file.
14779         * modules/sendto: New file.
14780         * modules/setsockopt: New file.
14781         * modules/socket: New file.
14782         * lib/sys_socket.in.h: Include the GL_LINK_WARNING definition.
14783         (socket, connect, accept, bind, getpeername, getsockname, getsockopt,
14784         listen, recv, send, recvfrom, sendto, setsockopt): Declare only when
14785         the particular module is requested. Add a link warning when the
14786         particular module is not requested.
14787         * lib/winsock.c (rpl_socket, rpl_connect, rpl_accept, rpl_bind,
14788         rpl_getpeername, rpl_getsockname, rpl_getsockopt, rpl_listen, rpl_recv,
14789         rpl_send, rpl_recvfrom, rpl_sendto, rpl_setsockopt): Define only when
14790         the particular module is requested.
14791         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR,
14792         gl_SYS_SOCKET_H_DEFAULTS): New macros.
14793         (gl_HEADER_SYS_SOCKET): Require gl_SYS_SOCKET_H_DEFAULTS.
14794         * modules/sys_socket (Depends-on): Add link-warning.
14795         (Makeifle.am): Substitute GNULIB_SOCKET, GNULIB_CONNECT, GNULIB_ACCEPT,
14796         GNULIB_BIND, GNULIB_GETPEERNAME, GNULIB_GETSOCKNAME, GNULIB_GETSOCKOPT,
14797         GNULIB_LISTEN, GNULIB_RECV, GNULIB_SEND, GNULIB_RECVFROM,
14798         GNULIB_SENDTO, GNULIB_SETSOCKOPT, and the definition of
14799         GL_LINK_WARNING.
14800         * doc/posix-functions/accept.texi: Mention the new module 'accept'.
14801         * doc/posix-functions/bind.texi: Mention the new module 'bind'.
14802         * doc/posix-functions/connect.texi: Mention the new module 'connect'.
14803         * doc/posix-functions/getpeername.texi: Mention the new module
14804         'getpeername'.
14805         * doc/posix-functions/getsockname.texi: Mention the new module
14806         'getsockname'.
14807         * doc/posix-functions/getsockopt.texi: Mention the new module
14808         'getsockopt'.
14809         * doc/posix-functions/listen.texi: Mention the new module 'listen'.
14810         * doc/posix-functions/recv.texi: Mention the new module 'recv'.
14811         * doc/posix-functions/recvfrom.texi: Mention the new module 'recvfrom'.
14812         * doc/posix-functions/send.texi: Mention the new module 'send'.
14813         * doc/posix-functions/sendto.texi: Mention the new module 'sendto'.
14814         * doc/posix-functions/setsockopt.texi: Mention the new module
14815         'setsockopt'.
14816         * doc/posix-functions/socket.texi: Mention the new module 'socket'.
14817         * modules/poll-tests (Depends-on): Add socket, bind, getsockopt,
14818         listen, connect, accept.
14819         * modules/select-tests (Depends-on): Likewise.
14820
14821 2008-10-05  Bruno Haible  <bruno@clisp.org>
14822
14823         * lib/winsock.c (strerror): Remove unused #undef.
14824         (rpl_close): Remove unused local variable.
14825
14826         * modules/sys_socket (Depends-on); Add errno.
14827
14828 2008-10-05  Bruno Haible  <bruno@clisp.org>
14829
14830         * lib/sys_select.in.h: Include the GL_LINK_WARNING definition.
14831         (select): Add a link warning when the 'select' module is not used.
14832         * modules/sys_select (Depends-on): Add link-warning.
14833         (Makefile.am): Substitute the definition of GL_LINK_WARNING.
14834         Suggested by Paolo Bonzini.
14835
14836 2008-10-05  Jim Meyering  <meyering@redhat.com>
14837
14838         bootstrap: check for LT_INIT more portably
14839         * build-aux/bootstrap: Avoid using grep -E, since it's not
14840         portable enough.  Suggestion from Bruno Haible.
14841
14842 2008-10-05  Bruno Haible  <bruno@clisp.org>
14843
14844         * doc/posix-headers/sys_select.texi: Mention 'struct timeval' problem
14845         as being fixed by gnulib.
14846
14847 2008-10-05  Bruno Haible  <bruno@clisp.org>
14848
14849         * modules/select-tests: New file, mostly copied from
14850         modules/sys_select-tests.
14851         * tests/test-select.c: New file, mostly copied from
14852         tests/test-sys_select.c.
14853         * tests/test-sys_select.c: Move most of the code to tests/test-select.c.
14854         * modules/sys_select-tests (Depends-on): Remove all dependencies.
14855         (Makefile.am): Remove test_sys_select_LDADD.
14856
14857         * lib/sys_select.in.h (select): If GNULIB_SELECT is not set, define it
14858         to an undefined symbol, for an error message.
14859         * m4/sys_select_h.m4 (gl_SYS_SELECT_MODULE_INDICATOR): New macro.
14860         (gl_SYS_SELECT_H_DEFAULTS): New macro.
14861         (gl_HEADER_SYS_SELECT): Require it. Don't require compilation of
14862         winsock-select.c here.
14863         * modules/sys_select (Files): Remove lib/winsock-select.c.
14864         (Depends-on): Remove alloca.
14865         (Makefile.am): Substitute GNULIB_SELECT.
14866         * modules/select: New file.
14867         * doc/posix-functions/select.texi: Update.
14868
14869 2008-10-05  Bruno Haible  <bruno@clisp.org>
14870
14871         * lib/spawn_faction_addclose.c (__sysconf): Use getdtablesize always.
14872         * lib/spawn_faction_adddup2.c (__sysconf): Likewise.
14873         * lib/spawn_faction_addopen.c (__sysconf): Likewise.
14874         * modules/posix_spawn_file_actions_addclose (Depends-on): Add
14875         getdtablesize.
14876         * modules/posix_spawn_file_actions_adddup2 (Depends-on): Likewise.
14877         * modules/posix_spawn_file_actions_addopen (Depends-on): Likewise.
14878
14879 2008-10-05  Bruno Haible  <bruno@clisp.org>
14880
14881         * modules/getdtablesize-tests: New file.
14882         * tests/test-getdtablesize.c: New file.
14883
14884         New module 'getdtablesize'.
14885         * lib/unistd.in.h (getdtablesize): New declaration.
14886         * lib/getdtablesize.c: New file.
14887         * m4/getdtablesize.m4: New file.
14888         * modules/getdtablesize: New file.
14889         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
14890         GNULIB_GETDTABLESIZE, HAVE_GETDTABLESIZE.
14891         * modules/unistd (Makefile.am): Substitute GNULIB_GETDTABLESIZE,
14892         HAVE_GETDTABLESIZE.
14893         * doc/glibc-functions/getdtablesize.texi: Mention the new module.
14894
14895 2008-10-05  Bruno Haible  <bruno@clisp.org>
14896
14897         * modules/sched (Makefile.am): Fix typo.
14898         Reported by Simon Josefsson.
14899
14900 2008-10-05  Jim Meyering  <meyering@redhat.com>
14901
14902         bootstrap: check for LT_INIT, too
14903         * build-aux/bootstrap: Both AC_PROG_LIBTOOL and AM_PROG_LIBTOOL
14904         are deprecated.  Suggestion from Ralf Wildenhues.
14905
14906 2008-10-05  Bruno Haible  <bruno@clisp.org>
14907
14908         * lib/spawn.in.h (POSIX_SPAWN_*): Use the system's values, rather than
14909         overriding them by ours.
14910         (POSIX_SPAWN_USEVFORK): Use the next free bit position.
14911
14912 2008-10-05  Jim Meyering  <meyering@redhat.com>
14913
14914         bootstrap: check for AC_PROG_LIBTOOL as well as AM_PROG_LIBTOOL
14915         * build-aux/bootstrap: Check for AC_PROG_LIBTOOL, as well as the
14916         obsolete AM_PROG_LIBTOOL.  Spotted by Debarshi Ray <rishi@gnu.org>.
14917
14918 2008-10-04  Bruno Haible  <bruno@clisp.org>
14919
14920         * modules/dup2 (License): Change to LGPLv2+.
14921         * modules/sleep (License): Likewise.
14922         * modules/perror (License): Likewise.
14923         * modules/fopen (License): Change to LGPLv2+, with approval by Eric
14924         Blake.
14925         * modules/signal (License): Likewise.
14926         * modules/sigprocmask (License): Likewise.
14927         * modules/raise (License): Change to LGPLv2+, with approval by Jim
14928         Meyering.
14929
14930 2008-10-04  Bruno Haible  <bruno@clisp.org>
14931
14932         * lib/spawn.in.h (POSIX_SPAWN_*): Undefine before redefining.
14933         Reported by Rainer Tammer <tammer@tammer.net>.
14934
14935 2008-10-03  Paolo Bonzini  <bonzini@gnu.org>
14936             Bruno Haible  <bruno@clisp.org>
14937
14938         * lib/errno.in.h (EWOULDBLOCK) [win32]: Define to EAGAIN.
14939         * lib/winsock.c (set_winsock_errno): Map WSAEWOULDBLOCK to EWOULDBLOCK.
14940         * lib/strerror.c (rpl_strerror): Remove error string for EWOULDBLOCK.
14941
14942 2008-10-03  Kamil Dudka  <kdudka@redhat.com>
14943
14944         filevercmp: new module
14945         * lib/filevercmp.h: New function filevercmp comparing version strings.
14946         * lib/filevercmp.c: Implementation of filevercmp function.
14947         * modules/filevercmp: Module metadata.
14948         * tests/test-filevercmp.c: Unit test for new module.
14949         * modules/filevercmp-tests: Unit test metadata.
14950         * MODULES.html.sh: Add filevercmp module.
14951
14952 2008-10-03  Bruno Haible  <bruno@clisp.org>
14953
14954         * lib/c-ctype.h: Add comment.
14955         Reported by Jim Meyering.
14956
14957 2008-10-02  Bruno Haible  <bruno@clisp.org>
14958
14959         * modules/posix_spawn-internal (Depends-on): Add 'open'.
14960
14961 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
14962
14963         * build-aux/bootstrap: Allow renaming bootstrap, and change the
14964         name of bootstrap.conf accordingly.
14965
14966 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
14967
14968         * build-aux/bootstrap: Install git-merge-changelog configuration
14969         items into .gitconfig if needed.
14970
14971 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
14972
14973         * build-aux/bootstrap: Recognize `gnulib' being a submodule in a
14974         git repository, and initialize/update it accordingly.
14975
14976 2008-10-02  Richard W.M. Jones  <rjones@redhat.com>
14977
14978         * modules/fsync-tests: New file.
14979         * tests/test-fsync.c: New file.
14980
14981         New module 'fsync'.
14982         * lib/fsync.c: New file.
14983         * m4/fsync.m4: New file.
14984         * modules/fsync: New file.
14985         * lib/unistd.in.h (fsync): New declaration.
14986         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Define and AC_SUBST both
14987         GNULIB_FSYNC and HAVE_FSYNC.
14988         * modules/unistd: Substitute GNULIB_FSYNC and HAVE_FSYNC.
14989         * MODULES.html.sh (posix_functions): Add fsync.
14990         * doc/posix-functions/fsync.texi: Mention the new module.
14991
14992 2008-10-02  Jim Meyering  <meyering@redhat.com>
14993
14994         fts.c: sync with similar code from coreutils' remove.c
14995         * lib/fts.c (dirent_inode_sort_may_be_useful): Merge from coreutils.
14996         Guard also with "#if defined __linux__", since for now at least,
14997         this code is Linux-kernel-specific.
14998
14999 2008-10-02  Jim Meyering  <meyering@redhat.com>
15000
15001         fts: bug fixes
15002         * lib/fts.c: Remove unnecessary "defined" in cpp directive.
15003         Include <sys/vfs.h>, not <sys/statfs.h>.
15004
15005         * m4/fts.m4 (gl_FUNC_FTS_CORE): Fix typo s/vfs/vfs.h/.
15006         Include <sys/vfs.h>, not <sys/statfs.h>.
15007
15008 2008-10-01  Bruno Haible  <bruno@clisp.org>
15009
15010         Avoid the broken posix_spawn function on AIX 5.3 and 6.1.
15011         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): New macro.
15012         (gl_POSIX_SPAWN_BODY): Invoke it. Set REPLACE_POSIX_SPAWN if needed.
15013         * doc/posix-functions/posix_spawn.texi: Mention the AIX bugs.
15014         * doc/posix-functions/posix_spawnp.texi: Likewise.
15015         * m4/execute.m4 (gl_EXECUTE): Invoke gl_POSIX_SPAWN_WORKS, to check
15016         whether posix_spawn actually works.
15017         * m4/pipe.m4 (gl_PIPE): Likewise.
15018         * modules/execute (Files): Add m4/posix_spawn.m4.
15019         * modules/pipe (Files): Add m4/posix_spawn.m4.
15020         Reported and analyzed by Rainer Tammer <tammer@tammer.net>.
15021
15022 2008-10-01  Jim Meyering  <meyering@redhat.com>
15023
15024         remove trailing spaces
15025         * NEWS: Likewise.
15026         * lib/poll.c (poll): Likewise.
15027         * lib/sys_socket.in.h (SHUT_RDWR): Likewise.
15028         * lib/winsock.c (rpl_close): Likewise.
15029         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Likewise.
15030         * modules/yield: Likewise.
15031         * tests/test-poll.c (connect_to_socket, poll1): Likewise.
15032         * tests/test-sys_select.c (connect_to_socket): Likewise.
15033
15034         fts.c: adjust a new interface to be more generally useful
15035         * lib/fts.c (dirent_inode_sort_may_be_useful): Take an FD parameter.
15036         (fts_build): Adjust caller.
15037
15038 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
15039
15040         * modules/cond-tests: New file.
15041         * tests/test-cond.c: New file.
15042
15043 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
15044             Bruno Haible  <bruno@clisp.org>
15045
15046         * modules/cond (Dependencies): Add errno, time.
15047         * lib/glthread/cond.h: Include <time.h>.
15048         (gl_cond_define, gl_cond_define_initialized): Use the same definition
15049         across platforms.
15050
15051 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
15052             Bruno Haible  <bruno@clisp.org>
15053
15054         * m4/thread.m4 (gl_THREAD): Fix detection of pthread_atfork function.
15055
15056 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
15057             Bruno Haible  <bruno@clisp.org>
15058
15059         * modules/tls-tests (Depends-on): Add thread, yield.
15060         (configure.ac): Remove all checks.
15061         (test_tls_LDADD): Use YIELD_LIB instead of LIBSCHED.
15062         * tests/test-tls.c (gl_thread_t, gl_thread_join, gl_thread_yield,
15063         gl_thread_self): Remove definitions. Include glthread/thread.h and
15064         glthread/yield.h instead.
15065         (test_tls): Pass an additional NULL argument to gl_thread_join.
15066
15067 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
15068             Bruno Haible  <bruno@clisp.org>
15069
15070         * modules/lock-tests (Depends-on): Add thread, yield.
15071         (configure.ac): Remove all checks.
15072         (test_lock_LDADD): Use YIELD_LIB instead of LIBSCHED.
15073         * tests/test-lock.c (gl_thread_t, gl_thread_join, gl_thread_yield,
15074         gl_thread_self): Remove definitions. Include glthread/thread.h and
15075         glthread/yield.h instead.
15076         (test_lock, test_rwlock, test_recursive_lock, test_once): Pass an
15077         additional NULL argument to gl_thread_join.
15078
15079 2008-09-30  Bruno Haible  <bruno@clisp.org>
15080
15081         Fix the Win32 implementation of the 'thread' module.
15082         * lib/glthread/thread.h [USE_WIN32_THREADS] (gl_thread_t): Change to a
15083         pointer type.
15084         (gl_thread_self): Invoke gl_thread_self_func.
15085         (gl_thread_self_func): New declaration.
15086         * lib/glthread/thread.c [USE_WIN32_THREADS] (self_key): New variable.
15087         (do_init_self_key, init_self_key): New functions.
15088         (struct gl_thread_struct): Renamed from 'struct thread_extra'.
15089         Remove some fields.
15090         (running_threads, running_lock): Remove variables.
15091         (get_current_thread_handle): New function.
15092         (gl_thread_self_func, wrapper_func, glthread_create_func,
15093         glthread_join_func, gl_thread_exit_func): Largely rewritten and
15094         simplified.
15095
15096 2008-09-30  Bruno Haible  <bruno@clisp.org>
15097
15098         * lib/winsock-select.c (win32_poll_handle): Add shortcut for regular
15099         files.
15100
15101 2008-09-30  Jim Meyering  <meyering@redhat.com>
15102
15103         fts.m4: correct the test for statfs.f_type
15104         * m4/fts.m4 (gl_FUNC_FTS_CORE): Include <sys/statfs.h>
15105         when checking for statfs.f_type.
15106
15107 2008-09-15  Simon Josefsson  <simon@josefsson.org>
15108
15109         tests: avoid some compiler warnings
15110         * tests/test-memchr.c (main): Pass NULL indirectly.
15111         * tests/test-getdate.c (main): Remove unused variable 'ret'.
15112
15113 2008-09-29  OndÅ™ej Vašík  <ovasik@redhat.com>
15114
15115         getdate.y: disallow countable dayshifts like "4 yesterday ago"
15116         * lib/getdate.y (relative_time_table) [tDAY_SHIFT]: New type for
15117         exactly specified dayshifts.
15118         (dayshift): New rule.
15119         (rel): Add dayshift.
15120         (relative_time_table) [tomorrow, yesterday, today, now]:
15121         Use tDAY_SHIFT in place of tDAY_UNIT.
15122         * tests/test-getdate.c: Add tests for now-disallowed countable
15123         dayshifts, e.g., "4 yesterday ago".
15124
15125 2008-09-29  Bruno Haible  <bruno@clisp.org>
15126
15127         * tests/test-posix_spawn1.c: Renamed from tests/test-posix_spawn.c.
15128         * tests/test-posix_spawn1.in.sh: Renamed from
15129         tests/test-posix_spawn.in.sh.
15130         * tests/test-posix_spawn2.c: New file.
15131         * tests/test-posix_spawn2.in.sh: New file.
15132         * modules/posix_spawnp-tests (Files): Update.
15133         (Makefile.am): Update. Add test-posix_spawn2 to the tests.
15134
15135 2008-09-29  Bruno Haible  <bruno@clisp.org>
15136
15137         Propagate effects of putenv/setenv/unsetenv to child processes.
15138         * lib/execute.c (execute): Use spawnvpe instead of spawnvp.
15139         * lib/pipe.c (create_pipe): Likewise.
15140
15141 2008-09-29  Bruno Haible  <bruno@clisp.org>
15142
15143         Enable use of shell scripts as executables in mingw.
15144         * lib/execute.c (execute): When spawnv fails with error ENOEXEC,
15145         run the program as a shell script.
15146         * lib/pipe.c (create_pipe): Likewise.
15147         * lib/w32spawn.h (prepare_spawn): Add a hidden element in front of the
15148         resulting array.
15149
15150 2008-09-29  Eric Blake  <ebb9@byu.net>
15151
15152         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): Fix typo.
15153
15154 2008-08-24  Paolo Bonzini  <bonzini@gnu.org>
15155
15156         * doc/posix-functions/accept.texi: Update mingw problems.
15157         * doc/posix-functions/bind.texi: Update mingw problems.
15158         * doc/posix-functions/close.texi: Update mingw problems.
15159         * doc/posix-functions/connect.texi: Update mingw problems.
15160         * doc/posix-functions/getpeername.texi: Update mingw problems.
15161         * doc/posix-functions/getsockname.texi: Update mingw problems.
15162         * doc/posix-functions/getsockopt.texi: Update mingw problems.
15163         * doc/posix-functions/ioctl.texi: Update mingw problems.
15164         * doc/posix-functions/listen.texi: Update mingw problems.
15165         * doc/posix-functions/recv.texi: Update mingw problems.
15166         * doc/posix-functions/recvfrom.texi: Update mingw problems.
15167         * doc/posix-functions/select.texi: Update mingw problems.
15168         * doc/posix-functions/send.texi: Update mingw problems.
15169         * doc/posix-functions/sendto.texi: Update mingw problems.
15170         * doc/posix-functions/setsockopt.texi: Update mingw problems.
15171         * doc/posix-functions/socket.texi: Update mingw problems.
15172
15173 2008-09-29  Paolo Bonzini  <bonzini@gnu.org>
15174             Bruno Haible  <bruno@clisp.org>
15175
15176         * lib/sys_select.in.h: Include sys/time.h.
15177         * m4/sys_select.h.m4: Test that struct timeval is fully defined.
15178         * modules/sys_select: Depend on sys_time.
15179         * tests/test-sys_select.c: Test that sys/select.h defines struct
15180         timeval fully.
15181
15182 2008-09-29  Bruno Haible  <bruno@clisp.org>
15183
15184         * lib/sys_socket.in.h: Wrap the definitions in 'extern "C"'.
15185         * lib/sys_select.in.h: Likewise.
15186
15187 2008-09-29  Bruno Haible  <bruno@clisp.org>
15188
15189         * lib/winsock.c (rpl_close, rpl_socket): Remove unused variables.
15190
15191 2008-09-29  Bruno Haible  <bruno@clisp.org>
15192
15193         * m4/sockets.m4 (gl_SOCKETS): Check also for the need to use -lsocket.
15194         Set LIBSOCKET instead of augmenting LIBS.
15195         * modules/sockets (Link): New section.
15196         * modules/sockets-tests (test_sockets_LDADD): New variable.
15197         * modules/sys_select-tests (test_sys_select_LDADD): New variable.
15198         * modules/poll-tests (test_poll_LDADD): New variable.
15199         * NEWS: Document the change.
15200
15201 2008-09-29  Bruno Haible  <bruno@clisp.org>
15202
15203         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): New macro.
15204         * m4/inet_ntop.m4 (gl_INET_NTOP): Invoke it instead of assigning
15205         ARPA_INET_H directly.
15206         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
15207
15208 2008-09-28  Bruno Haible  <bruno@clisp.org>
15209
15210         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): New macro, extracted
15211         from gl_HEADER_SYS_SOCKET.
15212         (gl_HEADER_SYS_SOCKET): Invoke it.
15213         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
15214
15215 2008-09-28  Bruno Haible  <bruno@clisp.org>
15216
15217         * doc/posix-headers/sys_select.texi: Mention 'struct timeval' problem.
15218         * tests/test-sys_select.c: Include <sys/time.h>, for struct timeval.
15219         Needed on OSF/1 4.0.
15220
15221 2008-09-28  Bruno Haible  <bruno@clisp.org>
15222
15223         Override open more carefully.
15224         * lib/open.c (orig_open): New function.
15225         (rpl_open): Use orig_open instead of open.
15226         * lib/fcntl.in.h: Add special invocation convention.
15227         * m4/open.m4 (gl_PREREQ_OPEN): New macro.
15228         (gl_FUNC_OPEN): Invoke it.
15229
15230         Override freopen more carefully.
15231         * lib/freopen.c (orig_freopen): New function.
15232         (rpl_freopen): Use orig_freopen instead of freopen.
15233         * m4/freopen.m4 (gl_PREREQ_FREOPEN): New macro.
15234         (gl_FUNC_FREOPEN): Invoke it.
15235
15236         Override fopen more carefully.
15237         * lib/fopen.c (orig_fopen): New function.
15238         (rpl_fopen): Use orig_fopen instead of fopen.
15239         * m4/fopen.m4 (gl_PREREQ_FOPEN): New macro.
15240         (gl_FUNC_FOPEN): Invoke it.
15241         Needed on AIX. Reported by Rainer Tammer <tammer@tammer.net>.
15242
15243 2008-09-28  Bruno Haible  <bruno@clisp.org>
15244
15245         * lib/pipe.h (create_pipe_out, create_pipe_bidi): Add comment about
15246         SIGPIPE.
15247
15248 2008-09-28  Bruno Haible  <bruno@clisp.org>
15249
15250         * tests/test-sigaction.c (handler, main): Disable the check whether
15251         SA_RESETHAND has reverted the installed handler to SIG_DFL. Needed on
15252         glibc systems with LinuxThreads.
15253
15254 2008-09-28  Bruno Haible  <bruno@clisp.org>
15255
15256         * doc/posix-functions/freopen.texi: Mention the trailing slash problem.
15257
15258         * lib/stdio.in.h (fopen, freopen): Undefine before redefining. Needed
15259         with AIX xlc.
15260         * lib/fcntl.in.h (open): Likewise.
15261         Reported by Rainer Tammer <tammer@tammer.net>.
15262
15263 2008-09-28  Bruno Haible  <bruno@clisp.org>
15264
15265         * modules/posix_spawnp-tests: New file.
15266         * tests/test-posix_spawn.c: New file.
15267         * tests/test-posix_spawn.in.sh: New file.
15268
15269         New module 'posix_spawnp'.
15270         * modules/posix_spawnp: New file.
15271         * lib/spawnp.c: New file, from GNU libc with modifications.
15272         * doc/posix-functions/posix_spawnp.texi: Mention the new module.
15273
15274         New module 'posix_spawn'.
15275         * modules/posix_spawn: New file.
15276         * lib/spawn.c: New file, from GNU libc with modifications.
15277         * doc/posix-functions/posix_spawn.texi: Mention the new module.
15278
15279         New module 'posix_spawnattr_destroy'.
15280         * modules/posix_spawnattr_destroy: New file.
15281         * lib/spawnattr_destroy.c: New file, from GNU libc with modifications.
15282         * doc/posix-functions/posix_spawnattr_destroy.texi: Mention the new
15283         module.
15284
15285         New module 'posix_spawnattr_setsigmask'.
15286         * modules/posix_spawnattr_setsigmask: New file.
15287         * lib/spawnattr_setsigmask.c: New file, from GNU libc with
15288         modifications.
15289         * doc/posix-functions/posix_spawnattr_setsigmask.texi: Mention the
15290         new module.
15291
15292         New module 'posix_spawnattr_getsigmask'.
15293         * modules/posix_spawnattr_getsigmask: New file.
15294         * lib/spawnattr_getsigmask.c: New file, from GNU libc with
15295         modifications.
15296         * doc/posix-functions/posix_spawnattr_getsigmask.texi: Mention the
15297         new module.
15298
15299         New module 'posix_spawnattr_setsigdefault'.
15300         * modules/posix_spawnattr_setsigdefault: New file.
15301         * lib/spawnattr_setdefault.c: New file, from GNU libc with
15302         modifications.
15303         * doc/posix-functions/posix_spawnattr_setsigdefault.texi: Mention the
15304         new module.
15305
15306         New module 'posix_spawnattr_getsigdefault'.
15307         * modules/posix_spawnattr_getsigdefault: New file.
15308         * lib/spawnattr_getdefault.c: New file, from GNU libc with
15309         modifications.
15310         * doc/posix-functions/posix_spawnattr_getsigdefault.texi: Mention the
15311         new module.
15312
15313         New module 'posix_spawnattr_setschedpolicy'.
15314         * modules/posix_spawnattr_setschedpolicy: New file.
15315         * lib/spawnattr_setschedpolicy.c: New file, from GNU libc with
15316         modifications.
15317         * doc/posix-functions/posix_spawnattr_setschedpolicy.texi: Mention the
15318         new module.
15319
15320         New module 'posix_spawnattr_getschedpolicy'.
15321         * modules/posix_spawnattr_getschedpolicy: New file.
15322         * lib/spawnattr_getschedpolicy.c: New file, from GNU libc with
15323         modifications.
15324         * doc/posix-functions/posix_spawnattr_getschedpolicy.texi: Mention the
15325         new module.
15326
15327         New module 'posix_spawnattr_setschedparam'.
15328         * modules/posix_spawnattr_setschedparam: New file.
15329         * lib/spawnattr_setschedparam.c: New file, from GNU libc with
15330         modifications.
15331         * doc/posix-functions/posix_spawnattr_setschedparam.texi: Mention the
15332         new module.
15333
15334         New module 'posix_spawnattr_getschedparam'.
15335         * modules/posix_spawnattr_getschedparam: New file.
15336         * lib/spawnattr_getschedparam.c: New file, from GNU libc with
15337         modifications.
15338         * doc/posix-functions/posix_spawnattr_getschedparam.texi: Mention the
15339         new module.
15340
15341         New module 'posix_spawnattr_setpgroup'.
15342         * modules/posix_spawnattr_setpgroup: New file.
15343         * lib/spawnattr_setpgroup.c: New file, from GNU libc with
15344         modifications.
15345         * doc/posix-functions/posix_spawnattr_setpgroup.texi: Mention the new
15346         module.
15347
15348         New module 'posix_spawnattr_getpgroup'.
15349         * modules/posix_spawnattr_getpgroup: New file.
15350         * lib/spawnattr_getpgroup.c: New file, from GNU libc with
15351         modifications.
15352         * doc/posix-functions/posix_spawnattr_getpgroup.texi: Mention the new
15353         module.
15354
15355         New module 'posix_spawnattr_setflags'.
15356         * modules/posix_spawnattr_setflags: New file.
15357         * lib/spawnattr_setflags.c: New file, from GNU libc with modifications.
15358         * doc/posix-functions/posix_spawnattr_setflags.texi: Mention the new
15359         module.
15360
15361         New module 'posix_spawnattr_getflags'.
15362         * modules/posix_spawnattr_getflags: New file.
15363         * lib/spawnattr_getflags.c: New file, from GNU libc with modifications.
15364         * doc/posix-functions/posix_spawnattr_getflags.texi: Mention the new
15365         module.
15366
15367         New module 'posix_spawnattr_init'.
15368         * modules/posix_spawnattr_init: New file.
15369         * lib/spawnattr_init.c: New file, from GNU libc with modifications.
15370         * doc/posix-functions/posix_spawnattr_init.texi: Mention the new
15371         module.
15372
15373         New module 'posix_spawn_file_actions_destroy'.
15374         * modules/posix_spawn_file_actions_destroy: New file.
15375         * lib/spawn_faction_destroy.c: New file, from GNU libc with
15376         modifications.
15377         * doc/posix-functions/posix_spawn_file_actions_destroy.texi: Mention
15378         the new module.
15379
15380         New module 'posix_spawn_file_actions_addopen'.
15381         * modules/posix_spawn_file_actions_addopen: New file.
15382         * lib/spawn_faction_addopen.c: New file, from GNU libc with
15383         modifications.
15384         * doc/posix-functions/posix_spawn_file_actions_addopen.texi: Mention
15385         the new module.
15386
15387         New module 'posix_spawn_file_actions_adddup2'.
15388         * modules/posix_spawn_file_actions_adddup2: New file.
15389         * lib/spawn_faction_adddup2.c: New file, from GNU libc with
15390         modifications.
15391         * doc/posix-functions/posix_spawn_file_actions_adddup2.texi: Mention
15392         the new module.
15393
15394         New module 'posix_spawn_file_actions_addclose'.
15395         * modules/posix_spawn_file_actions_addclose: New file.
15396         * lib/spawn_faction_addclose.c: New file, from GNU libc with
15397         modifications.
15398         * doc/posix-functions/posix_spawn_file_actions_addclose.texi: Mention
15399         the new module.
15400
15401         New module 'posix_spawn_file_actions_init'.
15402         * modules/posix_spawn_file_actions_init: New file.
15403         * lib/spawn_faction_init.c: New file, from GNU libc with modifications.
15404         * doc/posix-functions/posix_spawn_file_actions_init.texi: Mention the
15405         new module.
15406
15407         New module 'posix_spawn-internal'.
15408         * modules/posix_spawn-internal: New file.
15409         * lib/spawn_int.h: New file, from GNU libc with modifications.
15410         * lib/spawni.c: New file, from GNU libc with modifications.
15411         * m4/posix_spawn.m4: New file.
15412
15413         New module 'spawn'.
15414         * modules/spawn: New file.
15415         * lib/spawn.in.h: New file, from GNU libc with modifications.
15416         * m4/spawn_h.m4: New file.
15417         * doc/posix-headers/spawn.texi: Mention the new module.
15418
15419 2008-09-28  Bruno Haible  <bruno@clisp.org>
15420
15421         * modules/sched-tests: New file.
15422         * tests/test-sched.c: New file.
15423
15424         New module 'sched'.
15425         * modules/sched: New file.
15426         * lib/sched.in.h: New file.
15427         * m4/sched_h.m4: New file.
15428         * doc/posix-headers/sched.texi: Mention the new module.
15429
15430 2008-09-27  Eric Blake  <ebb9@byu.net>
15431
15432         Fix previous patch, and tweak references to $0.
15433         * posix-modules: Call func_gnulib_dir before using $gnulib_dir.
15434         (func_version, func_gnulib_dir): Don't call this program
15435         gnulib-tool.
15436         (func_gnulib_dir, func_tmpdir, func_fatal_error): Avoid shell bugs
15437         with using $0 in function.
15438         * gnulib-tool (func_gnulib_dir, func_tmpdir): Likewise.
15439         (func_fatal_error): Reuse the name the user invoked us with.
15440
15441 2008-09-27  Bruno Haible  <bruno@clisp.org>
15442
15443         * m4/iconv_h.m4 (gl_REPLACE_ICONV_H): New macro.
15444         (gl_ICONV_H_DEFAULTS): Initialize ICONV_H here...
15445         (gl_ICONV_H): Not here.
15446         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): Invoke gl_REPLACE_ICONV_H
15447         instead of assigning ICONV_H directly.
15448
15449         * m4/wchar.m4 (gl_REPLACE_WCHAR_H): New macro.
15450         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Invoke it instead of assigning
15451         WCHAR_H directly.
15452
15453 2008-09-27  Bruno Haible  <bruno@clisp.org>
15454
15455         * lib/arpa_inet.in.h: Include the GL_LINK_WARNING anchor.
15456         * modules/arpa_inet (Depends-on): Add link-warning.
15457         (Makefile.am): Insert the definition of GL_LINK-WARNING.
15458         * modules/unistd (Makefile.am): Likewise.
15459
15460 2008-09-26  Bruno Haible  <bruno@clisp.org>
15461
15462         * posix-modules (cvsdatestamp, last_checkin_date, version): Remove
15463         variables.
15464         (func_version): Essentially copied from gnulib-tool.
15465         (func_exit, func_gnulib_dir, func_tmpdir, func_fatal_error,
15466         func_readlink): Copied from gnulib-tool.
15467
15468 2008-09-26  Bruno Haible  <bruno@clisp.org>
15469
15470         * gnulib-tool (func_version): Change directory to $gnulib_dir before
15471         invoking git-version-gen.
15472
15473 2008-09-26  Bruno Haible  <bruno@clisp.org>
15474
15475         * posix-modules: Update to directory names changed on 2008-01-19.
15476         Remove commas in output before splitting into words. No more need to
15477         avoid 'ftruncate' since 2007-02-19.
15478
15479 2008-09-26  Bruno Haible  <bruno@clisp.org>
15480
15481         * doc/posix-headers/errno.texi: Remove mention of module 'EOVERFLOW'.
15482
15483 2008-09-26  Bruno Haible  <bruno@clisp.org>
15484
15485         * lib/fwriteerror.c (do_fwriteerror): Ignore error EPIPE.
15486         * modules/fwriteerror (Depends-on): Add errno.
15487
15488 2008-09-26  Bruno Haible  <bruno@clisp.org>
15489
15490         * tests/test-vc-list-files-git.sh: Explain reason for skipping test.
15491         * tests/test-vc-list-files-cvs.sh: Likewise.
15492
15493 2008-09-26  Bruno Haible  <bruno@clisp.org>
15494
15495         * doc/posix-headers/sys_resource.texi: Reorder items.
15496
15497 2008-09-26  Jim Meyering  <meyering@redhat.com>
15498
15499         fts: tweak inode comparison function
15500         * lib/fts.c (fts_compare_ino): Sort on increasing, not decreasing
15501         inode numbers, as documented.
15502
15503         fts: sort dirent entries on inode number before traversing
15504         This avoids a quadratic, seek-related performance penalty when
15505         operating on a directory containing many entries (measurable at 10k;
15506         3.5 hours at 2 million entries with a cold cache) on certain types
15507         of file systems, including ext3 and ext4, but not tmpfs.
15508         * lib/fts.c (DT_MUST_BE, NOT_AN_INODE_NUMBER, D_INO): Define.
15509         (FTS_INODE_SORT_DIR_ENTRIES_THRESHOLD): Define if not defined.
15510         (S_MAGIC_TMPFS, S_MAGIC_NFS): Define.
15511         (fs_handles_readdir_ordered_dirents_efficiently): New function.
15512         (dirent_inode_sort_may_be_useful, fts_compare_ino): Likewise.
15513         (fts_build): Set the stat.st_ino member from D_INO.
15514         If it is likely to be useful, sort dirent entries on inode number.
15515
15516         * m4/fts.m4 (gl_FUNC_FTS_CORE): Check for fstatfs, sys/vfs.h,
15517         and the struct statfs.f_type member.
15518         * modules/fts (Depends-on): Add d-ino.
15519
15520 2008-09-26  Bruno Haible  <bruno@clisp.org>
15521
15522         * modules/sigpipe-die (Depends-on): Add sigpipe.
15523
15524         * lib/stdio.in.h (fprintf, vfprintf, printf, vprintf, fputc, putc,
15525         putchar, fputs, puts, fwrite): Replace when REPLACE_STDIO_WRITE_FUNCS
15526         and GNULIB_STDIO_H_SIGPIPE are set.
15527         * lib/stdio-write.c: New file.
15528         * m4/stdio_h.m4 (gl_STDIO_H): Set GNULIB_FPRINTF, GNULIB_PRINTF,
15529         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
15530         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
15531         REPLACE_STDIO_WRITE_FUNCS.
15532         (gl_STDIO_H_DEFAULTS): Initialize GNULIB_FPRINTF, GNULIB_PRINTF,
15533         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
15534         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
15535         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
15536         * modules/stdio (Files): Add lib/stdio-write.c.
15537         (Makefile.am): Substitute 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         * m4/fprintf-posix.m4 (gl_REPLACE_FPRINTF): Define
15542         REPLACE_FPRINTF_POSIX.
15543         * m4/printf-posix-rpl.m4 (gl_REPLACE_PRINTF): Define
15544         REPLACE_PRINTF_POSIX.
15545         * m4/vfprintf-posix.m4 (gl_REPLACE_VFPRINTF): Define
15546         REPLACE_VFPRINTF_POSIX.
15547         * m4/vprintf-posix.m4 (gl_REPLACE_VPRINTF): Define
15548         REPLACE_VPRINTF_POSIX.
15549         * doc/posix-functions/fprintf.texi: Mention the sigpipe module and the
15550         SIGPIPE issue.
15551         * doc/posix-functions/fputc.texi: Likewise.
15552         * doc/posix-functions/fputs.texi: Likewise.
15553         * doc/posix-functions/fwrite.texi: Likewise.
15554         * doc/posix-functions/printf.texi: Likewise.
15555         * doc/posix-functions/putc.texi: Likewise.
15556         * doc/posix-functions/putchar.texi: Likewise.
15557         * doc/posix-functions/puts.texi: Likewise.
15558         * doc/posix-functions/vfprintf.texi: Likewise.
15559         * doc/posix-functions/vprintf.texi: Likewise.
15560
15561         * modules/safe-write (Depends-on): Add write.
15562
15563         * modules/sigpipe-tests: New file.
15564         * tests/test-sigpipe.c: New file.
15565         * tests/test-sigpipe.sh: New file.
15566
15567         * modules/write: New file.
15568         * lib/unistd.in.h: Include <sys/types.h>.
15569         (write): New declaration.
15570         * lib/write.c: New file.
15571         * m4/write.m4: New file.
15572         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
15573         GNULIB_UNISTD_H_SIGPIPE, GNULIB_WRITE, REPLACE_WRITE.
15574         * modules/unistd (Makefile.am): Substitute GNULIB_UNISTD_H_SIGPIPE,
15575         GNULIB_WRITE, REPLACE_WRITE.
15576         * doc/posix-functions/write.texi: Mention the write, sigpipe modules
15577         and the SIGPIPE issue.
15578
15579         * lib/signal.in.h (SIGPIPE): Define to a replacement value.
15580         (raise): New declaration.
15581         * lib/sigprocmask.c (SIGPIPE_handler): New variable.
15582         (ext_signal): New function.
15583         (rpl_raise): New function.
15584         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Initialize
15585         GNULIB_SIGNAL_H_SIGPIPE.
15586         * modules/signal (Makefile.am): Substitute GNULIB_SIGNAL_H_SIGPIPE.
15587         * doc/posix-headers/signal.texi: Mention the SIGPIPE issue.
15588
15589         * modules/sigpipe: New file.
15590         * m4/sigpipe.m4: New file.
15591
15592 2008-09-25  Derek Price  <derek@ximbiot.com>
15593             Bruno Haible  <bruno@clisp.org>
15594
15595         * gnulib-tool (func_import): Report all license incompatibilities, not
15596         just the first one.
15597
15598 2008-09-25  Bruno Haible  <bruno@clisp.org>
15599
15600         * gnulib-tool (func_import): When computing the edits, consider not
15601         only the Makefile.ams that exist but also those that will be generated.
15602
15603 2008-09-25  Simon Josefsson  <simon@josefsson.org>
15604
15605         * modules/sys_select-tests (Depends-on): Remove sys_select itself,
15606         fixes gnulib-tool --test warning about duplicate dependency.
15607
15608 2008-09-25  Bruno Haible  <bruno@clisp.org>
15609
15610         * gnulib-tool: Don't ask the user to perform edits in the generated
15611         Makefile.ams.
15612         (func_emit_lib_Makefile_am): Emit empty SUBDIRS. Execute edits that
15613         apply to the Makefile.am being generated.
15614         (func_emit_tests_Makefile_am): Execute edits that apply to the
15615         Makefile.am being generated.
15616         (func_import): Setup list of Makefile.am edits before emitting the
15617         Makefile.ams, not at the end.
15618         (func_create_testdir): Update.
15619         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
15620
15621 2008-09-25  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
15622
15623         * gnulib-tool (func_import): Store the --tests-base option in the
15624         comment in gnulib-cache.m4.
15625
15626 2008-09-24  Paolo Bonzini  <bonzini@gnu.org>
15627
15628         * NEWS: Document increased portability that sys_select now provides.
15629
15630         * lib/sys_select.in.h: Install select wrapper.
15631         * lib/sys_socket.in.h: Use more descriptive name when there is no
15632         select wrapper.
15633         * lib/winsock-select.c: New.
15634         * m4/sys_select_h.m4: Compile lib/winsock-select.c if WinSock is used.
15635         Require gl_HEADER_SYS_SOCKET.
15636         * modules/sys_select: Depend on alloca, add lib/winsock-select.c.
15637         * modules/sys_select-tests: Copy dependencies from modules/poll-tests.
15638         * tests/test-sys_select.c: Add functional tests.
15639
15640 2008-09-24  Eric Blake  <ebb9@byu.net>
15641
15642         open, fopen: close fd leak in last patch
15643         * lib/open.c (rpl_open): Close fd before returning error.
15644         * lib/fopen.c (rpl_fopen): Close fd before returning error.
15645         * doc/posix-functions/open.texi (open): Document that Irix also
15646         has the bug.
15647         * doc/posix-functions/fopen.texi (fopen): Likewise.
15648         Reported by Paolo Bonzini.
15649
15650 2008-09-24  Bruno Haible  <bruno@clisp.org>
15651
15652         Ensure that a filename ending in a slash cannot be used to access a
15653         non-directory.
15654         * lib/open.c (rpl_open): When the filename ends in a slash, use fstat()
15655         to check whether it's really a directory.
15656         * lib/fopen.c: Include fcntl.h, unistd.h.
15657         (rpl_fopen): When the filename ends in a slash, use open(), fstat(),
15658         and fdopen().
15659         * modules/fopen (Depends-on): Add unistd.
15660         * tests/test-open.c (main): Try to open "/dev/null/" as a directory.
15661         * tests/test-fopen.c (main): Likewise.
15662         * doc/posix-functions/open.texi: Mention the HP-UX, Solaris bug.
15663         * doc/posix-functions/fopen.texi: Likewise.
15664         Reported by Eric Blake.
15665
15666 2008-09-23  Eric Blake  <ebb9@byu.net>
15667
15668         c-stack: avoid compiler optimizations when provoking overflow
15669         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Make
15670         recursion harder to optimize, to ensure a stack overflow occurs.
15671         * tests/test-c-stack.c (recurse): Likewise.
15672         Borrowed from libsigsegv.
15673
15674         c-stack: work around Irix sigaltstack bug
15675         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check
15676         whether sigaltstack uses wrong end of stack_t (copied in part from
15677         libsigsegv).
15678         * lib/c-stack.c (c_stack_action) [!HAVE_LIBSIGSEGV]: Work around
15679         Irix bug, without requiring an over-allocation.
15680         * doc/posix-functions/sigaltstack.texi (sigaltstack): Document the
15681         bug.
15682
15683         fopen: document mingw bug on directories
15684         * doc/posix-functions/fopen.texi (fopen): Mention mingw bug for
15685         not allowing a stream visiting a directory, even though reading
15686         from such a stream is not portable.
15687
15688 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
15689
15690         * lib/poll.c: Rewrite.
15691         * modules/poll: Depend on alloca.
15692
15693 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
15694
15695         * lib/sys_socket.in.h: Do not implement rpl_setsockopt here,
15696         instead define prototypes for a full set of wrappers.  Ensure
15697         that Cygwin does not use the compatibility code, which is only
15698         for MinGW.
15699         * lib/winsock.c: New.
15700         * m4/sys_socket_h.m4: Compile lib/winsock.c if WinSock is being used.
15701         * modules/sys_socket: Add lib/winsock.c.
15702
15703         * modules/poll-tests: Add errno and perror.
15704         * tests/test-poll.c: Use ioctl, not ioctlsocket.
15705
15706 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
15707
15708         * tests/test-poll.c: Downgrade minimum needed Winsock version.
15709
15710 2008-09-23  Bruno Haible  <bruno@clisp.org>
15711
15712         * doc/posix-functions/*: Add info about functions missing on IRIX 5.3.
15713         * doc/glibc-functions/*: Likewise.
15714
15715 2008-09-23  Simon Josefsson  <simon@josefsson.org>
15716
15717         * tests/test-perror.sh (tmpfiles): Cleanup temporary files on
15718         success.
15719
15720 2008-09-22  Eric Blake  <ebb9@byu.net>
15721             Bruno Haible  <bruno@clisp.org>
15722
15723         vasnprintf: fix x86/glibc regression on printf("%La", 0.0L)
15724         * lib/vasnprintf.c (VASNPRINTF): Support 0.0 on platforms that
15725         supply %A but mishandle pseudo-NaN.
15726         Reported by Simon Josefsson.
15727
15728 2008-09-21  Bruno Haible  <bruno@clisp.org>
15729
15730         * tests/test-lock.c (main): Tweak skip message.
15731         * tests/test-tls.c (main): Likewise.
15732
15733 2008-09-21  Bruno Haible  <bruno@clisp.org>
15734
15735         * m4/sigaction.m4 (gl_SIGACTION): Remove unnecessary AC_SUBST. Check
15736         whether 'struct sigaction' has sa_sigaction here...
15737         (gl_PREREQ_SIG_HANDLER_H): ... not here.
15738         (gl_PREREQ_SIGACTION): Remove unnecessary AC_SUBST.
15739
15740 2008-09-21  Bruno Haible  <bruno@clisp.org>
15741
15742         * MODULES.html.sh (Support for obsolete systems lacking ANSI C 89): New
15743         section.
15744         (Support for systems lacking ANSI C 89): Move stdlib, exit, strtol,
15745         strtoul, memchr, memcmp, memcpy, memmove, memset, strcspn, strpbrk to
15746         the new section.
15747         (Support for obsolete systems lacking POSIX:2001): New section.
15748         (String handling <string.h>): Move strdup to the new section.
15749         Suggested by Simon Josefsson and Paolo Bonzini.
15750
15751 2008-09-21  Bruno Haible  <bruno@clisp.org>
15752
15753         * tests/test-vasnprintf-posix.c (test_function): Allow 3-digit
15754         exponents in %e and %g results on 'long double'. Needed for mingw's
15755         improved *printf functions.
15756         * tests/test-vasprintf-posix.c (test_function): Likewise.
15757         * tests/test-snprintf-posix.h (test_function): Likewise.
15758         * tests/test-sprintf-posix.h (test_function): Likewise.
15759         Reported by Eric Blake.
15760
15761 2008-09-21  Bruno Haible  <bruno@clisp.org>
15762
15763         * tests/test-snprintf-posix.h (test_function): Remove useless ASSERTs.
15764         * tests/test-sprintf-posix.h (test_function): Likewise.
15765
15766 2008-09-21  Bruno Haible  <bruno@clisp.org>
15767
15768         * modules/getpass (Depends-on): Add strdup-posix.
15769
15770         New module 'strdup-posix'.
15771         * modules/strdup-posix: New file.
15772         * m4/strdup.m4 (gl_FUNC_STRDUP_POSIX): New macro.
15773         * lib/string.in.h (strdup): Replace if REPLACE_STRDUP is 1.
15774         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
15775         REPLACE_STRDUP.
15776         * modules/string (Makefile.am): Substitute REPLACE_STRDUP.
15777         * doc/posix-functions/strdup.texi: Mention module strdup-posix.
15778         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
15779         strdup-posix.
15780
15781         * modules/strdup (Depends-on): Remove malloc-posix.
15782
15783 2008-09-20  Bruno Haible  <bruno@clisp.org>
15784
15785         * lib/fstrcmp.c: Add data about branch probabilities, from Ralf
15786         Wildenhues.
15787
15788 2008-09-20  Bruno Haible  <bruno@clisp.org>
15789
15790         Ensure that wint_t gets defined on IRIX 5.3.
15791         * lib/wchar.in.h (wint_t): Define if not defined by the system.
15792         * lib/wctype.in.h (wint_t): Likewise.
15793         (__wctype_wint_t): Remove type.
15794         (isw*): Use wint_t instead of __wctype_wint_t.
15795         * m4/wchar.m4 (gl_WCHAR_H): Invoke gt_TYPE_WINT_T and set HAVE_WINT_T.
15796         * modules/wchar (Files): Add m4/wint_t.m4.
15797         (Makefile.am): Substitute HAVE_WINT_T.
15798         * tests/test-wchar.c: Check that wchar_t and wint_t are defined.
15799         * tests/test-wctype.c: Check that wint_t is defined.
15800         * doc/posix-headers/wchar.texi: Mention the IRIX 5 problem.
15801         * doc/posix-headers/wctype.texi: Likewise.
15802         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
15803
15804 2008-09-18  Bruno Haible  <bruno@clisp.org>
15805
15806         * gnulib-tool (func_exit): Update comment.
15807
15808 2008-09-18  Simon Josefsson  <simon@josefsson.org>
15809
15810         * modules/getaddrinfo (Depends-on): Remove strdup, this module
15811         assumes strdup exists and does not depend on strdup to return
15812         ENOMEM on out of memory conditions.
15813
15814 2008-09-18  Bruno Haible  <bruno@clisp.org>
15815
15816         * lib/vasnprintf.c (VASNPRINTF): When printing Â±0.0L in
15817         NEED_PRINTF_INFINITE_LONG_DOUBLE case with 'e' format, always use two
15818         digits for the exponent.
15819
15820 2008-09-18  Jim Meyering  <meyering@redhat.com>
15821             Bruno Haible  <bruno@clisp.org>
15822
15823         * lib/vasnprintf.c (decimal_point_char): Define also if
15824         NEED_PRINTF_INFINITE_LONG_DOUBLE.
15825
15826 2008-09-16  Bruno Haible  <bruno@clisp.org>
15827         and Eric Blake  <ebb9@byu.net>
15828
15829         vasnprintf: support Irix 5.3
15830         * lib/vasnprintf.c (VASNPRINTF): Also handle -0.0L on platforms
15831         that mishandle long double infinity.
15832         Reported by Tom G. Christensen.
15833
15834 2008-09-16  Bruno Haible  <bruno@clisp.org>
15835
15836         * doc/glibc-functions/scandir.texi: Mention the function is missing on
15837         Solaris 9.
15838         * doc/glibc-functions/alphasort.texi: Likewise.
15839         Reported by Michael Haubenwallner <michael.haubenwallner@salomon.at>.
15840
15841 2008-09-16  Jim Meyering  <meyering@redhat.com>
15842
15843         posix-shell.m4: reject opensolaris's "sh (AT&T Research) 1993-12-28 s+"
15844         * m4/posix-shell.m4 (gl_POSIX_SHELL): Reject a shell that lets
15845         a umask modification leak out of a subshell.  Otherwise, the
15846         opensolaris /bin/sh would be accepted and thus cause unwarranted
15847         failures in the coreutils test suite.
15848
15849 2008-09-16  Paolo Bonzini  <bonzini@gnu.org>
15850
15851         * tests/test-poll.c (connect_to_socket): Allow non-blocking connect
15852         to succeed.
15853
15854 2008-09-16  Jim Meyering  <meyering@redhat.com>
15855
15856         avoid spurious test failure when library is built without ACL support
15857         * m4/acl.m4 (USE_ACL): Define as a shell variable, too, for...
15858         * modules/acl-tests (Makefile.am) [TESTS_ENVIRONMENT]: Add USE_ACL.
15859         * tests/test-file-has-acl.sh: Skip if USE_ACL == 0.
15860         * tests/test-copy-acl.sh: Likewise.
15861
15862 2008-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15863
15864         * lib/fstrcmp.c (fstrcmp_bounded): Use a second, less quick upper bound
15865         based on character occurrence counts.
15866
15867 2008-09-15  Eric Blake  <ebb9@byu.net>
15868
15869         tests: avoid some compiler warnings
15870         * tests/test-memchr.c (main): Pass NULL indirectly.
15871         * tests/test-closein.c (main): Avoid unused variable.
15872
15873 2008-09-15  Bruno Haible  <bruno@clisp.org>
15874
15875         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test for all the macros that
15876         are missing on OpenBSD 4.0 individually.
15877         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
15878
15879 2008-09-15  Bruno Haible  <bruno@clisp.org>
15880
15881         * doc/posix-headers/errno.texi: Mention the Cygwin problem.
15882         * doc/posix-functions/strerror.texi: Mention also Cygwin.
15883         * doc/posix-functions/perror.texi: Likewise.
15884         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test also whether ECANCELED
15885         is missing.
15886         Reported by Eric Blake.
15887
15888         * lib/errno.in.h: Use replacement values >= 2000.
15889         Reported by Eric Blake.
15890
15891 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15892
15893         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Add field 'edit_count_limit'.
15894         (EARLY_ABORT): Return true when the edit_count has grown too beyond the
15895         limit.
15896         (fstrcmp_bounded): Initialize the edit_count_limit. Return 0 when
15897         compareseq was aborted.
15898
15899 2008-09-14  Bruno Haible  <bruno@clisp.org>
15900
15901         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Combine xvec_edit_count and
15902         yvec_edit_count.
15903         (NOTE_DELETE, NOTE_INSERT): Increment the combined edit count.
15904         (fstrcmp_bounded): Simplify result computation accordingly.
15905
15906 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15907
15908         * lib/fstrcmp.h (fstrcmp_bounded): New declaration.
15909         (fstrcmp): Define in terms of fstrcmp_bounded.
15910         * lib/fstrcmp.c (fstrcmp_bounded): Renamed from fstrcmp. Add
15911         lower_bound argument.
15912         Return quickly if the result is certainly < lower_bound.
15913         * tests/test-fstrcmp.c (check_fstrcmp): Test also fstrcmp_bounded.
15914
15915 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15916
15917         * lib/diffseq.h (EARLY_ABORT): New macro.
15918         (compareseq): Change return type to bool. Return true when EARLY_ABORT
15919         evaluates to true.
15920
15921 2008-09-14  Bruno Haible  <bruno@clisp.org>
15922
15923         * modules/perror-tests: New file.
15924         * tests/test-perror.sh: New file.
15925         * tests/test-perror.c: New file.
15926
15927         New module 'perror'.
15928         * lib/stdio.in.h (perror): New declaration.
15929         * lib/perror.c: New file.
15930         * m4/perror.m4: New file.
15931         * modules/perror: New file.
15932         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add perror.
15933         * doc/posix-functions/perror.texi: Mention the perror module.
15934         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_PERROR,
15935         REPLACE_PERROR.
15936         * modules/stdio (Makefile.am): Substitute GNULIB_PERROR,
15937         REPLACE_PERROR.
15938
15939 2008-09-14  Bruno Haible  <bruno@clisp.org>
15940
15941         * modules/stdio (Makefile.am): Reorder to match the order in
15942         lib/stdio.in.h.
15943         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
15944
15945 2008-09-13  Bruno Haible  <bruno@clisp.org>
15946
15947         * lib/sys_socket.in.h (EINPROGRESS, ...): Remove definitions.
15948
15949 2008-09-13  Bruno Haible  <bruno@clisp.org>
15950
15951         Extend strerror to cover the added errno values.
15952         * lib/strerror.c: Include errno.h and winsock2.h if it exists.
15953         (rpl_strerror): Provide error messages for the added errno values and
15954         for the WSA* values.
15955         * m4/strerror.m4 (gl_FUNC_STRERROR): Test REPLACE_STRERROR.
15956         (gl_FUNC_STRERROR_SEPARATE): If errno.h is replaced, always replace
15957         strerror.
15958         (gl_PREREQ_STRERROR): Test whether winsock2.h exists.
15959         * modules/strerror (Depends-on): Add errno.
15960         * doc/posix-functions/strerror.texi: Document the change.
15961         * tests/test-strerror.c (main): Check also the string for ETIMEDOUT
15962         and EOVERFLOW.
15963
15964 2008-09-13  Bruno Haible  <bruno@clisp.org>
15965
15966         * modules/EOVERFLOW: Remove file.
15967         * m4/eoverflow.m4: Remove file.
15968         * modules/EOVERFLOW-tests: Remove file.
15969         * tests/test-EOVERFLOW.c: Remove file.
15970         * modules/fprintf-posix (Depends-on): Replace EOVERFLOW with errno.
15971         * modules/ftell (Depends-on): Likewise.
15972         * modules/getdelim (Depends-on): Likewise.
15973         * modules/getugroups (Depends-on): Likewise.
15974         * modules/poll (Depends-on): Likewise.
15975         * modules/snprintf (Depends-on): Likewise.
15976         * modules/sprintf-posix (Depends-on): Likewise.
15977         * modules/vasnprintf (Depends-on): Likewise.
15978         * modules/vasprintf (Depends-on): Likewise.
15979         * modules/vfprintf-posix (Depends-on): Likewise.
15980         * modules/vsnprintf (Depends-on): Likewise.
15981         * modules/vsprintf-posix (Depends-on): Likewise.
15982         * modules/xvasprintf (Depends-on): Likewise.
15983         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
15984         * modules/unistdio/u8-vasprintf (Depends-on): Likewise.
15985         * modules/unistdio/u8-vsnprintf (Depends-on): Likewise.
15986         * modules/unistdio/u8-vsprintf (Depends-on): Likewise.
15987         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
15988         * modules/unistdio/u8-u8-vasprintf (Depends-on): Likewise.
15989         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Likewise.
15990         * modules/unistdio/u8-u8-vsprintf (Depends-on): Likewise.
15991         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
15992         * modules/unistdio/u16-u16-vasprintf (Depends-on): Likewise.
15993         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Likewise.
15994         * modules/unistdio/u16-u16-vsprintf (Depends-on): Likewise.
15995         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
15996         * modules/unistdio/u16-vasprintf (Depends-on): Likewise.
15997         * modules/unistdio/u16-vsnprintf (Depends-on): Likewise.
15998         * modules/unistdio/u16-vsprintf (Depends-on): Likewise.
15999         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
16000         * modules/unistdio/u32-vasprintf (Depends-on): Likewise.
16001         * modules/unistdio/u32-vsnprintf (Depends-on): Likewise.
16002         * modules/unistdio/u32-vsprintf (Depends-on): Likewise.
16003         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
16004         * modules/unistdio/u32-u32-vasprintf (Depends-on): Likewise.
16005         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Likewise.
16006         * modules/unistdio/u32-u32-vsprintf (Depends-on): Likewise.
16007         * modules/unistdio/ulc-fprintf (Depends-on): Likewise.
16008         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
16009         * modules/unistdio/ulc-vasprintf (Depends-on): Likewise.
16010         * modules/unistdio/ulc-vfprintf (Depends-on): Likewise.
16011         * modules/unistdio/ulc-vsnprintf (Depends-on): Likewise.
16012         * modules/unistdio/ulc-vsprintf (Depends-on): Likewise.
16013         * MODULES.html.sh: Remove EOVERFLOW.
16014         * NEWS: Mention the change.
16015
16016 2008-09-13  Bruno Haible  <bruno@clisp.org>
16017
16018         * modules/errno-tests: New file.
16019         * tests/test-errno.c: New file, incorporating tests/test-EOVERFLOW.c.
16020
16021         * lib/errno.in.h: New file.
16022         * m4/errno_h.m4: New file, borrowing from m4/eoverflow.m4.
16023         * modules/errno: New file.
16024         * doc/posix-headers/errno.texi: Update documentation.
16025         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add errno.
16026
16027 2008-09-13  Bruno Haible  <bruno@clisp.org>
16028
16029         * tests/test-poll.c: Use #if for native Windows, rather than testing
16030         __MSVCRT__.
16031
16032 2008-09-13  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
16033             Bruno Haible  <bruno@clisp.org>
16034
16035         * lib/glob.c: Don't include <pwd.h> on native Windows.
16036         (WINDOWS32): New macro.
16037         (glob) [WINDOW32]: Provide a reasonable replacement for getenv("HOME").
16038
16039 2008-09-13  Bruno Haible  <bruno@clisp.org>
16040
16041         * lib/glthread/cond.h [USE_SOLARIS_THREADS]
16042         (ETIMEDOUT): Remove macro.
16043         (glthread_cond_timedwait_multithreaded): New declaration.
16044         (glthread_cond_timedwait): Use it.
16045         * lib/glthread/cond.c [USE_SOLARIS_THREADS]
16046         (glthread_cond_timedwait_multithreaded): New function.
16047
16048 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
16049
16050         * modules/poll-tests: Do not check for io.h.
16051         * tests/test-poll.c: Check for __MSVCRT__ instead.
16052
16053 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
16054
16055         * lib/sys_socket.in.h (EINPROGRESS): Define for Winsock case.
16056         * modules/poll-tests: Add inet_pton, stdbool, sockets.
16057         * tests/test-poll.c: Use them.  Use _pipe on Windows.
16058
16059 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
16060
16061         * modules/poll-tests: New.
16062         * tests/test-poll.c: New.
16063
16064 2008-09-12  Eric Blake  <ebb9@byu.net>
16065
16066         frexp: test for NetBSD failure on -0.0
16067         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Enhance test, since some, but
16068         not all, bugs from NetBSD 3.0 have been fixed.
16069         * doc/posix-functions/frexp.texi (frexp): Document bug.
16070         Reported by Thomas Klausner.
16071
16072         signbit: work around bug of HP-UX 10.20 cc with -0.0 literal
16073         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Rewrite test to avoid
16074         literal -0.0.
16075         Reported by Jonathan C. Patschke <jp@centtech.com>.
16076
16077 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
16078
16079         * lib/glthread/cond.h: Use dummy implementation also if
16080         USE_WIN32_THREADS.
16081
16082 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
16083
16084         * modules/fnmatch-posix (License): Change to LGPLv2+.
16085         * modules/fnmatch-gnu (License): Likewise.
16086
16087 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
16088
16089         * lib/poll.c (poll): Fix polling unconnected server sockets on WIN32.
16090
16091 2008-09-11  Jim Meyering  <meyering@redhat.com>
16092
16093         * users.txt: Add gtk-vnc.
16094
16095 2008-09-08  Simon Josefsson  <simon@josefsson.org>
16096
16097         * tests/test-bitrotate.c: Test 8/16-bit rotates with 0 and maximum
16098         rotate amounts.
16099
16100         * lib/bitrotate.h: Doc fix, mention that N can be wider than minimally
16101         required for 16-bit and 8-bit rotates.
16102         * lib/bitrotate.h (rotl64, rotr64, rotl32, rotl32, rotl16, rotr16,
16103         rotl8, rotr8): Use UINT64_MAX, UINT32_MAX, UINT16_MAX, and
16104         UINT8_MAX instead of hard-coded constants.
16105         Suggested by Paul Eggert.
16106
16107 2008-09-07  Bruno Haible  <bruno@clisp.org>
16108
16109         * tests/test-striconveh.c (main): Check behaviour when converting from
16110         UTF-7.
16111
16112         Make striconveh work better with stateful encodings.
16113         * lib/striconveh.c (iconv_carefully, iconv_carefully_1): Don't assume
16114         that iconv does not increment the inptr when returning -1/EINVAL.
16115
16116 2008-09-07  Bruno Haible  <bruno@clisp.org>
16117
16118         * build-aux/config.rpath: Update according to libtool-2.2.6.
16119         * build-aux/config.libpath: Likewise.
16120
16121 2008-09-06  Bruno Haible  <bruno@clisp.org>
16122
16123         * lib/freadahead.c (freadahead): Add conditional for SLOW_BUT_NO_HACKS.
16124         * lib/freadptr.c (freadptr): Likewise.
16125         * lib/freadseek.c (freadptrinc): Likewise.
16126         Reported by Simon Josefsson.
16127
16128 2008-09-06  Bruno Haible  <bruno@clisp.org>
16129
16130         * modules/freadptr (License): Change to LGPLv2+.
16131         * modules/freadseek (License): Likewise.
16132         Suggested by Eric Blake.
16133
16134         * modules/memchr2 (License): Change to LGPLv2+.
16135         Approved by Eric Blake.
16136
16137 2008-09-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16138             Bruno Haible  <bruno@clisp.org>
16139
16140         Make gnulib-tool work with native 'sed' on AIX.
16141         * gnulib-tool (sed_noop): New variable.
16142         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am, func_import,
16143         func_add_or_update, func_create_testdir): Use it to initialize sed
16144         script variables.
16145         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
16146
16147 2008-09-04  Albert Chin  <bug-gnulib@mlists.thewrittenword.com>
16148             Bruno Haible  <bruno@clisp.org>
16149
16150         * m4/include_next.m4 (gl_INCLUDE_NEXT): Add check whether #include_next
16151         also works after #include directives.
16152
16153 2008-09-04  OndÅ™ej Vašík  <ovasik@redhat.com>
16154
16155         getdate.y: reject an out-of-range timezone value
16156         * lib/getdate.y (time_zone_hhmm): Reject any TZ offset that is outside
16157         the range [-24...+24].  When specified with only one or two digits,
16158         * tests/test-getdate.c: Tests for the fix.
16159         * doc/getdate.texi: Document this change.
16160
16161 2008-09-03  Bruno Haible  <bruno@clisp.org>
16162
16163         * doc/glibc-functions/strverscmp.texi: Mention the strverscmp module.
16164
16165 2008-09-02  Simon Josefsson  <simon@josefsson.org>
16166
16167         * lib/bitrotate.h (rotl64, rotr64): Add.  Suggested by Bruce Korb
16168         <bruce.korb@gmail.com> with ideas from Ben Pfaff
16169         <blp@cs.stanford.edu>, Bruno Haible <bruno@clisp.org> and Eric
16170         Blake <ebb9@byu.net>.
16171
16172         * tests/test-bitrotate.c: Add more test vectors.
16173
16174 2008-09-02  Eric Blake  <ebb9@byu.net>
16175
16176         vasnprintf-posix: handle large precision via %.*d
16177         * lib/vasnprintf.c (VASNPRINTF): Don't pass precision to snprintf
16178         when handling it ourselves.
16179         * tests/test-vasnprintf-posix.c (test_function): Add test.
16180         * tests/test-snprintf-posix.h (test_function): Likewise.
16181         * tests/test-sprintf-posix.h (test_function): Likewise.
16182         * tests/test-vasprintf-posix.c (test_function): Likewise.
16183         Reported by Alain Guibert.
16184
16185 2008-09-01  Eric Blake  <ebb9@byu.net>
16186
16187         c-stack: make configure-time check more robust
16188         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check for
16189         successful sigaction call.
16190         Reported by Tom G. Christensen.
16191
16192 2008-09-01  Bruno Haible  <bruno@clisp.org>
16193
16194         New module 'findprog-lgpl'.
16195         * modules/findprog-lgpl: New file.
16196         * lib/findprog-lgpl.c: New file.
16197         * lib/findprog.c: Compile nothing in findprog.c if findprog-lgpl.c is
16198         also compiled. Consider the possibly defined symbol IN_FINDPROG_LGPL
16199         to decide whether to use strdup or xstrdup, concatenated_filename or
16200         xconcatenated_filename.
16201
16202 2008-09-01  Bruno Haible  <bruno@clisp.org>
16203
16204         Split module 'concat-filename' into 'concat-filename' (LGPL) and
16205         'xconcat-filename' (GPL).
16206         * modules/concat-filename (Depends-on): Add malloc-posix, remove xalloc.
16207         (License): Change to LGPLv2+.
16208         * modules/xconcat-filename: New file.
16209         * lib/concat-filename.h (concatenated_filename): Change specification.
16210         (xconcatenated_filename): New declaration.
16211         * lib/concat-filename.c: Include errno.h, stdlib.h, not xalloc.h.
16212         (concatenated_filename): Use malloc instead of xalloc. Handle out-of-
16213         memory situations.
16214         * lib/xconcat-filename.c: New file.
16215         * NEWS: Mention the change.
16216         * lib/findprog.c: Include concat-filename.h, not filename.h.
16217         (find_in_path): Use xconcatenated_filename instead of
16218         concatenated_filename.
16219         * lib/javacomp.c: Include concat-filename.h, not filename.h.
16220         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
16221         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
16222         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
16223         is_oldgcj_14_13_usable, is_javac_usable): Use xconcatenated_filename
16224         instead of concatenated_filename.
16225         * lib/javaexec.c: Include concat-filename.h, not filename.h.
16226         (execute_java_class): Use xconcatenated_filename instead of
16227         concatenated_filename.
16228         * modules/findprog (Depends-on): Add xconcat-filename, remove filename.
16229         * modules/javacomp (Depends-on): Likewise.
16230         * modules/javaexec (Depends-on): Likewise.
16231
16232 2008-09-01  Bruno Haible  <bruno@clisp.org>
16233
16234         Split module 'filename' into 'filename' and 'concat-filename'.
16235         * modules/filename: Keep only lib/filename.h.
16236         (License): Change to LGPLv2+.
16237         * modules/concat-filename: New file, extracted from modules/filename.
16238         * lib/filename.h (concatenated_filename): Remove declaration.
16239         * lib/concat-filename.h: New file, extracted from lib/filename.h.
16240         * lib/concat-filename.c: Include concat-filename.h.
16241         * NEWS: Mention the change.
16242
16243 2008-09-01  Simon Josefsson  <simon@josefsson.org>
16244
16245         * lib/bitrotate.h (rotl8, rotr8): Add.
16246
16247         * modules/bitrotate (configure.ac): Need
16248         AC_REQUIRE([AC_C_INLINE]).
16249         (Description): Mention stdint.h.  Reported by Bruno Haible
16250         <bruno@clisp.org>.
16251
16252         * lib/bitrotate.h (rotr16, rotl16): Fix mask value.  Reported by
16253         Paolo Bonzini <bonzini@gnu.org>.
16254
16255 2008-08-31  Bruno Haible  <bruno@clisp.org>
16256
16257         Assume Solaris specific bi-arch conventions on Solaris systems.
16258         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): On Solaris in 64-bit
16259         mode, set acl_libdirstem to lib/64. Also set acl_libdirstem2.
16260         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): If acl_libdirstem does not
16261         work, try acl_libdirstem2 as fallback. Otherwise treat acl_libdirstem2
16262         like acl_libdirstem.
16263         (AC_LIB_LINKFLAGS_FROM_LIBS): Treat acl_libdirstem2 like
16264         acl_libdirstem.
16265         * NEWS: Mention the change.
16266         Reported by Ben Taylor <bentaylor.solx86@gmail.com>.
16267
16268 2008-08-31  Jim Meyering  <meyering@redhat.com>
16269
16270         * lib/strftime.h: Add comments describing the two added arguments.
16271
16272         remove duplicate #include directives
16273         * lib/chdir-long.c [TEST_CHDIR]: Remove duplicate #include <stdio.h>.
16274         * lib/putenv.c: Remove duplicate #include <stdlib.h>.
16275
16276 2008-08-31  Bruno Haible  <bruno@clisp.org>
16277
16278         New module 'sigpipe-die'.
16279         * modules/sigpipe-die: New file.
16280         * lib/sigpipe-die.h: New file.
16281         * lib/sigpipe-die.c: New file.
16282         * MODULES.html.sh (Signal handling): Add sigpipe-die.
16283
16284 2008-08-31  Bruno Haible  <bruno@clisp.org>
16285
16286         Don't override previously installed signal handlers.
16287         * lib/fatal-signal.c (saved_sigactions): New variable.
16288         (uninstall_handlers): Reset the signal to the saved handler, not
16289         to SIG_DFL (except when ignored).
16290         (install_handlers): Save the previous handlers.
16291
16292 2008-08-30  Bruno Haible  <bruno@clisp.org>
16293
16294         * gnulib-tool (func_reset_sigpipe): New function.
16295         (func_get_automake_snippet, func_modules_transitive_closure,
16296         func_import): Invoke it before a join command that reads from stdin,
16297         to avoid "echo: write error: Broken pipe" error messages on stderr.
16298         Reported by Sam Steingold <sds@gnu.org>.
16299
16300 2008-08-30  Bruno Haible  <bruno@clisp.org>
16301
16302         * m4/fopen.m4 (gl_FUNC_FOPEN): Test against bug with trailing slash.
16303         Code copied from m4/open.m4.
16304         * lib/fopen.c (rpl_fopen): Return NULL if the mode specifies write
16305         access and the filename ends in a slash. Code copied from lib/open.c.
16306         * doc/posix-functions/fopen.texi: Document bug with trailing slash.
16307         * tests/test-fopen.c (main): Check against bug with trailing slash.
16308
16309 2008-08-29  Bruno Haible  <bruno@clisp.org>
16310
16311         Avoid some "gcc -pedantic" warnings.
16312         * m4/include_next.m4 (gl_INCLUDE_NEXT): Set also PRAGMA_SYSTEM_HEADER.
16313         * lib/arpa_inet.in.h: Use PRAGMA_SYSTEM_HEADER.
16314         * lib/dirent.in.h: Likewise.
16315         * lib/fcntl.in.h: Likewise.
16316         * lib/float.in.h: Likewise.
16317         * lib/iconv.in.h: Likewise.
16318         * lib/inttypes.in.h: Likewise.
16319         * lib/locale.in.h: Likewise.
16320         * lib/math.in.h: Likewise.
16321         * lib/netinet_in.in.h: Likewise.
16322         * lib/search.in.h: Likewise.
16323         * lib/signal.in.h: Likewise.
16324         * lib/stdarg.in.h: Likewise.
16325         * lib/stdint.in.h: Likewise.
16326         * lib/stdio.in.h: Likewise.
16327         * lib/stdlib.in.h: Likewise.
16328         * lib/string.in.h: Likewise.
16329         * lib/strings.in.h: Likewise.
16330         * lib/sys_select.in.h: Likewise.
16331         * lib/sys_socket.in.h: Likewise.
16332         * lib/sys_stat.in.h: Likewise.
16333         * lib/sys_time.in.h: Likewise.
16334         * lib/sysexits.in.h: Likewise.
16335         * lib/time.in.h: Likewise.
16336         * lib/unistd.in.h: Likewise.
16337         * lib/wchar.in.h: Likewise.
16338         * lib/wctype.in.h: Likewise.
16339         * modules/arpa_inet (Makefile.am): Also substitute PRAGMA_SYSTEM_HEADER.
16340         * modules/fchdir (Makefile.am): Likewise.
16341         * modules/fcntl (Makefile.am): Likewise.
16342         * modules/float (Makefile.am): Likewise.
16343         * modules/iconv_open (Makefile.am): Likewise.
16344         * modules/inttypes (Makefile.am): Likewise.
16345         * modules/locale (Makefile.am): Likewise.
16346         * modules/math (Makefile.am): Likewise.
16347         * modules/netinet_in (Makefile.am): Likewise.
16348         * modules/search (Makefile.am): Likewise.
16349         * modules/signal (Makefile.am): Likewise.
16350         * modules/stdarg (Makefile.am): Likewise.
16351         * modules/stdint (Makefile.am): Likewise.
16352         * modules/stdio (Makefile.am): Likewise.
16353         * modules/stdlib (Makefile.am): Likewise.
16354         * modules/string (Makefile.am): Likewise.
16355         * modules/strings (Makefile.am): Likewise.
16356         * modules/sys_select (Makefile.am): Likewise.
16357         * modules/sys_socket (Makefile.am): Likewise.
16358         * modules/sys_stat (Makefile.am): Likewise.
16359         * modules/sys_time (Makefile.am): Likewise.
16360         * modules/sysexits (Makefile.am): Likewise.
16361         * modules/time (Makefile.am): Likewise.
16362         * modules/unistd (Makefile.am): Likewise.
16363         * modules/wchar (Makefile.am): Likewise.
16364         * modules/wctype (Makefile.am): Likewise.
16365         Reported by Reuben Thomas <rrt@sc3d.org>.
16366
16367 2008-08-29  Bruno Haible  <bruno@clisp.org>
16368
16369         * m4/include_next.m4 (gl_INCLUDE_NEXT): Don't define HAVE_INCLUDE_NEXT
16370         any more.
16371
16372 2008-08-29  Simon Josefsson  <simon@josefsson.org>
16373
16374         * MODULES.html.sh (Misc): Add bitrotate.
16375
16376         * modules/bitrotate: New file.
16377
16378         * lib/bitrotate.h: New file.
16379
16380         * modules/bitrotate-tests: New file.
16381
16382         * tests/test-bitrotate.c: New file.
16383
16384         * modules/crypto/gc-arctwo, modules/crypto/arctwo: Add dependency
16385         on the bitrotate module.
16386
16387         * lib/arctwo.c: Use new bitrotate module.
16388
16389 2008-08-29  Jim Meyering  <meyering@redhat.com>
16390
16391         bootstrap: merge changes from coreutils
16392         * build-aux/bootstrap (cp_mark_as_generated): Preserve perms
16393         of copied files.  Remove a kludge, now that this is fixed.
16394         * build-aux/bootstrap: Fix unportable expr usage. (by Ralf Wildenhues)
16395         * build-aux/bootstrap: Remove $bt and $bt2 also when not using gettext.
16396         * build-aux/bootstrap: Remove coreutils-specific SUBDIRS-related code.
16397
16398 2008-08-29  Bruno Haible  <bruno@clisp.org>
16399
16400         * MODULES.html.sh: Remove --cvs-urls option.
16401
16402 2008-08-28  Jose E. Marchesi  <jemarch@gnu.org>  (tiny change)
16403
16404         maint.mk: adjust to file name change
16405         * top/maint.mk: s/Makefile.cfg/cfg.mk/.
16406
16407 2008-08-28  Jim Meyering  <meyering@redhat.com>
16408
16409         * modules/getndelim2 (License): Relicense to LGPLv2+.
16410         Approved by Richard Stallman for the version of 1995, and by
16411         Paul Eggert, Bruno Haible, Eric Blake for their contributions.
16412
16413 2008-08-27  Paolo Bonzini  <bonzini@gnu.org>
16414
16415         * lib/getdelim.c (flockfile, funlockfile): Make all of them
16416         dummy if one is not available.  Do not touch them if
16417         USE_UNLOCKED_IO, instead letting unlocked-io.h do that.
16418         (getc_maybe_unlocked): New.
16419         * m4/getdelim.m4 (gl_PREREQ_GETDELIM): Check for getc_unlocked.
16420
16421 2008-08-26  Eric Blake  <ebb9@byu.net>
16422
16423         doc/INSTALL: resync from autoconf
16424         * doc/Makefile (INSTALL, INSTALL.ISO, INSTALL.UTF-8): Simplify.
16425         (INSTALL_PRELUDE): Delete; this is done more efficiently by
16426         moving...
16427         * install.texi [!autoconf]: ...here.  Resync from autoconf.
16428         * INSTALL: Regenerate.
16429         * INSTALL.ISO: New file.
16430         * INSTALL.UTF-8: Likewise.
16431
16432 2008-08-26  Jim Meyering  <meyering@redhat.com>
16433
16434         GNUmakefile: cfg.mk definitions override default autoreconf-rerun policy
16435         * top/GNUmakefile (_is-dist-target, _is-install-target): Make
16436         these definitions conditional, so that they may be overridden, too.
16437
16438 2008-08-26  Bruno Haible  <bruno@clisp.org>
16439
16440         Generate INSTALL file variants with prettier quotes.
16441         * doc/Makefile (INSTALL_PRELUDE): New macro.
16442         (INSTALL): Use it.
16443         (INSTALL.ISO, INSTALL.UTF-8): New rules.
16444
16445 2008-08-26  Bruno Haible  <bruno@clisp.org>
16446
16447         Run makeinfo in an English locale.
16448         * doc/Makefile (MAKEINFO): New variable.
16449
16450 2008-08-26  Bruno Haible  <bruno@clisp.org>
16451
16452         * doc/Makefile (INSTALL): Use --no-validate instead of --no-warn.
16453         Suggested by Eric Blake.
16454
16455 2008-08-25  Bruno Haible  <bruno@clisp.org>
16456
16457         * doc/Makefile (INSTALL): Generate with @firstparagraphindent set.
16458
16459 2008-08-25  Eric Blake  <ebb9@byu.net>
16460
16461         c-stack: test that stack overflow can be caught
16462         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Also check
16463         that platform allows handling stack overflow; at least OS/2 EMX
16464         has sigaltstack, but crashes before transferring control to
16465         handler on stack overflow.
16466         * lib/c-stack.c [HAVE_SIGALTSTACK]: Adjust conditions to also
16467         check for HAVE_STACK_OVERFLOW_HANDLING.
16468         Reported by Elbert Pol.
16469
16470 2008-08-25  Bruno Haible  <bruno@clisp.org>
16471
16472         * doc/posix-functions/strftime.texi: Fix description of strftime
16473         module.
16474
16475 2008-08-24  Bruno Haible  <bruno@clisp.org>
16476
16477         * tests/uniwidth/test-uc_width2.c: New file.
16478         * tests/uniwidth/test-uc_width2.sh: New file.
16479         * modules/uniwidth/width-tests (Files): Add the new files.
16480         (TESTS): Add uniwidth/test-uc_width2.sh.
16481         (TESTS_ENVIRONMENT): New variable.
16482         (check_PROGRAMS): Add test-uc_width2.
16483         (test_uc_width2_SOURCES): New variable.
16484
16485         Fix uc_width(0x00AB) bug, introduced on 2007-07-08.
16486         * lib/uniwidth/width.c (nonspacing_table_data): Set bit for 0x00AD,
16487         not 0x00AB.
16488         Reported by Alexander V. Lukyanov <lav@netis.ru>.
16489
16490 2008-08-22  Eric Blake  <ebb9@byu.net>
16491
16492         test-lock, test-tls: mention why a test is skipped
16493         * tests/test-lock.c (main) [!USE_*_THREADS]: Print why test is
16494         skipped.
16495         * tests/test-tls.c (main) [!USE_*_THREADS]: Likewise.
16496
16497         count-one-bits: relax license
16498         * modules/count-one-bits (License): Relicense to LGPLv2+.
16499         Suggested by Ludovic Courtès, approved by Ben Pfaff.
16500
16501 2008-08-22  Andreas Schwab  <schwab@suse.de>
16502
16503         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX):
16504         Remove spurious space in assignment.
16505
16506 2008-08-21  Simon Josefsson  <simon@josefsson.org>
16507
16508         * m4/autobuild.m4: Use TZ=UTC0 instead of TZ=UTC.  Reported by
16509         Paul Eggert <eggert@CS.UCLA.EDU>.
16510
16511 2008-08-20  Paolo Bonzini  <bonzini@gnu.org>
16512
16513         * modules/gettext: Add m4/threadlib.m4.
16514
16515 2008-08-19  Eric Blake  <ebb9@byu.net>
16516
16517         test-c-stack: fix compilation failure on FreeBSD 5.0
16518         * tests/test-c-stack.c [HAVE_SETRLIMIT]: Include prerequisite
16519         headers before <sys/resource.h>.
16520         * doc/posix-headers/sys_resource.texi (sys/resource.h): Document
16521         the bug.
16522         Reported by Nelson H. F. Beebe.
16523
16524         strverscmp: migrate from "strverscmp.h" to <string.h>
16525         * modules/string (Makefile.am): Add new hooks.
16526         * modules/strverscmp (Files): Remove strverscmp.h.
16527         (Depends-on): Add string.
16528         (configure.ac): Add indicator.
16529         (Include): Mention new header.
16530         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Provide new
16531         defaults.
16532         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Inform string module of
16533         results.
16534         * lib/strverscmp.h: Delete.
16535         * lib/string.in.h (strverscmp): Provide declaration, when needed.
16536         * tests/test-strverscmp.c (includes): Adjust client.
16537         * lib/check-version.c (includes): Likewise.
16538         * NEWS: Document the change.
16539
16540         strverscmp: add unit test
16541         * modules/strverscmp-tests: New file.
16542         * tests/test-strverscmp.c: Likewise.
16543
16544 2008-08-19  Simon Josefsson  <simon@josefsson.org>
16545
16546         * lib/gc-gnulib.c: Indentation cleanup.  Add some comments
16547         regarding Windows crypto stuff, from Mono.
16548
16549 2008-08-19  Adam Strzelecki <ono@java.pl>  (tiny change)
16550
16551         * lib/gc-gnulib.c: Use CRYPT_VERIFY_CONTEXT.  Try to use Intel CSP
16552         if present, for intel RND.  Return error on failures.
16553
16554 2008-08-18  Ben Pfaff  <blp@gnu.org>
16555
16556         gitlog-to-changelog: give better diagnostic for failed pipe-open
16557         * build-aux/gitlog-to-changelog: Improve error message: suggest
16558         that the version of Git may be too old.
16559
16560 2008-08-18  Simon Josefsson  <simon@josefsson.org>
16561
16562         * m4/autobuild.m4: Use TZ=UTC to avoid time zone complexity.  Use
16563         ISO 8601 format.  Suggested by Greg Troxel <gdt@ir.bbn.com>.
16564
16565 2008-08-18  Bruno Haible  <bruno@clisp.org>
16566
16567         * lib/glthread/thread.h [USE_SOLARIS_THREADS]: Use thread_in_use(), not
16568         pthread_in_use().
16569
16570 2008-08-18  Bruno Haible  <bruno@clisp.org>
16571
16572         * lib/glthread/threadlib.c: Include <pthread.h>.
16573
16574 2008-08-18  Bruno Haible  <bruno@clisp.org>
16575
16576         * lib/glthread/lock.h [USE_SOLARIS_THREADS]: Fix
16577         glthread_recursive_lock_* macros.
16578         * lib/glthread/lock.c (glthread_recursive_lock_destroy_multithreaded):
16579         Fix syntax error.
16580
16581 2008-08-18  Bruno Haible  <bruno@clisp.org>
16582
16583         * lib/glthread/thread.c: Avoid forcing a context switch right after
16584         thread creation.
16585
16586 2008-08-17  Bruno Haible  <bruno@clisp.org>
16587
16588         * lib/glthread/thread.c: New file, based on code from tests/test-lock.c.
16589         * lib/glthread/thread.h: Provide Win32 specific implementation.
16590         * modules/thread (Files): Add lib/glthread/thread.c.
16591         (Depends-on): Add lock.
16592         (Makefile.am): Add glthread/thread.c to lib_SOURCES.
16593
16594 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
16595
16596         New module 'yield'.
16597         * modules/yield: New file.
16598         * lib/glthread/yield.h: New file.
16599         * m4/yield.m4: New file.
16600         * MODULES.html.sh (Multithreading): Add yield.
16601
16602 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
16603
16604         New module 'thread'.
16605         * modules/thread: New file.
16606         * lib/glthread/thread.h: New file.
16607         * m4/thread.m4: New file.
16608         * MODULES.html.sh (Multithreading): Add thread.
16609
16610 2008-08-17  Bruno Haible  <bruno@clisp.org>
16611
16612         * lib/glthread/lock.h: Include <stdlib.h> always.
16613         * lib/glthread/tls.h: Likewise.
16614         * lib/glthread/cond.h: Likewise.
16615
16616 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
16617
16618         New module 'cond'.
16619         * modules/cond: New file.
16620         * lib/glthread/cond.h: New file.
16621         * lib/glthread/cond.c: New file.
16622         * m4/cond.m4: New file.
16623         * MODULES.html.sh (Multithreading): Add cond.
16624
16625 2008-08-16  Eric Blake  <ebb9@byu.net>
16626
16627         c-stack: fix regression on Irix 5.3 from 2008-06-21
16628         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Move check for
16629         sa_sigaction...
16630         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): ...here.
16631         (gl_PREREQ_SIGACTION): Depend on sig-handler.h prereq's.
16632         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Set the default.
16633         * modules/signal (Makefile.am): Use the value.
16634         * lib/signal.in.h (sa_sigaction) [HAVE_SIGACTION
16635         && !HAVE_STRUCT_SIGACTION_SA_SIGACTION]: Define.
16636         * doc/posix-headers/signal.texi (signal.h): Document this
16637         portability issue.
16638         * doc/posix-functions/sigaction.texi (sigaction): Likewise.
16639         Reported by Tom G. Christensen.
16640
16641 2008-08-17  Bruno Haible  <bruno@clisp.org>
16642
16643         New module 'threadlib'.
16644         * modules/threadlib: New file.
16645         * lib/glthread/threadlib.c: New file, extracted from
16646         lib/glthread/lock.c.
16647         * lib/glthread/lock.c (dummy_thread_func, glthread_in_use): Remove
16648         functions.
16649         * m4/threadlib.m4: New file, from m4/lock.m4, renaming gl_LOCK to
16650         gl_THREADLIB and gl_LOCK_EARLY to gl_THREADLIB_EARLY.
16651         * m4/lock.m4 (gl_LOCK_EARLY, gl_LOCK_EARLY_BODY, gl_LOCK_BODY): Remove
16652         macros.
16653         (gl_LOCK): Just require gl_THREADLIB and perform checks for lock.h.
16654         (gl_DISABLE_THREADS): Remove macro.
16655         * modules/lock (Files): Remove build-aux/config.rpath.
16656         (Depends-on): Remove havelib. Add threadlib.
16657         (configure.ac-early): Remove section.
16658         * m4/tls.m4 (gl_TLS): Require gl_THREADLIB instead of gl_LOCK.
16659         * modules/tls (Depends-on): Remove lock. Add threadlib.
16660         (Link): New section, copied from threadlib.
16661         * MODULES.html.sh (Multithreading): Add threadlib.
16662
16663 2008-08-14  Bruno Haible  <bruno@clisp.org>
16664
16665         * lib/glthread/lock.h (glthread_lock_lock, glthread_lock_unlock,
16666         glthread_lock_destroy, glthread_rwlock_rdlock, glthread_rwlock_wrlock,
16667         glthread_rwlock_unlock, glthread_rwlock_destroy,
16668         glthread_recursive_lock_lock, glthread_recursive_lock_unlock,
16669         glthread_recursive_lock_destroy): Define as macros always.
16670         * lib/glthread/lock.c (glthread_lock_lock_func): Renamed from
16671         glthread_lock_lock.
16672         (glthread_lock_unlock_func): Renamed from glthread_lock_unlock.
16673         (glthread_lock_destroy_func): Renamed from glthread_lock_destroy.
16674         (glthread_rwlock_rdlock_func): Renamed from glthread_rwlock_rdlock.
16675         (glthread_rwlock_wrlock_func): Renamed from glthread_rwlock_wrlock.
16676         (glthread_rwlock_unlock_func): Renamed from glthread_rwlock_unlock.
16677         (glthread_rwlock_destroy_func): Renamed from glthread_rwlock_destroy.
16678         (glthread_recursive_lock_lock_func): Renamed from
16679         glthread_recursive_lock_lock.
16680         (glthread_recursive_lock_unlock_func): Renamed from
16681         glthread_recursive_lock_unlock.
16682         (glthread_recursive_lock_destroy_func): Renamed from
16683         glthread_recursive_lock_destroy.
16684
16685 2008-08-14  Bruno Haible  <bruno@clisp.org>
16686
16687         * lib/glthread/lock.h: Renamed from lib/lock.h.
16688         * lib/glthread/lock.c: Renamed from lib/lock.c. Update includes.
16689         * lib/glthread/tls.h: Renamed from lib/tls.h.
16690         * lib/glthread/tls.c: Renamed from lib/tls.c. Update includes.
16691         * lib/fstrcmp.c: Update includes.
16692         * lib/strsignal.c: Update includes.
16693         * modules/lock (Files, Makefile.am): Update.
16694         (Include): Change to "glthread/lock.h".
16695         * modules/tls (Files, Makefile.am): Update.
16696         (Include): Change to "glthread/tls.h".
16697         * tests/test-lock.c: Update includes.
16698         * tests/test-tls.c: Update includes.
16699         * NEWS: Mention the renamed header files.
16700
16701 2008-08-11  Jim Meyering  <meyering@redhat.com>
16702
16703         * lib/fts_.h: Fix grammar (insert a missing "is") in a comment.
16704
16705 2008-08-11  Eric Blake  <ebb9@byu.net>
16706
16707         test-c-stack: avoid C99-ism
16708         * tests/test-c-stack.c (main): Fix whitespace, move declaration
16709         before statement.
16710         Reported by Alain Guibert.
16711
16712 2008-08-10  Jim Meyering  <meyering@redhat.com>
16713
16714         ensure that return value of uinttostr et al are not ignored
16715         * lib/inttostr.h (__GNUC_PREREQ): Define.
16716         (__attribute_warn_unused_result__): Define.
16717         (offtostr, imaxtostr, umaxtostr, uinttostr): Apply the attribute.
16718
16719 2008-08-07  Paolo Bonzini  <bonzini@gnu.org>
16720
16721         * lib/lock.c (glthread_recursive_lock_init_multithreaded)
16722         [!PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Fix typo.
16723
16724 2008-08-07  Jim Meyering  <meyering@redhat.com>
16725
16726         * m4/inet_pton.m4: Fix typo in comment: s/inet_ntop/inet_pton/.
16727
16728         * modules/mkstemp (License): Relicense under LGPLv2+.
16729         * modules/tempname (License): Likewise.
16730
16731 2008-08-06  Bruno Haible  <bruno@clisp.org>
16732
16733         * lib/poll.c (poll): Further micro-optimization.
16734
16735 2008-08-06  Jim Meyering  <meyering@redhat.com>
16736
16737         inet_pton.c: use locale-independent tolower
16738         * lib/inet_pton.c: Include <c-ctype.h> rather than <ctype.h>.
16739         (inet_pton6): Use c_tolower rather than tolower.
16740         * modules/inet_pton (Depends-on): Add c-ctype.
16741
16742 2008-08-06  Paolo Bonzini  <bonzini@gnu.org>
16743
16744         * lib/poll.c (poll): Avoid division when timeout is 0, cache
16745         _SC_OPEN_MAX, avoid repeated access to errno.  Check for nfd < 0.
16746
16747 2008-08-06  Jim Meyering  <meyering@redhat.com>
16748
16749         * modules/inet_pton (License): Relicense under LGPLv2+.
16750
16751 2008-08-03  Bruno Haible  <bruno@clisp.org>
16752
16753         Additional non-aborting API for lock and tls.
16754         * lib/lock.h: Include <errno.h>.
16755         (glthread_lock_init): New macro/function.
16756         (gl_lock_init): Define as wrapper around glthread_lock_init.
16757         (glthread_lock_lock): New macro/function.
16758         (gl_lock_lock): Define as wrapper around glthread_lock_lock.
16759         (glthread_lock_unlock): New macro/function.
16760         (gl_lock_unlock): Define as wrapper around glthread_lock_unlock.
16761         (glthread_lock_destroy): New macro/function.
16762         (gl_lock_destroy): Define as wrapper around glthread_lock_destroy.
16763         (glthread_rwlock_init): New macro/function.
16764         (gl_rwlock_init): Define as wrapper around glthread_rwlock_init.
16765         (glthread_rwlock_rdlock): New macro/function.
16766         (gl_rwlock_rdlock): Define as wrapper around glthread_rwlock_rdlock.
16767         (glthread_rwlock_wrlock): New macro/function.
16768         (gl_rwlock_wrlock): Define as wrapper around glthread_rwlock_wrlock.
16769         (glthread_rwlock_unlock): New macro/function.
16770         (gl_rwlock_unlock): Define as wrapper around glthread_rwlock_unlock.
16771         (glthread_rwlock_destroy): New macro/function.
16772         (gl_rwlock_destroy): Define as wrapper around glthread_rwlock_destroy.
16773         (glthread_recursive_lock_init): New macro/function.
16774         (gl_recursive_lock_init): Define as wrapper around
16775         glthread_recursive_lock_init.
16776         (glthread_recursive_lock_lock): New macro/function.
16777         (gl_recursive_lock_lock): Define as wrapper around
16778         glthread_recursive_lock_lock.
16779         (glthread_recursive_lock_unlock): New macro/function.
16780         (gl_recursive_lock_unlock): Define as wrapper around
16781         glthread_recursive_lock_unlock.
16782         (glthread_recursive_lock_destroy): New macro/function.
16783         (gl_recursive_lock_destroy): Define as wrapper around
16784         glthread_recursive_lock_destroy.
16785         (glthread_once): New macro/function.
16786         (gl_once): Define as wrapper around glthread_once.
16787         Update function declarations.
16788         * lib/lock.c (glthread_rwlock_init_multithreaded): Renamed from
16789         glthread_rwlock_init. Return error code.
16790         (glthread_rwlock_rdlock_multithreaded): Renamed from
16791         glthread_rwlock_rdlock. Return error code.
16792         (glthread_rwlock_wrlock_multithreaded): Renamed from
16793         glthread_rwlock_wrlock. Return error code.
16794         (glthread_rwlock_unlock_multithreaded): Renamed from
16795         glthread_rwlock_unlock. Return error code.
16796         (glthread_rwlock_destroy_multithreaded): Renamed from
16797         glthread_rwlock_destroy. Return error code.
16798         (glthread_recursive_lock_init_multithreaded): Renamed from
16799         glthread_recursive_lock_init. Return error code.
16800         (glthread_recursive_lock_lock_multithreaded): Renamed from
16801         glthread_recursive_lock_lock. Return error code.
16802         (glthread_recursive_lock_unlock_multithreaded): Renamed from
16803         glthread_recursive_lock_unlock. Return error code.
16804         (glthread_recursive_lock_destroy_multithreaded): Renamed from
16805         glthread_recursive_lock_destroy. Return error code.
16806         (glthread_once_call): Make static.
16807         (glthread_once_multithreaded): Renamed from glthread_once.
16808         * lib/tls.h: Include <errno.h>.
16809         (glthread_tls_key_init): New macro/function.
16810         (gl_tls_key_init): Define as wrapper around glthread_tls_key_init.
16811         (glthread_tls_set): New macro/function.
16812         (gl_tls_set): Define as wrapper around glthread_tls_set.
16813         (glthread_tls_key_destroy): New macro/function.
16814         (gl_tls_key_destroy): Define as wrapper around glthread_tls_key_destroy.
16815         Update function declarations.
16816         * lib/tls.c (glthread_tls_get_multithreaded): Renamed from
16817         glthread_tls_get.
16818         Suggested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
16819
16820 2008-08-04  Eric Blake  <ebb9@byu.net>
16821
16822         gnumakefile: use space, not TAB, outside of targets
16823         * top/GNUmakefile (_dummy): Fix whitespace error in prior edit.
16824
16825 2008-08-02  Jim Meyering  <meyering@redhat.com>
16826
16827         getdate.y: avoid locale-dependent date parsing failure
16828         In Turkish locales, getdate would fail to recognize keywords
16829         containing a lowercase "i".  The solution is not to rely on
16830         locale-sensitive case-conversion.
16831         * lib/getdate.y: Include <c-ctype.h> rather than <ctype.h>.
16832         (lookup_word): Use c_toupper in place of toupper.
16833         (yylex, get_date): Use c_ prefixed variants of isspace and isalpha, too.
16834         Reported by Vefa Bicakci <bicave@superonline.com> in
16835         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/14184>.
16836         * modules/getdate (Depends-on): Add c-ctype.
16837
16838 2008-08-02  Bruno Haible  <bruno@clisp.org>
16839
16840         * gnulib-tool (func_import): When updating or creating a .gitignore
16841         file, prepend each added line with a slash, and ignore leading slashes
16842         from the existing lines.
16843         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
16844
16845 2008-08-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16846
16847         Portability fix for GNU make 3.79.1.
16848         * top/GNUmakefile: Avoid 'else COND', which older GNU make
16849         versions do not understand.
16850
16851 2008-08-01  Bruno Haible  <bruno@clisp.org>
16852
16853         Work around bug of HP-UX 10.20 cc with -0.0 literal.
16854         * tests/test-isnanf.h (zero): New variable.
16855         (main): Avoid literal -0.0f.
16856         * tests/test-isnand.h (zero): New variable.
16857         (main): Avoid literal -0.0.
16858         * tests/test-isnanl.h (zero): New variable.
16859         (main): Avoid literal -0.0L.
16860         * tests/test-isnan.c (zerof, zerod, zerol): New variables.
16861         (test_float, test_double, test_long_double): Avoid literals -0.0f,
16862         -0.0, -0.0L.
16863         * tests/test-signbit.c (test_signbitf): Avoid literal -0.0f.
16864         (test_signbitd): Avoid literal -0.0.
16865         (test_signbitl): Avoid literal -0.0L.
16866         * tests/test-ceilf1.c (zero): New variable.
16867         (main): Avoid literal -0.0f.
16868         * tests/test-ceill.c (zero): New variable.
16869         (main): Avoid literal -0.0L.
16870         * tests/test-floorf1.c (zero): New variable.
16871         (main): Avoid literal -0.0f.
16872         * tests/test-floorl.c (zero): New variable.
16873         (main): Avoid literal -0.0L.
16874         * tests/test-roundf1.c (zero): New variable.
16875         (main): Avoid literal -0.0f.
16876         * tests/test-round1.c (zero): New variable.
16877         (main): Avoid literal -0.0.
16878         * tests/test-roundl.c (zero): New variable.
16879         (main): Avoid literal -0.0L.
16880         * tests/test-truncf1.c (zero): New variable.
16881         (main): Avoid literal -0.0f.
16882         * tests/test-trunc1.c (zero): New variable.
16883         (main): Avoid literal -0.0.
16884         * tests/test-truncl.c (zero): New variable.
16885         (main): Avoid literal -0.0L.
16886         * tests/test-frexp.c (zero): New variable.
16887         (main): Avoid literal -0.0.
16888         * tests/test-frexpl.c (zero): New variable.
16889         (main): Avoid literal -0.0L.
16890         * tests/test-ldexpl.c (zero): New variable.
16891         (main): Avoid literal -0.0L.
16892         * tests/test-snprintf-posix.h (have_minus_zero): Avoid literal -0.0.
16893         (zerod, zerol): New variables.
16894         (test_function): Avoid literals -0.0, -0.0L.
16895         * tests/test-sprintf-posix.h (have_minus_zero): Avoid literal -0.0.
16896         (zerod, zerol): New variables.
16897         (test_function): Avoid literals -0.0, -0.0L.
16898         * tests/test-vasnprintf-posix.c (have_minus_zero): Avoid literal -0.0.
16899         (zerod, zerol): New variables.
16900         (test_function): Avoid literals -0.0, -0.0L.
16901         * tests/test-vasprintf-posix.c (have_minus_zero): Avoid literal -0.0.
16902         (zerod, zerol): New variables.
16903         (test_function): Avoid literals -0.0, -0.0L.
16904         * tests/test-strtod.c (zero): New variable.
16905         (main): Avoid literal -0.0.
16906         Reported by Jonathan C. Patschke <jp@centtech.com>.
16907
16908 2008-07-31  Jim Meyering  <meyering@redhat.com>
16909
16910         sha256.h: correct definition of SHA224_DIGEST_SIZE
16911         * lib/sha256.h (SHA224_DIGEST_SIZE): Define to 28, not 24.
16912         Reported by Paulie Pena IV <paulie4@gmail.com>.
16913         Define as 224 / 8, rather than as a literal.
16914         (SHA256_DIGEST_SIZE): Define as 256/8 rather than equivalent literal.
16915         * lib/sha512.h (SHA384_DIGEST_SIZE): Likewise, define as equiv: 384/8.
16916         (SHA512_DIGEST_SIZE): Likewise, define as equivalent quotient: 512/8.
16917
16918 2008-07-31  Bruno Haible  <bruno@clisp.org>
16919
16920         * lib/regex_internal.h (BITSET_WORD_BITS): Make first conditional work
16921         on HP-UX 10.20 with "cc -Ae". Fix second conditional.
16922         Reported by Jonathan Patschke <jp@centtech.com>.
16923
16924 2008-07-31  Bruno Haible  <bruno@clisp.org>
16925
16926         * gnulib-tool (func_import): Make change from 2008-06-23 more robust.
16927         Reported by Paolo Bonzini <bonzini@gnu.org>.
16928
16929 2008-07-30  Eric Blake  <ebb9@byu.net>
16930
16931         test-strtod: allow compilation without -lm
16932         * tests/test-strtod.c (main): Avoid link dependence on fabs.
16933         Reported by Dennis Clarke <blastwave@gmail.com>.
16934
16935 2008-07-28  Jim Meyering  <meyering@redhat.com>
16936
16937         bootstrap: work also when there are no .po files in po/
16938         * build-aux/bootstrap (update_po_files): Complete the change
16939         that I began in bc960df8c789c878f1c1c54a28a3c2648dead8d9.
16940
16941 2008-07-27  Jim Meyering  <meyering@redhat.com>
16942
16943         * users.txt: Add zile.
16944
16945 2008-07-26  Ben Pfaff  <blp@gnu.org>
16946
16947         Add missing dependencies on new m4/exponent[fdl].m4 files.
16948         * modules/isnanf-nolibm: Add m4/exponentf.m4.
16949         * modules/isnand-nolibm: Add m4/exponentd.m4.
16950         * modules/isnanl-nolibm: Add m4/exponentl.m4.
16951         * modules/signbit-tests: Use m4/exponent[fdl].m4 instead of
16952         m4/isnan[fdl].m4, because the macros actually used moved.
16953         Reported by Jim Meyering.
16954
16955 2008-07-14  Ben Pfaff  <blp@gnu.org>
16956
16957         Add isinf module.
16958         * lib/isinf.c: New file.
16959         * lib/math.in.h: Define isinf macro if we have decided to replace
16960         it.
16961         * m4/isinf.m4: New file.
16962         * m4/math_h.m4: Initialize and substitute variables for isinf
16963         module.
16964         * modules/isinf: New file.
16965         * modules/isinf-tests: New file.
16966         * modules/math: Add substitutions for new module.
16967         * tests/test-isinf.c: New file.
16968         * doc/posix-functions/isinf.texi: Mention new module.
16969         * MODULES.html.sh: Mention new module.
16970
16971 2008-07-14  Ben Pfaff  <blp@gnu.org>
16972
16973         Factor out some macros for use by additional modules.
16974         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Move into new file
16975         exponentf.m4.
16976         * m4/isnand.m4 (gl_DOUBLE_EXPONENT_LOCATION): Move into new file
16977         exponentd.m4.
16978         * m4/isnanl.m4 (gl_LONG_DOUBLE_EXPONENT_LOCATION): Move into new
16979         file exponentl.m4.
16980         * m4/exponentf.m4: New file.
16981         * m4/exponentd.m4: New file.
16982         * m4/exponentl.m4: New file.
16983         * modules/isnanf: Use new file m4/exponentf.m4.
16984         * modules/isnand: Use new file m4/exponentd.m4.
16985         * modules/isnanl: Use new file m4/exponentl.m4.
16986
16987 2008-07-23  Ulrich Drepper  <drepper@redhat.com>
16988
16989         mktime.c: normalize tp->tm_isdst value to -1/0/1.
16990         * lib/mktime.c (__mktime_internal): Normalize tp->tm_isdst value.
16991         Reported by Michael Ringe <Michael.Ringe@gmx.de> in
16992         <http://sourceware.org/bugzilla/show_bug.cgi?id=6723>.
16993
16994         * lib/canonicalize-lgpl.c (__realpath): Avoid buffer overflow after
16995         readlink on platforms without PATH_MAX.
16996
16997 2008-07-21  Eric Blake  <ebb9@byu.net>
16998
16999         Warn, not fail, on stale version.
17000         * top/GNUmakefile (_curr-ver): Tone down previous patch.
17001
17002         Don't allow installation with stale devel version number.
17003         * top/GNUmakefile (_is-install-target): New macro.
17004         (_curr-ver): Forbid installation with stale version number.
17005
17006 2008-07-20  Bruno Haible  <bruno@clisp.org>
17007
17008         * modules/c-stack-tests (Makefile.am): Add LIBSIGSEGV to
17009         TESTS_ENVIRONMENT.
17010         * tests/test-c-stack2.sh: React differently if LIBSIGSEGV is in use.
17011
17012 2008-07-20  Bruno Haible  <bruno@clisp.org>
17013
17014         * lib/c-stack.h (c_stack_action): Add documentation.
17015         * lib/c-stack.c (c_stack_action): Remove incomplete documentation.
17016
17017 2008-07-20  Bruno Haible  <bruno@clisp.org>
17018
17019         * modules/canonicalize-lgpl (License): Relicense under LGPLv2+.
17020         * modules/readlink (License): Likewise.
17021
17022 2008-07-17  Eric Blake  <ebb9@byu.net>
17023
17024         * modules/c-stack (Link): Fix typo.
17025
17026         Make c-stack use libsigsegv, when available.
17027         * modules/c-stack (Depends-on): Add libsigsegv.
17028         * modules/c-stack-tests (Makefile.am): Link with libsigsegv, if
17029         needed.
17030         * lib/c-stack.c (SIGSTKSZ): Define fallback.
17031         (segv_handler, overflow_handler, c_stack_action)
17032         [HAVE_LIBSIGSEGV && !HAVE_XSI_STACK_OVERFLOW_HEURISTIC]: Add new
17033         implementation when libsigsegv is available, but only when using
17034         the library is necessary.
17035         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Add
17036         comment, explaining why XSI check fails on Linux.
17037         (gl_PREREQ_C_STACK): Supply LIBCSTACK, LTLIBCSTACK.
17038         * tests/test-c-stack2.sh: Tweak skip message.
17039         * NEWS: Document new link-time requirements.
17040
17041 2008-07-16  Eric Blake  <ebb9@byu.net>
17042
17043         c-stack: Expose false positives when not using libsigsegv.
17044         * modules/c-stack-tests (Files): Expand test.
17045         * tests/test-c-stack.c (main): Add means to conditionally trigger
17046         non-overflow SIGSEGV.
17047         * tests/test-c-stack2.sh: New file.
17048
17049 2008-07-14  Bruno Haible  <bruno@clisp.org>
17050
17051         * m4/libsigsegv.m4: Remove unneeded AC_PREREQ.
17052         Reported by Eric Blake.
17053
17054 2008-07-14  Sam Steingold  <sds@gnu.org>
17055             Bruno Haible  <bruno@clisp.org>
17056
17057         New module libsigsegv.
17058         * modules/libsigsegv: New file.
17059         * m4/libsigsegv.m4: New file, from GNU clisp sigsegv.m4 with
17060         modifications.
17061         * MODULES.html.sh (Signal handling): New section.
17062
17063 2008-07-14  Bruno Haible  <bruno@clisp.org>
17064
17065         * modules/unictype/ctype-* (Description): Add the word "function".
17066         Improves the resulting doc in MODULES.html.
17067
17068 2008-07-12  Ben Pfaff  <blp@gnu.org>
17069
17070         Add longlong module.
17071         * modules/longlong: New file.
17072
17073 2008-07-12  Bruno Haible  <bruno@clisp.org>
17074
17075         * m4/isnan.m4 (gl_ISNAN): When the replacement is used, set ISNAN_LIBM
17076         to empty.
17077
17078 2008-07-10  Ben Pfaff  <blp@gnu.org>
17079
17080         Add isnan module.
17081         * doc/posix-functions/isnan.texi: Mention new module.
17082         * lib/math.in.h: Define isnan macro if we have decided to replace
17083         it.
17084         * m4/isnan.m4: New file.
17085         * m4/isnanl.m4 (gl_FUNC_ISNANL): Factor out some code into new
17086         macro gl_BUILD_ISNANL so that isnan.m4 can use that functionality
17087         also.
17088         (gl_FUNC_ISNANL_NO_LIBM): Factor out same code, to reduce
17089         redundancy.
17090         * m4/math_h.m4: Initialize and substitute variables for isnan
17091         module.
17092         * modules/isnan: New file.
17093         * modules/isnan-tests: New file.
17094         * modules/math: Add substitutions for new module.
17095         * tests/test-isnan.c: New file.
17096         * MODULES.html.sh: Mention new module.
17097
17098 2008-07-10  Ben Pfaff  <blp@gnu.org>
17099
17100         Add isnanf module.
17101         * lib/isnanf.m4: New file.
17102         * m4/isnanf.m4 (gl_FUNC_ISNANF): New macro.
17103         (gl_HAVE_ISNANF_IN_LIBM): New macro.
17104         (gl_BUILD_ISNANF): New macro used by gl_FUNC_ISNANF,
17105         gl_FUNC_ISNANF_NO_LIBM, and gl_FUNC_ISNAN.
17106         * modules/isnanf: New file.
17107         * modules/isnanf-tests: New file.
17108         * modules/isnanf-nolibm-tests: Add tests/test-isnanf.h to list of
17109         files.
17110         * tests/test-isnanf-nolibm.c: factored most of its contents into
17111         new file tests/test-isnanf.h.
17112         * tests/test-isnanf.h: New file.
17113         * tests/test-isnanf.c: New file.
17114         * MODULES.html.sh: Mention new module.
17115         * doc/glibc-functions/isnanf.texi: Mention new module.
17116
17117 2008-07-10  Ben Pfaff  <blp@gnu.org>
17118
17119         Add isnand module.
17120         * lib/isnand.h: New file.
17121         * m4/isnand.m4 (gl_FUNC_ISNAND): New macro.
17122         (gl_FUNC_ISNAND_NO_LIBM): Split partially into new macro
17123         gl_HAVE_ISNAND_NO_LIBM so that gl_FUNC_ISNAND can use that
17124         functionality also.
17125         (gl_BUILD_ISNAND): New macro used by gl_FUNC_ISNAND,
17126         gl_FUNC_ISNAND_NO_LIBM, and gl_FUNC_ISNAN.
17127         (gl_HAVE_ISNAND_IN_LIBM): New macro.
17128         * modules/isnand: New file.
17129         * modules/isnand-tests: New file.
17130         * modules/isnand-nolibm-tests: Add tests/test-isnand.h to list of
17131         files.
17132         * tests/test-isnand-nolibm.c: factored most of its contents into
17133         new file tests/test-isnand.h.
17134         * tests/test-isnand.h: New file.
17135         * tests/test-isnand.c: New file.
17136         * MODULES.html.sh: Mention new module.
17137
17138 2008-07-10  Ben Pfaff  <blp@gnu.org>
17139
17140         * lib/isnanf.h: Rename lib/isnanf-nolibm.h.
17141         * lib/isnand.h: Rename lib/isnand-nolibm.h.
17142         * tests/test-isnanf.c: Rename tests/test-isnanf-nolibm.c.
17143         * tests/test-isnand.c: Rename tests/test-isnand-nolibm.c.
17144         * modules/isnanf-nolibm: Update references to renamed files.
17145         * modules/isnand-nolibm: Likewise.
17146         * modules/isnanf-nolibm-tests: Likewise.
17147         * modules/isnand-nolibm-tests: Likewise.
17148         * lib/frexp.c: Likewise.
17149         * lib/isfinite.c: Likewise.
17150         * lib/signbitd.c: Likewise.
17151         * lib/signbitf.c: Likewise.
17152         * lib/vasnprintf.c: Likewise.
17153         * tests/test-ceilf1.c: Likewise.
17154         * tests/test-ceilf2.c: Likewise.
17155         * tests/test-floorf1.c: Likewise.
17156         * tests/test-floorf2.c: Likewise.
17157         * tests/test-frexp.c: Likewise.
17158         * tests/test-round1.c: Likewise.
17159         * tests/test-round2.c: Likewise.
17160         * tests/test-roundf1.c: Likewise.
17161         * tests/test-strtod.c: Likewise.
17162         * tests/test-trunc1.c: Likewise.
17163         * tests/test-trunc2.c: Likewise.
17164         * tests/test-truncf1.c: Likewise.
17165         * tests/test-truncf2.c: Likewise.
17166         * NEWS: Mention the renamed header files.
17167
17168 2008-07-11  Jim Meyering  <meyering@redhat.com>
17169
17170         vc-list-files: make the last-resort awk code more portable
17171         * build-aux/vc-list-files: Don't rely on awk's "sub" command.
17172         /bin/awk from OpenSolaris 11's SUNWesu version 2008.03.22.10.56
17173         does not support it.
17174
17175 2008-07-10  Eric Blake  <ebb9@byu.net>
17176
17177         Work with tar's bootstrap.
17178         * gnulib-tool (func_emit_initmacro_end): Use m4_defn in the case
17179         where LIBSOURCES_DIR contains .#bootmp but must not be treated as
17180         an m4 comment.
17181
17182 2008-07-09  Jim Meyering  <meyering@redhat.com>
17183
17184         posix-shell.m4: fix typo that made this test malfunction
17185         * m4/posix-shell.m4: Remove capitalization in variable name.
17186
17187 2008-07-08  Bruno Haible  <bruno@clisp.org>
17188
17189         * m4/onceonly.m4: Update comments.
17190         Reported by Ben Pfaff <blp@cs.stanford.edu>.
17191
17192 2008-07-04  Jim Meyering  <meyering@redhat.com>
17193
17194         * users.txt: Add vc-dwim.
17195         (bison, coreutils): Use the gitweb URL.
17196
17197 2008-07-03  Jim Meyering  <meyering@redhat.com>
17198
17199         * users.txt: Add libffcall.  From Sam Steingold.
17200
17201 2008-07-03  OndÅ™ej Vašík  <ovasik@redhat.com>
17202
17203         getdate.y: do not ignore TZ with relative day, month or year offset
17204         * lib/getdate.y (get_date): Move the tz-handling block to follow the
17205         relative-date-handling, since otherwise, the latter would clobber the
17206         sole output (an updated Start value) of the tz-handling block.
17207         * tests/test-getdate.c: Tests for the fix
17208
17209 2008-07-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17210
17211         Recognize 'foo_LIBRARIES += libgnu.a'.
17212         * gnulib-tool (func_emit_lib_Makefile_am): Recognize if a
17213         makefile snippet has already specified an installation location,
17214         also using '+='.
17215
17216 2008-07-02  OndÅ™ej Vašík  <ovasik@redhat.com>
17217
17218         getdate.y: factor out common actions
17219         * lib/getdate.y (apply_relative_time, set_hhmmss): New functions.
17220         Use them in place of open-coded actions.
17221
17222 2008-07-01  Simon Josefsson  <simon@josefsson.org>
17223
17224         Add self-test for getdate module.
17225         * modules/getdate-tests: New file.
17226         * tests/test-getdate.c: New file.
17227
17228 2008-06-29  Bruno Haible  <bruno@clisp.org>
17229
17230         * gnulib-tool (func_import): Put gnulib-comp.m4 into .cvsignore or
17231         .gitignore.
17232         Reported by Sylvain Beucler <beuc@beuc.net>.
17233
17234 2008-06-29  Bruno Haible  <bruno@clisp.org>
17235
17236         * doc/gnulib-tool.texi (VCS Issues): Mention --no-vc-files option.
17237         * m4/gnulib-tool.m4: Update to match current gnulib-tool.
17238
17239 2008-06-29  Bruno Haible  <bruno@clisp.org>
17240
17241         * gnulib-tool (func_import): Recommend to put gnulib-cache.m4 into
17242         EXTRA_DIST.
17243         Reported by Sylvain Beucler <beuc@beuc.net>.
17244
17245 2008-06-26  Jim Meyering  <meyering@redhat.com>
17246
17247         make several modules depend on the "open" module
17248         This provides slightly increased consistency when opening-for-write
17249         the name of a non-directory spelled with a trailing slash.
17250         * modules/chdir-safer: Likewise.
17251         * modules/chown: Likewise.
17252         * modules/clean-temp: Likewise.
17253         * modules/copy-file: Likewise.
17254         * modules/fchdir: Likewise.
17255         * modules/fcntl-safer: Likewise.
17256         * modules/pipe: Likewise.
17257         * modules/utime: Likewise.
17258         Prompted by Eric Blake and Bruno Haible.
17259
17260 2008-06-24  Andreas Schwab  <schwab@suse.de>
17261
17262         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Don't test whether compound
17263         literals can be used as initializers for global variables.
17264
17265 2008-06-23  Eric Blake  <ebb9@byu.net>
17266
17267         Make gnulib-cache.m4 easier to diff.
17268         * gnulib-tool (func_import): Allow newlines when reading cached
17269         gl_MODULES, and generate newlines when creating gnulib-cache.m4.
17270
17271 2008-06-23  Bruno Haible  <bruno@clisp.org>
17272
17273         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): Remove macro.
17274         (gl_PREREQ_SIGPROCMASK): Don't invoke it.
17275         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): New macro, moved here from
17276         m4/signalblocking.m4.
17277         (gl_PREREQ_SIGACTION): Don't invoke it.
17278         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Invoke
17279         gl_PREREQ_SIG_HANDLER_H.
17280         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
17281         Don't check for sigaction here.
17282
17283 2008-06-23  Bruno Haible  <bruno@clisp.org>
17284
17285         * lib/fatal-signal.c (fatal_signal_handler): Update comment.
17286         (install_handlers): Don't set the SA_RESETHAND flag.
17287
17288 2008-06-23  Bruno Haible  <bruno@clisp.org>
17289
17290         * m4/sigaction.m4: Comment fixes.
17291         * lib/signal.in.h: Likewise.
17292
17293 2008-06-23  Eric Blake  <ebb9@byu.net>
17294
17295         Fix typo.
17296         * tests/test-sigaction.c (MASK_SA_FLAGS): Add missing operator.
17297
17298         Avoid SA_ namespace.
17299         * tests/test-sigaction.c (MASK_SA_FLAGS): Rename from SA_MASK.
17300         Reported by Ralf Wildenhues.
17301
17302         Avoid test failure due to SA_RESTORER.
17303         * tests/test-sigaction.c (SA_MASK): New macro.
17304         (main): Avoid failing due to extension flags being set.
17305         Reported by Jim Meyering.
17306
17307         Revert use of sig-handler.h in sigprocmask.c.
17308         * modules/sigprocmask (Files): Don't rely on sig-handler.h, since
17309         it requires the existence of struct sigaction.
17310         * lib/sigprocmask.c (handler_t): Restore typedef.
17311         (rpl_signal, old_handlers): Use local type.
17312
17313 2008-06-22  Bruno Haible  <bruno@clisp.org>
17314
17315         * tests/test-stdint.c: Disable the INTMAX_MAX preprocessor test
17316         conditionally.
17317         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
17318
17319 2008-06-22  Bruno Haible  <bruno@clisp.org>
17320
17321         * doc/posix-functions/siginterrupt.texi: Move note.
17322
17323         * lib/signal.in.h (SA_RESTART): New macro.
17324         * lib/sigaction.c: Update comment.
17325
17326         * m4/sigaction.m4 (gl_SIGACTION): Require gl_SIGNAL_H_DEFAULTS.
17327
17328         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): New macro.
17329         (gl_PREREQ_SIGPROCMASK): Invoke it.
17330         * m4/sigaction.m4 (gl_PREREQ_SIGACTION): Likewise.
17331
17332         * lib/nanosleep.c (rpl_nanosleep): Setup newact only when it is needed.
17333
17334         * lib/sigprocmask.c: Update a comment.
17335
17336 2008-06-21  Eric Blake  <ebb9@byu.net>
17337
17338         Use sigaction module rather than signal().
17339         * modules/c-stack (Depends-on): Add sigaction.
17340         * modules/fatal-signal (Depends-on): Likewise.
17341         * modules/nanosleep (Depends-on): Likewise.
17342         * modules/sigprocmask (Files): Add sig-handler.h.
17343         * modules/sigaction (Files): Likewise.
17344         * lib/sig-handler.h (get_handler): New file, suggested by Paul
17345         Eggert.
17346         * lib/c-stack.c (SIGACTION_WORKS): Simplify conditions.
17347         (c_stack_action) [!SIGACTION_WORKS]: Use sigaction, not signal.
17348         * lib/fatal-signal.c (uninstall_handlers, install_handlers)
17349         (init_fatal_signals): Likewise.
17350         * lib/nanosleep.c (rpl_nanosleep): Likewise.
17351         (siginterrupt): Delete fallback.
17352         * lib/sigprocmask.c (handler_t, old_handlers): Use sa_handler_t
17353         instead.
17354         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Drop check for
17355         siginterrupt.
17356
17357         New module sigaction, for mingw.
17358         * modules/sigaction: New module...
17359         * modules/sigaction-tests: ...and its test.
17360         * m4/sigaction.m4: New file.
17361         * lib/sigaction.c: Likewise.
17362         * tests/test-sigaction.c: Likewise.
17363         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Add sigaction variables.
17364         * modules/signal (Makefile.am): Likewise.
17365         * lib/signal.in.h (!@HAVE_SIGACTION@): Define replacements when
17366         needed.
17367         * doc/posix-headers/signal.texi (signal.h): Mention provided
17368         types.
17369         * doc/posix-functions/siginterrupt.texi (siginterrupt): Mention
17370         that sigaction is preferable.
17371         * doc/posix-functions/sigaction.texi (sigaction): Mention new
17372         module.
17373         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
17374         sigaction.
17375
17376         Improve robustness of sigprocmask by overriding signal.
17377         * lib/signal.in.h (rpl_signal): Override signal when sigprocmask
17378         is in use.
17379         * lib/sigprocmask.c (blocked_handler): Reinstall block handler.
17380         (SIGKILL, SIGSTOP): Provide fallbacks.
17381         (rpl_signal): Implement.
17382         (old_handlers, blocked_set): Mark volatile, since sigprocmask and
17383         signal can be called inside handlers.
17384
17385         Fix nanosleep module on mingw.
17386         * modules/nanosleep (Depends-on): Add sys_select.
17387         * lib/nanosleep.c (HAVE_SYS_SELECT_H): Rely on gnulib module.
17388
17389         Fix licensing of sigprocmask.
17390         * modules/raise (License): Relicense as LGPL.
17391
17392 2008-06-21  Bruno Haible  <bruno@clisp.org>
17393
17394         * lib/propername.c (proper_name_utf8): Don't use the transliterated
17395         result if it contains question marks.
17396         Reported by Michael Geng <linux@michaelgeng.de>.
17397
17398 2008-06-19  Bruno Haible  <bruno@clisp.org>
17399
17400         Fix CVS-ism.
17401         * doc/gnulib.texi: Include updated-stamp.texi.
17402         * doc/Makefile (GNULIB_TEXI_FILES): New variable.
17403         (updated-stamp.texi): New rule.
17404         (gnulib.info): Depend on it.
17405         * doc/.gitignore: Add updated-stamp.texi.
17406         Based on a patch by Thien-Thi Nguyen <ttn@gnuvola.org>.
17407
17408 2008-06-19  Bruno Haible  <bruno@clisp.org>
17409
17410         * doc/Makefile (gnulib.info): Update and simplify dependencies.
17411         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
17412
17413 2008-06-19  Eric Blake  <ebb9@byu.net>
17414
17415         Fix VPATH 'make dist' with GNU make and non-VCS tarball.
17416         * top/GNUmakefile (_curr-ver): Don't use $(srcdir) unnecessarily.
17417         Reported by Stepan Kasal.
17418
17419 2008-06-18  Bruno Haible  <bruno@clisp.org>
17420
17421         * lib/fatal-signal.c (init_fatal_signals): Add comment.
17422         Reported by Eric Blake.
17423
17424 2008-06-18  Eric Blake  <ebb9@byu.net>
17425
17426         Work around cygwin 1.5.25 strsignal bug.
17427         * tests/test-strsignal.c: Allow for const char *.
17428         * doc/glibc-functions/strsignal.texi (strsignal): Document the bug.
17429
17430 2008-06-18  Simon Josefsson  <simon@josefsson.org>
17431
17432         * users.txt: Update URL to article and add author/date
17433         information.
17434
17435 2008-06-17  Bruno Haible  <bruno@clisp.org>
17436
17437         New macro gl_DISABLE_THREADS.
17438         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Use value gl_use_threads_default
17439         if the user did not pass --enable-threads or --disable-threads option.
17440         (gl_DISABLE_THREADS): New macro.
17441         Reported by Eric Blake <ebb9@byu.net>.
17442
17443 2008-06-17  Bruno Haible  <bruno@clisp.org>
17444
17445         * lib/tls.h (gl_tls_key_init): Evaluate the destructor argument also
17446         when the macro ignores it.
17447         Based on a patch by Eric Blake <ebb9@byu.net>.
17448
17449 2008-06-17  Bruno Haible  <bruno@clisp.org>
17450
17451         * modules/tls (License): Change to LGPLv2+.
17452         Reported by Eric Blake.
17453
17454 2008-06-17  Eric Blake  <ebb9@byu.net>
17455
17456         Simplify c-stack prerequisites.
17457         * lib/c-stack.c (includes): Remove unused <sys/resource.h>.
17458         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Posix 200x
17459         no longer requires <ucontext.h> to exist.  Optimize setrlimit
17460         check.
17461         (gl_PREREQ_C_STACK): Remove check for unused getcontext and
17462         <sys/resource.h>.
17463
17464         Move c-stack test into testsuite.
17465         * modules/c-stack-tests: New file.
17466         * lib/c-stack.c [DEBUG]: Move test program...
17467         * tests/test-c-stack.c: ...into this new file.  Skip rather than
17468         fail test if sigaltstack is lacking.
17469         * tests/test-c-stack.sh: New driver file.
17470
17471 2008-06-16  Eric Blake  <ebb9@byu.net>
17472
17473         Use raise module consistently.
17474         * modules/fatal-signal (Depends-on): Add raise.
17475         * modules/sigprocmask (Depends-on): Likewise.
17476         * lib/fatal-signal.c (fatal_signal_handler): Rely on raise.
17477         * lib/sigprocmask.c (sigprocmask): Likewise.
17478         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
17479         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Likewise.
17480
17481         Fix compliance bug in sigpending.
17482         * lib/sigprocmask.c (sigpending): Return pending array via
17483         parameter, not return value.
17484
17485 2008-06-14  Eric Blake  <ebb9@byu.net>
17486
17487         Improve obstack-printf test code.
17488         * tests/test-obstack-printf.c (test_function): Fix comment, and
17489         simplify usage of obstack_* in macros.  Add a test for coverage.
17490         Reported by Bruno Haible.
17491
17492 2008-06-14  Bruno Haible  <bruno@clisp.org>
17493
17494         * lib/obstack_printf.c (obstack_vprintf): Define the stack-allocated
17495         array size as a constant, not as a const variable.
17496         * m4/obstack-printf.m4 (gl_FUNC_OBSTACK_PRINTF): Require
17497         AC_USE_SYSTEM_EXTENSIONS.
17498         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX): Likewise.
17499         Test whether the obstack_printf function actually exists.
17500         * modules/obstack-printf (Depends-on): Add extensions.
17501         (Include): Remove obstack.h.
17502         * modules/obstack-printf-posix (Depends-on): Add extensions.
17503         (Include): Remove obstack.h.
17504
17505 2008-06-13  Eric Blake  <ebb9@byu.net>
17506
17507         Add obstack-printf and obstack-printf-posix modules.
17508         * modules/obstack-printf: New file.
17509         * modules/obstack-printf-posix: Likewise.
17510         * MODULES.html.sh (Misc): Mention them.
17511         * doc/glibc-functions/obstack_printf.texi (obstack_printf):
17512         Likewise.
17513         * doc/glibc-functions/obstack_vprintf.texi (obstack_vprintf):
17514         Likewise.
17515         * modules/stdio (Makefile.am): Accomodate new modules.
17516         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
17517         * lib/stdio.in.h (rpl_obstack_printf, rpl_obstack_vprintf):
17518         Declare.
17519         * lib/obstack_printf.c (obstack_printf, obstack_vprintf): New
17520         functions.
17521         * m4/obstack-printf.m4 (gl_OBSTACK_PRINTF)
17522         (gl_REPLACE_OBSTACK_PRINTF): New macros
17523         * m4/obstack-printf-posix.m4 (gl_OBSTACK_PRINTF_POSIX): Likewise.
17524         * tests/test-obstack-printf.c: New file.
17525         * modules/obstack-printf-tests: Likewise.
17526         * modules/obstack-printf-posix-tests: Likewise.
17527
17528 2008-06-11  Bruno Haible  <bruno@clisp.org>
17529
17530         * m4/open.m4 (gl_FUNC_OPEN): Add test against trailing slash bug.
17531         * lib/open.c: Include errno.h.
17532         (open): Fail when attempting to write to a file that has a trailing
17533         slash.
17534         * tests/test-open.c (main): Test against trailing slash bug.
17535         * doc/posix-functions/open.texi: Mention the trailing slash bug.
17536
17537 2008-06-10  Bruno Haible  <bruno@clisp.org>
17538
17539         * tests/test-vc-list-files-git.sh: Make double use of 'exit'. Needed
17540         for $? to work inside the trap command, with various /bin/sh-s.
17541         * tests/test-vc-list-files-cvs.sh: Likewise.
17542
17543 2008-06-10  Bruno Haible  <bruno@clisp.org>
17544
17545         * lib/acl-internal.h: Don't include gettext.h here.
17546         * lib/set-mode-acl.c: Include gettext.h here.
17547         * lib/copy-acl.c: Likewise.
17548
17549 2008-06-10  Bruno Haible  <bruno@clisp.org>
17550
17551         * lib/wait-process.h (wait_subprocess): Add termsigp argument.
17552         * lib/wait-process.c (wait_subprocess): Likewise.
17553         * lib/execute.h (execute): Add termsigp argument.
17554         * lib/execute.c (execute): Likewise.
17555         * lib/csharpcomp.c (compile_csharp_using_pnet,
17556         compile_csharp_using_mono, compile_csharp_using_sscli): Update.
17557         * lib/csharpexec.c (execute_csharp_using_pnet,
17558         execute_csharp_using_mono, execute_csharp_using_sscli): Update.
17559         * lib/javacomp.c (compile_using_envjavac, compile_using_gcj,
17560         compile_using_javac, compile_using_jikes, is_envjavac_gcj,
17561         is_envjavac_gcj43, is_gcj_present, is_gcj_43, is_javac_present,
17562         is_jikes_present): Update.
17563         * lib/javaexec.c (execute_java_class): Update.
17564         * lib/javaversion.c (execute_and_read_line): Update.
17565         * NEWS: Document the changes.
17566         Reported by Eric Blake.
17567
17568 2008-06-10  Eric Blake  <ebb9@byu.net>
17569
17570         Add missing include.
17571         * tests/test-strstr.c (includes): Add <signal.h>.
17572         * tests/test-strcasestr.c (includes): Likewise.
17573         * tests/test-memmem.c (includes): Likewise.
17574
17575 2008-06-10  Bruno Haible  <bruno@clisp.org>
17576
17577         * lib/wait-process.c (wait_subprocess): Add an assertion.
17578
17579 2008-06-10  Bruno Haible  <bruno@clisp.org>
17580
17581         * lib/wait-process.c (wait_subprocess): Try to fix waitid() based code.
17582
17583 2008-06-10  Bruno Haible  <bruno@clisp.org>
17584
17585         * tests/test-memmem.c (main): Reset SIGALRM to default handling before
17586         using alarm().
17587         * tests/test-strcasestr.c (main): Likewise.
17588         * tests/test-strstr.c (main): Likewise.
17589
17590 2008-06-09  Bruno Haible  <bruno@clisp.org>
17591
17592         Work around the Solaris 10 ACE ACLs ABI change.
17593         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): Don't
17594         declare if ACL_NO_TRIVIAL is present.
17595         (ACE_ACCESS_ALLOWED_ACE_TYPE, ACE_ACCESS_DENIED_ACE_TYPE,
17596         NEW_ACE_OWNER, NEW_ACE_GROUP, NEW_ACE_IDENTIFIER_GROUP, ACE_EVERYONE,
17597         NEW_ACE_READ_DATA, NEW_ACE_WRITE_DATA, NEW_ACE_EXECUTE): New macros.
17598         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): Don't
17599         define if ACL_NO_TRIVIAL is present.
17600         (acl_ace_nontrivial): Detect whether the old or new ABI is in use,
17601         and use the current ABI.
17602         (file_has_acl): Use same #if condition as elsewhere.
17603         * lib/set-mode-acl.c (qset_acl): Detect whether the old or new ABI is
17604         in use, and use the current ABI.
17605         * doc/acl-resources.txt: More doc about newer Solaris 10 versions.
17606         Reported by Jim Meyering.
17607
17608 2008-06-09  Eric Blake  <ebb9@byu.net>
17609
17610         Work around environments that (stupidly) ignore SIGALRM.
17611         * m4/strstr.m4 (gl_FUNC_STRSTR): Reset SIGALRM to default handling
17612         before using alarm().
17613         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
17614         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
17615         Reported by Ian Beckwith <ianb@erislabs.net>.
17616
17617         Produce autobuild blurb earlier in log.
17618         * modules/autobuild (configure.ac-early): Move AB_INIT here.
17619
17620 2008-06-09  Jim Meyering  <meyering@redhat.com>
17621         and OndÅ™ej Vašík  <ovasik@redhat.com>
17622
17623         utimens.c: correct kernel bug work-around
17624         OndÅ™ej Vašík found that the invalid return value of 280 indicates
17625         failure, not success, and the kernel bug we're trying to work
17626         around affects not just the utimensat call, but also the fallback
17627         futimens call.
17628         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Simulate failure,
17629         not success.
17630         [HAVE_FUTIMENS]: Use the same work-around, here.
17631
17632 2008-06-09  Jim Meyering  <meyering@redhat.com>
17633
17634         add more guards around definition of ACE_-related code
17635         * lib/file-has-acl.c (acl_ace_nontrivial): Define only if
17636         ALLOW and ACE_OWNER are also defined.
17637
17638 2008-06-08  Bruno Haible  <bruno@clisp.org>
17639
17640         * lib/acl-internal.h: Add me as co-author.
17641         * lib/file-has-acl.c: Likewise.
17642         * lib/set-mode-acl.c: Likewise.
17643         * lib/copy-acl.c: Likewise.
17644
17645 2008-06-08  Bruno Haible  <bruno@clisp.org>
17646
17647         Add support for AIX ACLs.
17648         * lib/acl-internal.h (acl_nontrivial): New declaration.
17649         * lib/file-has-acl.c (acl_nontrivial): New function.
17650         (file_has_acl): Add implementation using AIX 4 ACL API.
17651         * lib/set-mode-acl.c (qset_acl): Likewise.
17652         * lib/copy-acl.c (qcopy_acl): Likewise.
17653
17654 2008-06-08  Bruno Haible  <bruno@clisp.org>
17655
17656         Add support for HP-UX ACLs.
17657         * lib/acl-internal.h (acl_nontrivial): New declaration.
17658         * lib/file-has-acl.c (acl_nontrivial): New function.
17659         (file_has_acl): Add implementation using HP-UX 11 ACL API.
17660         * lib/set-mode-acl.c (qset_acl): Likewise.
17661         * lib/copy-acl.c (qcopy_acl): Likewise.
17662
17663 2008-06-08  Bruno Haible  <bruno@clisp.org>
17664
17665         Add support for Cygwin ACLs.
17666         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro for Solaris-like API.
17667         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Don't optimize away
17668         the chmod_or_fchmod call.
17669         * lib/copy-acl.c (qcopy_acl) [!MODE_INSIDE_ACL]: Likewise.
17670
17671 2008-06-08  Bruno Haible  <bruno@clisp.org>
17672
17673         Fix bug with setuid modes in Solaris 10+ code.
17674         * lib/set-mode-acl.c (qset_acl): Call chmod_or_fchmod when acl_set
17675         succeeded, when the mode contains some special bits.
17676
17677 2008-06-08  Bruno Haible  <bruno@clisp.org>
17678
17679         Add support for Solaris 7..10 ACLs.
17680         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): New
17681         declarations.
17682         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): New
17683         functions.
17684         (file_has_acl): Add implementation using Solaris 7..10 ACL API.
17685         * lib/set-mode-acl.c (qset_acl): Likewise.
17686         * lib/copy-acl.c (qcopy_acl): Likewise.
17687
17688 2008-06-08  Bruno Haible  <bruno@clisp.org>
17689
17690         * lib/acl-internal.h (acl_extended_nontrivial) [MacOS X]: New
17691         declaration.
17692         * lib/file-has-acl.c (acl_extended_nontrivial) [MacOS X]: New function.
17693         (acl_access_nontrivial): Remove MacOS X case.
17694         (file_has_acl): Use acl_extended_nontrivial.
17695         * lib/copy-acl.c (qcopy_acl): Likewise.
17696
17697 2008-06-08  Bruno Haible  <bruno@clisp.org>
17698
17699         * lib/set-mode-acl.c (qset_acl): Trivial code simplifications.
17700
17701 2008-06-08  Jim Meyering  <meyering@redhat.com>
17702
17703         * modules/acl (Maintainer): Add Bruno Haible.
17704
17705 2008-06-07  Bruno Haible  <bruno@clisp.org>
17706
17707         Improve support for Tru64 ACLs.
17708         * lib/file-has-acl.c (file_has_acl): Don't test the ACL_TYPE_DEFAULT
17709         ACL on OSF/1.
17710
17711 2008-06-07  Bruno Haible  <bruno@clisp.org>
17712
17713         Add support for MacOS X ACLs.
17714         * lib/file-has-acl.c (file_has_acl): Use ACL_TYPE_EXTENDED instead of
17715         ACL_TYPE_ACCESS and ACL_TYPE_DEFAULT.
17716         * lib/set-mode-acl.c (qset_acl): Likewise.
17717         * lib/copy-acl.c (qcopy_acl): Likewise.
17718
17719 2008-06-07  Bruno Haible  <bruno@clisp.org>
17720
17721         Fix memory leak introduced on 2008-05-22.
17722         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Free ACLs after
17723         use.
17724
17725 2008-06-07  Bruno Haible  <bruno@clisp.org>
17726
17727         * lib/set-mode-acl.c (qset_acl): Use acl_init(), not acl_from_text(),
17728         to construct an empty ACL.
17729
17730 2008-06-07  Bruno Haible  <bruno@clisp.org>
17731
17732         * lib/set-mode-acl.c (chmod_or_fchmod): Document return value
17733         precisely.
17734         * lib/copy-acl.c (qcopy_acl): Trivial code simplifications.
17735
17736 2008-06-07  Bruno Haible  <bruno@clisp.org>
17737
17738         * lib/copy-acl.c (qcopy_acl): Make the #if branches independent.
17739         * lib/set-mode-acl.c (qset_acl): Choose better local variable names.
17740
17741 2008-06-07  Bruno Haible  <bruno@clisp.org>
17742
17743         * doc/posix-functions/_setjmp.texi: Explain the use of this function
17744         regardless of POSIX.
17745         * doc/posix-functions/_longjmp.texi: Likewise.
17746         * doc/posix-functions/setjmp.texi: Mention HP-UX as not counting as a
17747         SystemV platform in this case.
17748
17749 2008-06-06  Eric Blake  <ebb9@byu.net>
17750
17751         Document abort() bugs.
17752         * doc/posix-functions/abort.texi (abort): Mention anomalies.
17753
17754         * doc/posix-functions/setjmp.texi (setjmp): Mingw has setjmp.
17755         * doc/posix-functions/sigsetjmp.texi (sigsetjmp): Cygwin has
17756         sigsetjmp.
17757         * doc/posix-functions/siglongjmp.texi (siglongjmp): Cygwin has
17758         siglongjmp, but only as a macro.
17759         * doc/posix-functions/_longjmp.texi (_longjmp): Mention that this
17760         is obsolete.
17761         * doc/posix-functions/_setjmp.texi (_setjmp): Likewise.
17762
17763         Tweak documentation to cover cygwin argz bugs.
17764         * m4/argz.m4 (gl_FUNC_ARGZ): Mention date of last known cygwin
17765         argz bug fix; no code change needed since no cygwin releases
17766         occurred between the last fix and the bug being tested.
17767         * doc/glibc-functions/argz_add.texi (argz_add): Document the argz
17768         module and recently fixed cygwin bugs.
17769         * doc/glibc-functions/argz_add_sep.texi (argz_add_sep): Likewise.
17770         * doc/glibc-functions/argz_append.texi (argz_append): Likewise.
17771         * doc/glibc-functions/argz_count.texi (argz_count): Likewise.
17772         * doc/glibc-functions/argz_create.texi (argz_create): Likewise.
17773         * doc/glibc-functions/argz_create_sep.texi (argz_create_sep):
17774         Likewise.
17775         * doc/glibc-functions/argz_delete.texi (argz_delete): Likewise.
17776         * doc/glibc-functions/argz_extract.texi (argz_extract): Likewise.
17777         * doc/glibc-functions/argz_insert.texi (argz_insert): Likewise.
17778         * doc/glibc-functions/argz_next.texi (argz_next): Likewise.
17779         * doc/glibc-functions/argz_replace.texi (argz_replace): Likewise.
17780         * doc/glibc-functions/argz_stringify.texi (argz_stringify):
17781         Likewise.
17782
17783         Avoid gcc warning on cygwin.
17784         * lib/copy-acl.c (qcopy_acl) [!HAVE_ACL_GET_FILE &&
17785         !ACL_NO_TRIVIAL]: Avoid unused variable.
17786
17787 2008-06-05  Eric Blake  <ebb9@byu.net>
17788
17789         Be tolerant of UNKNOWN version in gnulib-tool test dir.
17790         * top/GNUmakefile (_dummy): Warn rather than reconfigure if
17791         git-version-gen fails to come up with a version.
17792         Reported by Simon Josefsson.
17793
17794 2008-06-05  Jim Meyering  <meyering@redhat.com>
17795             Paul Eggert  <eggert@cs.ucla.edu>
17796
17797         utimens.c: work around a probable Linux kernel bug
17798         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Work around what
17799         appears to be a kernel bug that causes utimensat to return 280
17800         instead of 0, indicating success.
17801
17802 2008-06-04  Bruno Haible  <bruno@clisp.org>
17803
17804         * lib/copy-acl.c (qcopy_acl): Call qset_acl, not set_acl. Fixes
17805         2008-06-01 commit.
17806
17807 2008-06-04  Bruno Haible  <bruno@clisp.org>
17808
17809         * lib/acl-internal.h (acl_access_nontrivial): New declaration.
17810         * lib/file-has-acl.c (acl_access_nontrivial): New function.
17811         (file_has_acl): Use it. Save errno afterwards.
17812         * lib/copy-acl.c (qcopy_acl): Use acl_access_nontrivial.
17813
17814 2008-06-03  Bruno Haible  <bruno@clisp.org>
17815
17816         * lib/file-has-acl.c (file_has_acl): Put Solaris 10 code after POSIX-
17817         draft code. Simplify #ifs.
17818         * lib/set-mode-acl.c (qset_acl): Don't test for symlink if !USE_ACL.
17819         Put Solaris code after POSIX-draft code. Fix comments regarding
17820         Solaris 10, HP-UX. Mention Cygwin.
17821         * lib/copy-acl.c (qcopy_acl): Simplify #ifs.
17822
17823 2008-06-03  Eric Blake  <ebb9@byu.net>
17824
17825         Provide fallback for older kernels.
17826         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT, HAVE_FUTIMENS]:
17827         Provide runtime fallback if kernel lacks support.
17828         Reported by Mike Frysinger.
17829
17830 2008-06-02  Bruno Haible  <bruno@clisp.org>
17831
17832         * lib/acl-internal.h (ACL_NOT_WELL_SUPPORTED): Include EOPNOTSUPP if
17833         it exists.
17834
17835 2008-06-02  Bruno Haible  <bruno@clisp.org>
17836
17837         * lib/acl_entries.c (acl_entries): Rewrite to use acl_get_entry.
17838         * lib/copy-acl.c (qcopy_acl): Update comment.
17839
17840 2008-06-02  Bruno Haible  <bruno@clisp.org>
17841
17842         * lib/acl-entries.h: Enclose most definitions in #ifs for POSIX-draft
17843         like ACL APIs.
17844
17845 2008-06-02  Bruno Haible  <bruno@clisp.org>
17846
17847         * tests/test-file-has-acl.sh: Use different code for Cygwin.
17848         * tests/test-set-mode-acl.sh: Likewise.
17849         * tests/test-copy-acl.sh: Likewise.
17850         * tests/test-copy-file.sh: Likewise.
17851
17852 2008-06-02  Bruno Haible  <bruno@clisp.org>
17853
17854         * tests/test-file-has-acl.sh: Remove unused code.
17855
17856 2008-06-01  Bruno Haible  <bruno@clisp.org>
17857
17858         * lib/copy-acl.c (qcopy_acl): New function, extracted from copy_acl.
17859         (copy_acl): Just a wrapper around qcopy_acl that emits the error
17860         messages.
17861         * lib/set-mode-acl.c (qset_acl): Document return value precisely.
17862
17863 2008-06-01  Bruno Haible  <bruno@clisp.org>
17864
17865         * m4/acl.m4 (gl_FUNC_ACL): Separate the POSIX-like and the Solaris
17866         tests. Test for libpacl, needed for OSF/1. Test for extended ACLs,
17867         needed for MacOS X. Test for HP-UX API. Test for newer and older AIX
17868         APIs.
17869         * modules/acl-tests (configure.ac): Remove tests now contained in
17870         m4/acl.m4.
17871
17872 2008-06-02  Jim Meyering  <meyering@redhat.com>
17873
17874         announce-gen: use a better key-server host name
17875         * build-aux/announce-gen (main): Recommend keys.gnupg.net, since
17876         it may be more consistently reliable.  Suggested by Werner Koch
17877         in <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/13717>.
17878
17879 2008-06-01  Bruno Haible  <bruno@clisp.org>
17880
17881         * lib/stdio-impl.h (fp_ub): Use fp_. Needed for DragonFly BSD.
17882         Reported by Voroskoi Andras <voroskoi@gmail.com>.
17883
17884 2008-06-01  Voroskoi Andras  <voroskoi@gmail.com>  (tiny change)
17885
17886         * lib/stdio-impl.h [__DragonFly__]: Fix typo.
17887
17888 2008-06-01  Bruno Haible  <bruno@clisp.org>
17889
17890         New ACL tests.
17891         * tests/test-file-has-acl.sh: New file.
17892         * tests/test-file-has-acl.c: New file.
17893         * tests/test-set-mode-acl.sh: New file.
17894         * tests/test-set-mode-acl.c: New file.
17895         * tests/test-copy-acl.sh: New file, based on tests/test-copy-file.sh.
17896         * tests/test-copy-acl.c: New file.
17897         * modules/acl-tests: New file, based on modules/copy-file-tests.
17898         * modules/copy-file-tests (Files): Remove tests/test-sameacls.c.
17899         (Depends-on): Add acl-tests.
17900         (configure.ac): Remove checks.
17901         (Makefile.am): Don't create test-sameacls program here any more.
17902
17903 2008-06-01  Bruno Haible  <bruno@clisp.org>
17904
17905         * tests/test-copy-file.sh: Portability fixes for Solaris, HP-UX, IRIX.
17906         * tests/test-sameacls.c: Include progname.h.
17907         (main): Invoke set_program_name. Portability fixes for MacOS X,
17908         Solaris, HP-UX.
17909
17910 2008-06-01  Bruno Haible  <bruno@clisp.org>
17911
17912         * lib/freadahead.c (freadahead) [__DragonFly__]: Use the __sreadahead
17913         function.
17914         Reported by VOROSKOI Andras <voroskoi@gmail.com>.
17915
17916 2008-06-01  Bruno Haible  <bruno@clisp.org>
17917
17918         * modules/rpmatch (Depends-on): Add strdup.
17919
17920 2008-06-01  Bruno Haible  <bruno@clisp.org>
17921
17922         * lib/pipe.c: Include unistd-safer.h.
17923         (create_pipe): Ensure the returned file descriptors are not in {0,1,2}.
17924         * modules/pipe (Depends-on): Add unistd-safer.
17925
17926 2008-05-30  Simon Josefsson  <simon@josefsson.org>
17927
17928         * modules/autobuild (configure.ac): Call AB_INIT.
17929
17930 2008-05-30  Simon Josefsson  <simon@josefsson.org>
17931
17932         * tests/test-getaddrinfo.c: Don't print debug messages by default.
17933         Suggested by Bruno Haible <bruno@clisp.org>.
17934
17935 2008-05-30  Simon Josefsson  <simon@josefsson.org>
17936
17937         * tests/test-base64.c: Cast size_t to unsigned long when invoking
17938         printf.  Use %lu instead of %d.  Reported by Bruno Haible
17939         <bruno@clisp.org>.
17940
17941 2008-05-29  Eric Blake  <ebb9@byu.net>
17942
17943         Prefer new POSIX 200x interfaces over futimesat.
17944         * m4/utimens.m4 (gl_UTIMENS): Check for futimens, utimensat.
17945         * lib/utimens.c (gl_futimens): Use them for nanosecond resolution
17946         when available.
17947         [HAVE_BUGGY_NFS_TIME_STAMPS]: Allow C89 compilation.
17948
17949 2008-05-28  Bruno Haible  <bruno@clisp.org>
17950
17951         * modules/stpcpy (License): Change to LGPLv2+.
17952         Requested by David Lutterkort <dlutter@redhat.com>.
17953
17954 2008-05-27  Bruno Haible  <bruno@clisp.org>
17955
17956         * lib/localename.c (SUBLANG_TIBETAN_BHUTAN): Force value 2. Needed for
17957         current mingw.
17958         Reported by Jose E. Marchesi <jemarch@gnu.org>.
17959
17960 2008-05-27  Bruno Haible  <bruno@clisp.org>
17961
17962         * modules/iconv_open (Link): New section, from module 'iconv'.
17963         * modules/striconv (Link): Likewise.
17964         * modules/striconveh (Link): Likewise.
17965         * modules/xstriconv (Link): Likewise.
17966         * modules/unicodeio (Link): Likewise.
17967         * modules/propername (Link): Likewise.
17968         Reported by Jim Meyering.
17969
17970 2008-05-26  Jim Meyering  <meyering@redhat.com>
17971
17972         sha256: do not artificially restrict buffer length to be < 2^32
17973         * lib/sha256.h (struct sha256_ctx) [buflen]: Change type from
17974         uint32_t to size_t.
17975         * lib/sha256.c (sha256_conclude_ctx): Change type of a local
17976         to match.
17977
17978         avoid unaligned access errors, e.g., on sparc
17979         * lib/sha512.c (sha512_conclude_ctx): Use set_uint64 rather than
17980         direct access through a possibly-unaligned uint64* pointer.
17981         * lib/sha256.c (sha256_conclude_ctx): Use set_uint32 rather than
17982         direct access through a possibly-unaligned uint32* pointer.
17983         Prompted by this patch from Tom "spot" Callaway:
17984         http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/13638
17985
17986         sha512.c: fix typo in comment
17987         * lib/sha512.c (sha512_conclude_ctx): Length is 128-bit, not 64-bit.
17988
17989 2008-05-25  Bruno Haible  <bruno@clisp.org>
17990
17991         * lib/set-mode-acl.c: Renamed from lib/acl.c.
17992         * modules/acl (Files): Add lib/set-mode-acl.c, remove lib/acl.c.
17993         (Makefile.am): Update lib_SOURCES.
17994
17995 2008-05-25  Bruno Haible  <bruno@clisp.org>
17996
17997         * m4/acl.m4 (gl_FUNC_ACL): Don't set LIB_ACL_TRIVIAL.
17998
17999 2008-05-25  Jim Meyering  <meyering@redhat.com>
18000
18001         useless-if-before-free: freed expr may have white-space differences
18002         * build-aux/useless-if-before-free: Recognize cases in which the
18003         freed expression differs from the tested one in embedded white
18004         space, e.g., if (p[i + 1]) free(p[i+1]).  Correct thinko in prev:
18005         $1 was used, so we can't make any regexp shy.  Improved tests now
18006         detect this.
18007
18008         useless-if-before-free: accept white space in the expression.
18009         * build-aux/useless-if-before-free: For now, any white space
18010         in the expression must be identical in the free argument.
18011
18012         useless-if-before-free: efficiency tweak
18013         * build-aux/useless-if-before-free: Make the expression-matching
18014         regexp "shy".
18015         Make the *outer* regexp shy, not the expr-matching one.
18016
18017         update code-in-comment to accept cast of free arg
18018         * build-aux/useless-if-before-free: Update regexp.
18019
18020 2008-05-25  Bruno Haible  <bruno@clisp.org>
18021
18022         * tests/test-sameacls.c: Renamed from tests/test-copy-file-sameacls.c.
18023         * modules/copy-file-tests (Files, Makefile.am): Update.
18024         * tests/test-copy-file.c (func_test_copy): Update.
18025
18026 2008-05-24  Andreas Färber  <andreas.faerber@web.de>  (tiny change)
18027
18028         * lib/stdbool.in.h [__HAIKU__]: Disable __BEOS__ workarounds.
18029
18030 2008-05-23  Bruno Haible  <bruno@clisp.org>
18031
18032         Improve support for ACLs on OSF/1.
18033         * lib/acl.c (qset_acl): For OSF/1, use a string that ends in a comma.
18034         Remove fallback for unknown flavors of ACLs.
18035
18036 2008-05-22  Bruno Haible  <bruno@clisp.org>
18037
18038         Add support for ACLs on OSF/1.
18039         * lib/acl-internal.h (acl_get_fd, acl_set_fd): New inline function
18040         replacements.
18041         (acl_free_text): New macro fallback.
18042         * lib/acl_entries.c (acl_entries): Use acl_free_text instead of
18043         acl_free.
18044         * m4/acl.m4 (gl_FUNC_ACL): Look also in libpacl library. Test for
18045         acl_free_text function. Require AC_C_INLINE.
18046
18047 2008-05-22  Bruno Haible  <bruno@clisp.org>
18048
18049         Make copy_acl work on MacOS X 10.5.
18050         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro.
18051         (ACL_NOT_WELL_SUPPORTED): On MacOS X, also handle ENOENT.
18052         * lib/acl.c (qset_acl): Add different code branch for !MODE_INSIDE_ACL.
18053         If MODE_INSIDE_ACL, don't assume that every system has the same text
18054         representation for ACLs as FreeBSD.
18055         * lib/copy-acl.c (copy_acl): Add support for platforms with
18056         !MODE_INSIDE_ACL.
18057         * lib/file-has-acl.c (file_has_acl): Likewise.
18058         * m4/acl.m4 (gl_FUNC_ACL): Test for some functions that are witness of
18059         FreeBSD, MacOS X, or IRIX, respectively.
18060
18061 2008-05-22  Bruno Haible  <bruno@clisp.org>
18062
18063         * lib/acl.h: Don't include <sys/acl.h>.
18064         (GETACLCNT): Move fallback to lib/acl-internal.h.
18065         * lib/acl-internal.h: Include <sys/acl.h> here.
18066         (GETACLCNT): New macro fallback, moved here from lib/acl.h.
18067
18068 2008-05-22  Bruno Haible  <bruno@clisp.org>
18069
18070         Split off copy_acl function to separate file.
18071         * lib/copy-acl.c: New file, extracted from lib/acl.c.
18072         * lib/acl.c (copy_acl): Moved function to separate file.
18073         * m4/acl.m4 (gl_FUNC_ACL): Remove unconditional AC_LIBOBJs.
18074         * modules/acl (Files): Add lib/copy-acl.c.
18075         (Makefiles.am): Augment lib_SOURCES.
18076
18077 2008-05-22  Bruno Haible  <bruno@clisp.org>
18078
18079         * modules/copy-file-tests: New file.
18080         * tests/test-copy-file.sh: New file.
18081         * tests/test-copy-file.c: New file.
18082         * tests/test-copy-file-sameacls.c: New file.
18083
18084 2008-05-22  Eric Blake  <ebb9@byu.net>
18085
18086         Avoid gcc warning.
18087         * tests/test-memcmp.c (main): Pass NULL indirectly.
18088
18089 2008-05-21  Bruno Haible  <bruno@clisp.org>
18090
18091         Add reference doc about ACLs.
18092         * doc/acl-resources.txt: New file.
18093         * doc/acl-cygwin.txt: New file.
18094
18095 2008-05-21  Bruno Haible  <bruno@clisp.org>
18096
18097         Avoid one more warning from gcc.
18098         * lib/vasnprintf.c (IF_LINT): Update comments.
18099         (VASNPRINTF): Use it also for the 'prefix' array initializer.
18100
18101 2008-05-21  Jim Meyering  <meyering@redhat.com>
18102
18103         avoid a warning from gcc
18104         * lib/vasnprintf.c (IF_LINT): Define.
18105         (scale10_round_decimal_long_double):
18106         Use it to avoid a "may be used uninitialized" warning.
18107         (scale10_round_decimal_double): Likewise.
18108
18109 2008-05-21  Simon Josefsson  <simon@josefsson.org>
18110
18111         * m4/memcmp.m4: When cross-compiling, assume memcmp works if it is
18112         declared.
18113
18114 2008-05-20  Bruno Haible  <bruno@clisp.org>
18115
18116         * tests/test-memcmp.c (main): Test also the sign of the result. Test
18117         against two known bugs; code taken from autoconf's AC_FUNC_MEMCMP.
18118
18119 2008-05-20  Simon Josefsson  <simon@josefsson.org>
18120
18121         * modules/memcmp-tests: New file.
18122         * tests/test-memcmp.c: New file.
18123
18124 2008-05-19  Bruno Haible  <bruno@clisp.org>
18125
18126         * modules/propername (Notice, configure.ac): Put quoted "..." into
18127         --keyword option.
18128         * lib/propername.h: Update comments accordingly.
18129         Reported by Eric Blake.
18130
18131 2008-05-19  Martin Lambers  <marlam@marlam.de>  (tiny change)
18132
18133         * modules/getpass-gnu (Depends-on): Add fseeko.
18134
18135 2008-05-19  Simon Josefsson  <simon@josefsson.org>
18136
18137         * modules/base64-tests: New file.
18138
18139 2008-05-19  Bo Borgerson <gigabo@gmail.com>
18140
18141         * lib/base64.c (base64_decode_ctx): If a decode context structure
18142         was passed in use it to ignore newlines.  If a context structure
18143         was _not_ passed in, continue to treat newlines as garbage (this
18144         is the historical behavior).  Formerly base64_decode.
18145         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
18146         takes a decode context structure.
18147         * lib/base64.h (base64_decode): Macro for four-argument calls.
18148         (base64_decode_alloc): Likewise.
18149         * lib/base64.c (base64_decode_ctx): If a decode context structure
18150         was passed in use it to ignore newlines.  If a context structure
18151         was _not_ passed in, continue to treat newlines as garbage (this
18152         is the historical behavior).  Formerly base64_decode.
18153         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
18154         takes a decode context structure.
18155         * lib/base64.h (base64_decode): Macro for four-argument calls.
18156         (base64_decode_alloc): Likewise.
18157
18158 2008-05-19  Jim Meyering  <meyering@redhat.com>
18159
18160         avoid a warning from gcc
18161         * lib/trim.c (IF_LINT): Define.
18162         (trim2): Use it to avoid a "may be used uninitialized" warning.
18163
18164         Fix doc typo.
18165         * doc/glibc-functions/getpass.texi (getpass): s/PATH_MAX/PASS_MAX/.
18166
18167 2008-05-19  Bruno Haible  <bruno@clisp.org>
18168
18169         * doc/glibc-functions/getpass.texi: Document limits of other
18170         implementations.
18171
18172 2008-05-19  Simon Josefsson  <simon@josefsson.org>
18173             Bruno Haible <bruno@clisp.org>
18174
18175         * doc/glibc-functions/getpass.texi: Document gnulib implementation.
18176
18177 2008-05-18  Bruno Haible  <bruno@clisp.org>
18178
18179         * modules/propername: New file, from GNU gettext.
18180         * lib/propername.h: New file, from GNU gettext.
18181         * lib/propername.c: New file, from GNU gettext.
18182         * MODULES.html.sh (Internationalization functions): Add propername.
18183
18184 2008-05-16  Jim Meyering  <meyering@redhat.com>
18185             Bruno Haible  <bruno@clisp.org>
18186
18187         Avoid some warnings from "gcc -Wshadow".
18188         * lib/vasnprintf.c (exp, remainder): Define to different identifiers.
18189
18190 2008-05-15  Eric Blake  <ebb9@byu.net>
18191
18192         Extend previous patch to cygwin 1.7.0.
18193         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a
18194         fast implementation in cygwin >= 1.7.0.
18195         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
18196         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
18197
18198 2008-05-15  Bruno Haible  <bruno@clisp.org>
18199
18200         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a fast
18201         implementation in glibc >= 2.9.
18202         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
18203         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
18204
18205 2008-05-15  Bruno Haible  <bruno@clisp.org>
18206
18207         * MODULES.html.sh (Internationalization functions): Remove linebreak.
18208         (Unicode string functions): Add unilbrk/*.
18209         Reported by Karl Berry.
18210
18211 2008-05-15  Eric Blake  <ebb9@byu.net>
18212
18213         Fix violation of <stdbool.h> replacement in regex.
18214         * lib/regcomp.c (re_compile_internal): Avoid implicit cast to bool.
18215         * lib/regexec.c (re_search_internal): Likewise.
18216         Reported by Heinrich Mislik <Heinrich.Mislik@univie.ac.at>.
18217
18218 2008-05-15  Jim Meyering  <meyering@redhat.com>
18219
18220         avoid distracting test output when git or cvs is not found
18221         * tests/test-vc-list-files-cvs.sh: Suppress 'init' error output.
18222         * tests/test-vc-list-files-git.sh: Likewise.
18223
18224 2008-05-15  Eric Blake  <ebb9@byu.net>
18225
18226         Glibc finally accepted the memmem speedup code, bugzilla #5514.
18227         * doc/glibc-functions/memmem.texi (memmem): Mention last broken
18228         glibc version.
18229         * doc/glibc-functions/strcasestr.texi (strcasestr): Likewise.
18230         * doc/posix-functions/strstr.texi (strstr): Likewise.
18231         * lib/str-two-way.h (MAX): Sychronize with glibc.
18232
18233 2008-05-15  Paolo Bonzini  <bonzini@gnu.org>
18234
18235         * lib/regcomp.c (optimize_utf8): Add a note on why we test
18236         opr.ctx_type.
18237         (calc_first): Initialize constraint field.
18238         (duplicate_node_closure): Use it instead of special casing ANCHORS.
18239         Fix grammar.
18240         (duplicate_node): Merge constraint field for all node types.
18241         (calc_eclosure_iter): Look at constraint field for all node types.
18242         * lib/regex_internal.c (create_cd_newstate): Don't look at
18243         opr.ctx_type.
18244
18245 2008-05-14  Bruno Haible  <bruno@clisp.org>
18246
18247         Help GCC to do better code generation.
18248         * lib/eealloc.h (eemalloc) [GCC >= 3]: Declare with attribute 'malloc'.
18249         * lib/pagealign_alloc.h (pagealign_alloc, pagealign_xalloc): Likewise.
18250         * lib/xalloc.h (ATTRIBUTE_MALLOC): New macro.
18251         (xmalloc, xzalloc, xcalloc, xmemdup, xstrdup, xnmalloc, xcharalloc):
18252         Declare with attribute 'malloc' if supported.
18253
18254 2008-05-14  Lasse Collin  <lasse.collin@tukaani.org>
18255
18256         use "echo STR|wc -c" rather than unportable "expr length STR"
18257         * build-aux/mktempd (mktempd): Vendor-supplied expr from at least
18258         OpenBSD 4.3 and Solaris 10 do not honor expr's "length" function.
18259
18260 2008-05-14  Jim Meyering  <meyering@redhat.com>
18261
18262         use dd ibs=$n count=1 ... rather than less-portable head -c$n
18263         * build-aux/mktempd (rand_bytes): head's -cN option is not accepted
18264         by Solaris 10's /bin/head or by the one from HP-UX 11.x.
18265         Reported in http://sourceforge.net/forum/message.php?msg_id=4960334
18266         via Collin Lasse.
18267
18268 2008-05-14  Eric Blake  <ebb9@byu.net>
18269
18270         Avoid quadratic growth in gl_LIBSOURCES.
18271         * gnulib-tool (func_emit_initmacro_done): s/\(m4_append\)_uniq/\1/.
18272         Suggested by Bruno Haible.
18273
18274         Test xmemdup0.
18275         * modules/xmemdup0-tests: New file.
18276         * tests/test-xmemdup0.c: Likewise.
18277
18278 2008-05-13  Eric Blake  <ebb9@byu.net>
18279
18280         Split xmemdup0 into its own module.
18281         * modules/xmemdup0: New file.
18282         * lib/xmemdup0.h: Likewise.
18283         * lib/xmemdup0.c: Likewise.
18284         * MODULES.html.sh (Memory management functions): Add xmemdup0.
18285         * lib/xalloc.h (xmemdup0): Remove.
18286         * lib/xmalloc.c (xmemdup0): Likewise.
18287
18288 2008-05-13  Eric Blake  <ebb9@byu.net>
18289             Bruno Haible  <bruno@clisp.org>
18290
18291         Reduce number of forks required during autoconf.
18292         * gnulib-tool (func_emit_initmacro_start): Prepare gl_LIBSOURCES_LIST
18293         and gl_LIBSOURCES_DIR.
18294         (func_emit_initmacro_end): Use them here in a single m4_syscmd...
18295         (func_emit_initmacro_done) <gl_LIBSOURCES>: ...rather than in one
18296         m4_syscmd per file.
18297         <m4_foreach_w>: Move...
18298         * m4/gnulib-common.m4 (m4_foreach_w): ...here.
18299
18300 2008-05-13  Eric Blake  <ebb9@byu.net>
18301
18302         * gnulib-tool: Fix various comment typos.
18303
18304 2008-05-12  Bruno Haible  <bruno@clisp.org>
18305
18306         Tailor the linebreaking algorithm.
18307         * lib/unilbrk/tables.c (unilbrk_table): Change (IS,AL) entry.
18308
18309 2008-05-12  Bruno Haible  <bruno@clisp.org>
18310
18311         Update to Unicode 5.0.0.
18312         * lib/unilbrk/tables.h (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
18313         LBP_JV, LBP_JT. Redistribute values.
18314         (unilbrk_table): Change size.
18315         * lib/unilbrk/tables.c (unilbrk_table): Change size. Update to match
18316         Unicode TR#14 rev. 22.
18317         * lib/unilbrk/gen-lbrk.c (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
18318         LBP_JV, LBP_JT. Redistribute values.
18319         (get_lbp): Update to match Unicode TR#14 rev. 21/22 and Unicode 5.0.0.
18320         (debug_output_lbp, fill_org_lbp, debug_output_org_lbp, output_lbp):
18321         Update.
18322         * lib/unilbrk/lbrkprop1.h: Regenerated.
18323         * lib/unilbrk/lbrkprop2.h: Regenerated.
18324         * lib/unilbrk/u8-possible-linebreaks.c (u8_possible_linebreaks):
18325         Change handling of LBP_CM after LBP_ZW. Update for new value of LBP_BK.
18326         * lib/unilbrk/u16-possible-linebreaks.c (u16_possible_linebreaks):
18327         Likewise.
18328         * lib/unilbrk/u32-possible-linebreaks.c (u32_possible_linebreaks):
18329         Likewise.
18330         * tests/unilbrk/test-u8-possible-linebreaks.c (main): Update expected
18331         result.
18332         * tests/unilbrk/test-u16-possible-linebreaks.c (main): Likewise.
18333         * tests/unilbrk/test-u32-possible-linebreaks.c (main): Likewise.
18334         * tests/unilbrk/test-ulc-possible-linebreaks.c (main): Likewise.
18335         * tests/unilbrk/test-u8-width-linebreaks.c (main): Likewise.
18336         * tests/unilbrk/test-u16-width-linebreaks.c (main): Likewise.
18337         * tests/unilbrk/test-u32-width-linebreaks.c (main): Likewise.
18338
18339 2008-05-11  Bruno Haible  <bruno@clisp.org>
18340
18341         * lib/unilbrk/gen-lbrk.c (output_lbp): Fix whitespace.
18342
18343 2008-05-11  Bruno Haible  <bruno@clisp.org>
18344
18345         * lib/unilbrk/gen-lbrk.c: New file, from GNU gettext (gen-lbrkprop.c).
18346         * modules/unilbrk/gen-lbrk: New file.
18347
18348 2008-05-11  Bruno Haible  <bruno@clisp.org>
18349
18350         * m4/sha256.m4 (gl_SHA256): Require AC_C_INLINE.
18351         * m4/sha512.m4 (gl_SHA512): Likewise.
18352
18353 2008-05-11  Jim Meyering  <meyering@redhat.com>
18354
18355         New modules: crypto/sha256, crypto/sha512 (from coreutils)
18356         * modules/crypto/sha256: New file.
18357         * modules/crypto/sha512: Likewise.
18358         * lib/sha256.c: Likewise.
18359         * lib/sha256.h: Likewise.
18360         * lib/sha512.c: Likewise.
18361         * lib/sha512.h: Likewise.
18362         * lib/u64.h: Likewise.
18363         * m4/sha256.m4: Likewise.
18364         * m4/sha512.m4: Likewise.
18365         * MODULES.html.sh (Cryptographic computations (low-level)): List them.
18366
18367 2008-05-10  Bruno Haible  <bruno@clisp.org>
18368
18369         * MODULES.html.sh (Environment variables <stdlib.h>): Add unsetenv.
18370         (Input/Output <stdio.h>): Add xprintf.
18371         (Signal handling <signal.h>): Add strsignal.
18372         (Cryptographic computations (high-level)): Add crypto/gc-camellia.
18373         (Core language properties): Add func.
18374         (Mathematics <math.h>): Add ceil, floor, frexp-nolibm.
18375         (Support for systems lacking POSIX:2001): Add environ, EOVERFLOW,
18376         strings.
18377         (Enhancements for POSIX:2001 functions): Add iconv_open-utf.
18378         (Input/output): New section.
18379         (File system functions): Add openat-die, stat-macros.
18380         (Networking functions): Add sockets.
18381         (Unicode string functions): Add unictype/*.
18382         (Support for building libraries and executables): Add gperf.
18383         (Support for building documentation): Add agpl-3.0.
18384         (Misc): Add nocrash.
18385
18386 2008-05-10  Bruno Haible  <bruno@clisp.org>
18387
18388         * modules/unictype/gen-ctype: New file.
18389
18390 2008-05-10  Jim Meyering  <meyering@redhat.com>
18391
18392         Make chdir-safer.c more efficient on a system with no symlinks.
18393         * lib/chdir-safer.c (chdir_no_follow): Skip lstat and fstat calls
18394         also if ELOOP is zero.  Suggested by Bruno Haible.
18395
18396         Make chdir-safer.c slightly safer.
18397         * lib/chdir-safer.c (chdir_no_follow): Test HAVE_WORKING_O_NOFOLLOW,
18398         not O_NOFOLLOW, in case the latter is nonzero and open ignores it.
18399
18400         Avoid compile failure on systems without ELOOP (like mingw).
18401         * lib/chdir-safer.c (ELOOP): Define if not already defined.
18402         Reported by Bruno Haible.
18403
18404 2008-05-10  Bruno Haible  <bruno@clisp.org>
18405
18406         * lib/unilbrk/ulc-common.c: Include c-strcaseeq.h instead of streq.h.
18407         (is_utf8_encoding): Use a case-insensitive comparison.
18408         * modules/unilbrk/ulc-common (Depends-on): Add c-strcaseeq. Remove
18409         streq.
18410
18411 2008-05-10  Bruno Haible  <bruno@clisp.org>
18412
18413         * lib/unilbrk/ulc-common.c: Don't include <stdlib.h>.
18414         (iconv_string_length, iconv_string_keeping_offsets): Remove functions.
18415         * lib/unilbrk/ulc-common.h (iconv_string_length,
18416         iconv_string_keeping_offsets): Remove declarations.
18417         * lib/unilbrk/ulc-possible-linebreaks.c: Include <string.h>, uniconv.h.
18418         Don't include <iconv.h>, streq.h, xsize.h.
18419         (ulc_possible_linebreaks): Use u8_conv_from_encoding for doing the
18420         conversion.
18421         * lib/unilbrk/ulc-width-linebreaks.c: Include uniconv.h. Don't include
18422         <iconv.h>, streq.h, xsize.h.
18423         (ulc_width_linebreaks): Use u8_conv_from_encoding for doing the
18424         conversion.
18425         * modules/unilbrk/ulc-common (Depends-on): Remove iconv.
18426         * modules/unilbrk/ulc-possible-linebreaks (Depends-on): Add
18427         uniconv/u8-conv-from-enc. Remove iconv_open, streq, xsize.
18428         * modules/unilbrk/ulc-width-linebreaks (Depends-on): Likewise.
18429
18430 2008-05-10  Bruno Haible  <bruno@clisp.org>
18431
18432         * modules/unilbrk/ulc-width-linebreaks-tests: New file.
18433         * tests/unilbrk/test-ulc-width-linebreaks.c: New file.
18434
18435         * modules/unilbrk/u32-width-linebreaks-tests: New file.
18436         * tests/unilbrk/test-u32-width-linebreaks.c: New file.
18437
18438         * modules/unilbrk/u16-width-linebreaks-tests: New file.
18439         * tests/unilbrk/test-u16-width-linebreaks.c: New file.
18440
18441         * modules/unilbrk/u8-width-linebreaks-tests: New file.
18442         * tests/unilbrk/test-u8-width-linebreaks.c: New file.
18443
18444         * modules/unilbrk/ulc-possible-linebreaks-tests: New file.
18445         * tests/unilbrk/test-ulc-possible-linebreaks.c: New file.
18446
18447         * modules/unilbrk/u32-possible-linebreaks-tests: New file.
18448         * tests/unilbrk/test-u32-possible-linebreaks.c: New file.
18449
18450         * modules/unilbrk/u16-possible-linebreaks-tests: New file.
18451         * tests/unilbrk/test-u16-possible-linebreaks.c: New file.
18452
18453         * modules/unilbrk/u8-possible-linebreaks-tests: New file.
18454         * tests/unilbrk/test-u8-possible-linebreaks.c: New file.
18455
18456 2008-05-10  Bruno Haible  <bruno@clisp.org>
18457
18458         Split up 'linebreak' module.
18459         * lib/unilbrk.h: New file, based on lib/linebreak.h.
18460         * lib/unilbrk/lbrkprop1.h: New file, extracted from lib/lbrkprop.h.
18461         * lib/unilbrk/lbrkprop2.h: New file, renamed from lib/lbrkprop.h with
18462         modifications.
18463         * lib/unilbrk/tables.h: New file, extracted from lib/linebreak.c.
18464         * lib/unilbrk/tables.c: New file, extracted from lib/linebreak.c.
18465         * lib/unilbrk/u8-possible-linebreaks.c: New file, extracted from
18466         lib/linebreak.c.
18467         * lib/unilbrk/u16-possible-linebreaks.c: New file, extracted from
18468         lib/linebreak.c.
18469         * lib/unilbrk/u32-possible-linebreaks.c: New file, extracted from
18470         lib/linebreak.c.
18471         * lib/unilbrk/ulc-common.h: New file, extracted from lib/linebreak.c.
18472         * lib/unilbrk/ulc-common.c: New file, extracted from lib/linebreak.c.
18473         * lib/unilbrk/ulc-possible-linebreaks.c: New file, extracted from
18474         lib/linebreak.c.
18475         * lib/unilbrk/u8-width-linebreaks.c: New file, extracted from
18476         lib/linebreak.c.
18477         * lib/unilbrk/u16-width-linebreaks.c: New file, extracted from
18478         lib/linebreak.c.
18479         * lib/unilbrk/u32-width-linebreaks.c: New file, extracted from
18480         lib/linebreak.c.
18481         * lib/unilbrk/ulc-width-linebreaks.c: New file, extracted from
18482         lib/linebreak.c.
18483         * modules/unilbrk/base: New file.
18484         * modules/unilbrk/tables: New file.
18485         * modules/unilbrk/u8-possible-linebreaks: New file.
18486         * modules/unilbrk/u16-possible-linebreaks: New file.
18487         * modules/unilbrk/u32-possible-linebreaks: New file.
18488         * modules/unilbrk/ulc-common: New file.
18489         * modules/unilbrk/ulc-possible-linebreaks: New file.
18490         * modules/unilbrk/u8-width-linebreaks: New file.
18491         * modules/unilbrk/u16-width-linebreaks: New file.
18492         * modules/unilbrk/u32-width-linebreaks: New file.
18493         * modules/unilbrk/ulc-width-linebreaks: New file.
18494         * lib/linebreak.h: Remove file.
18495         * lib/linebreak.c: Remove file.
18496         * m4/linebreak.m4: Remove file.
18497         * modules/linebreak: Remove file.
18498         * NEWS: Mention the changes.
18499
18500 2008-05-09  Eric Blake  <ebb9@byu.net>
18501
18502         Add xmemdup0.
18503         * lib/xalloc.h (xmemdup0): New prototype and C++ typesafe
18504         implementation.
18505         * lib/xmalloc.c (xmemdup0): New C implementation.
18506
18507 2008-05-08  Bruno Haible  <bruno@clisp.org>
18508
18509         * m4/wctype.m4 (gl_WCTYPE_H): Correct indentation.
18510
18511 2008-05-07  Eric Blake  <ebb9@byu.net>
18512
18513         Support cross-compilation of <wctype.h>.
18514         * m4/wctype.m4 (gl_WCTYPE_H): Fix improper nesting in
18515         AC_CACHE_CHECK.
18516
18517 2008-05-06  Soren Hansen  <soren@ubuntu.com>  (tiny change)
18518
18519         * build-aux/vc-list-files: Add support for bzr.
18520
18521 2008-05-03  Jim Meyering  <meyering@redhat.com>
18522
18523         avoid failed assertion with tight malloc
18524         * tests/test-getndelim2.c: Correct an off-by-one assertion.
18525
18526 2008-05-03  Simon Josefsson  <simon@josefsson.org>
18527
18528         * m4/inet_pton.m4: Set HAVE_DECL_INET_PTON to 0 when declarations
18529         are needed from arpa/inet.h.
18530         * m4/inet_ntop.m4: Likewise, for HAVE_DECL_INET_NTOP.
18531         Reported by Bruno Haible.
18532
18533 2008-05-02  Jim Meyering  <meyering@redhat.com>
18534
18535         avoid compilation error on FreeBSD 6
18536         * tests/test-getaddrinfo.c [!defined EAI_NODATA] (EAI_NODATA): Define.
18537
18538 2008-05-01  Jim Meyering  <meyering@redhat.com>
18539
18540         useless-if-before-free: correct --help's exit status description
18541         * build-aux/useless-if-before-free (usage): Like grep, exit 0
18542         for one or more matches, etc.  Reported by Bruno Haible.
18543
18544         vc-list-files: make the stand-alone gnulib test work
18545         * modules/vc-list-files-tests (configure.ac):
18546         Define and AC_SUBST abs_aux_dir.
18547         (Makefile.am) [TESTS_ENVIRONMENT]: Rather than passing
18548         $(abs_top_srcdir) to each script and having each of them
18549         duplicate the work of setting PATH, set PATH here, using
18550         the new variable, abs_aux_dir instead.
18551         * tests/test-vc-list-files-cvs.sh: Don't set PATH here.
18552         * tests/test-vc-list-files-git.sh: Likewise.
18553         Reported by Bruno Haible.
18554
18555 2008-05-01  Bruno Haible  <bruno@clisp.org>
18556
18557         * lib/getndelim2.c (getndelim2): Fix newsize computation during
18558         reallocation. Rename 'done' to 'found_delimiter'.
18559
18560 2008-05-01  Jim Meyering  <meyering@redhat.com>
18561
18562         vc-list-files: accommodate /bin/sh like the one from Solaris 10
18563         * build-aux/vc-list-files: Use `...`, not $(...).
18564
18565 2008-04-30  Jim Meyering  <meyering@redhat.com>
18566
18567         add tests for vc-list-files
18568         * modules/vc-list-files-tests: New module.
18569         * tests/test-vc-list-files-cvs.sh: New file.
18570         * tests/test-vc-list-files-git.sh: New file.
18571
18572         avoid a warning from gcc
18573         * lib/getndelim2.c (IF_LINT): Define.
18574         (getndelim2): Use it to avoid a "may be used uninitialized" warning.
18575
18576         vc-list-files: work properly with build-aux/cvsu, too
18577         * build-aux/vc-list-files: Hoist the "./"-removing code to apply
18578         to all cvs-based clauses.
18579
18580         vc-list-files: work properly in the CVS+awk case, too
18581         * build-aux/vc-list-files: In the CVS+awk case, remove "./" prefix.
18582
18583         vc-list-files: avoid use of ${*-*} that fails when /bin/sh is dash
18584         * build-aux/vc-list-files: Simplify ${*-*} to $dir, since we no longer
18585         take more than one file argument, so .  Add quotes, just in case $dir
18586         ever contains a shell meta-character.  Prompted by Soren Hansen in
18587         <http://thread.gmane.org/gmane.comp.emulators.libvirt/6221/focus=6240>.
18588
18589 2008-04-29  Eric Blake  <ebb9@byu.net>
18590
18591         Optimize getndelim2 to use block operations when possible.
18592         * modules/getndelim2 (Depends-on): Add stdbool, freadptr,
18593         freadseek, and memchr2.
18594         * lib/getndelim2.c (getndelim2): Use them for block reads.
18595
18596 2008-04-29  Bruno Haible  <bruno@clisp.org>
18597
18598         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_USE_SYSTEM_EXTENSIONS.
18599         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
18600         * modules/inet_ntop (Depends-on): Add extensions.
18601         * modules/inet_pton (Depends-on): Likewise.
18602         Reported by Simon Josefsson.
18603
18604 2008-04-29  Jim Meyering  <meyering@redhat.com>
18605
18606         When the is more than one match in a block, match all of them.
18607         * build-aux/useless-if-before-free: Iterate through each block
18608         until there are no more matches.
18609
18610         Fix broken useless-if-before-free script.
18611         * build-aux/useless-if-before-free: Fix typo: missing "?" after
18612         the expression to match cast of argument to free-like function.
18613
18614 2008-04-29  Eric Blake  <ebb9@byu.net>
18615
18616         Use new header.
18617         * lib/getaddrinfo.c (includes): s/"inet_ntop.h"/<arpa/inet.h>/.
18618
18619 2008-04-29  Jim Meyering  <meyering@redhat.com>
18620
18621         Avoid test segfault on x86_64 due to lack of inet_ntop declaration.
18622         * tests/test-getaddrinfo.c: Include <arpa/inet.h>, now guaranteed
18623         by gnulib to exist and to declare e.g., inet_ntop.
18624         Don't include "inet_ntop.h", now removed.
18625
18626         * m4/arpa_inet_h.m4: Remove trailing blanks.
18627
18628 2008-04-29  Eric Blake  <ebb9@byu.net>
18629
18630         Silence valgrind on safe reads beyond potential array bounds.
18631         * lib/rawmemchr.valgrind: New file.
18632         * lib/strchrnul.valgrind: Likewise.
18633         * modules/rawmemchr (Files): Distribute new file.
18634         * modules/strchrnul (Files): Likewise.
18635         Suggested by Bruno Haible.
18636
18637 2008-04-29  Bruno Haible  <bruno@clisp.org>
18638
18639         * lib/arpa_inet.in.h: Include system's <arpa/inet.h> if it exists.
18640         (inet_ntop, inet_pton): Change portability warning's wording.
18641         * m4/arpa_inet_h.m4 (gl_HEADER_ARPA_INET): Set HAVE_ARPA_INET_H.
18642         Invoke gl_CHECK_NEXT_HEADERS.
18643         (gl_ARPA_INET_H_DEFAULTS): Initialize ARPA_INET_H.
18644         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_ARPA_INET_H_DEFAULTS and
18645         set ARPA_INET_H.
18646         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
18647         * modules/arpa_inet (Description): No longer only for systems that
18648         lack it.
18649         (Depends-on): Add include_next.
18650         (Makeile.am): Substitute INCLUDE_NEXT, NEXT_ARPA_INET_H,
18651         HAVE_ARPA_INET_H.
18652
18653 2008-04-29  Jim Meyering  <meyering@redhat.com>
18654
18655         * modules/mkdir (License): Re-license as LGPLv2+.
18656
18657 2008-04-29  Bruno Haible  <bruno@clisp.org>
18658
18659         * modules/rawmemchr (Maintainer): Set to Eric.
18660         * modules/strchrnul (Maintainer): Likewise.
18661
18662 2008-04-29  Simon Josefsson  <simon@josefsson.org>
18663
18664         * m4/arpa_inet_h.m4 (gl_ARPA_INET_H_DEFAULTS): Set
18665         HAVE_DECL_INET_NTOP and HAVE_DECL_INET_PTON.
18666
18667         * modules/arpa_inet (arpa/inet.h): Use them.
18668
18669 2008-04-28  Eric Blake  <ebb9@byu.net>
18670
18671         Test getndelim2.
18672         * modules/getndelim2-tests: New file.
18673         * tests/test-getndelim2.c: Likewise.
18674         * lib/getndelim2.c (getndelim2): Never return 0.  Lock the
18675         stream.
18676         * m4/getndelim2.m4 (gl_GETNDELIM2): Check for lock functions.
18677
18678         * MODULES.html.sh: Document new module.
18679
18680 2008-04-20  Bruno Haible  <bruno@clisp.org>
18681
18682         * lib/c-stack.c (die): Use raise.
18683         * modules/c-stack (Depends-on): Add raise.
18684
18685 2008-04-28  Bruno Haible  <bruno@clisp.org>
18686
18687         Expect rpmatch to be declared.
18688         * lib/yesno.c (rpmatch): Remove declaration.
18689
18690         Declare rpmatch.
18691         * lib/stdlib.in.h (rpmatch): New declaration.
18692         * lib/rpmatch.c: Include <stdlib.h> first.
18693         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Require AC_USE_SYSTEM_EXTENSIONS and
18694         gl_STDLIB_H_DEFAULTS. Set HAVE_RPMATCH.
18695         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_RPMATCH,
18696         HAVE_RPMATCH.
18697         * modules/rpmatch (Depends-on): Add stdlib, extensions.
18698         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
18699         (Include): Set to <stdlib.h>.
18700         * modules/stdlib (Makefile.am): Substitute GNULIB_RPMATCH and
18701         HAVE_RPMATCH.
18702         * NEWS: Document the change.
18703
18704 2008-04-28  Bruno Haible  <bruno@clisp.org>
18705
18706         Change rpmatch to use nl_langinfo when appropriate.
18707         * lib/rpmatch.c: Include stdbool.h, string.h, langinfo.h.
18708         (N_): New macro.
18709         (localized_pattern): New function/macro.
18710         (try): Remove match, nomatch arguments. Copy the pattern into safe
18711         memory before caching it.
18712         (rpmatch): Use localized_pattern. Add translator comments.
18713         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Test for nl_langinfo and YESEXPR.
18714         Suggested by Eric Blake.
18715         * modules/rpmatch (Depends-on): Add stdbool.
18716
18717 2008-04-28  Eric Blake  <ebb9@byu.net>
18718
18719         Add rawmemchr module, matching glibc.
18720         * modules/string (Makefile.am): New indicator.
18721         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set it.
18722         * lib/string.in.h (rawmemchr): Declare when appropriate.
18723         * modules/rawmemchr: New file.
18724         * m4/rawmemchr.m4: Likewise.
18725         * lib/rawmemchr.c: Likewise.
18726         * modules/rawmemchr-tests: Likewise.
18727         * tests/test-rawmemchr.c: Likewise.
18728         * doc/glibc-functions/rawmemchr.texi (rawmemchr): Document
18729         module.
18730         * modules/strchrnul (Depends-on): Add rawmemchr.
18731         * lib/strchrnul.c (strchrnul): Optimize a corner case.
18732
18733         Whitespace cleanup.
18734         * tests/test-strchrnul.c: Reindent.
18735         * lib/strchrnul.c: Likewise.
18736
18737         Optimize and test strchrnul.
18738         * lib/strchrnul.c (strchrnul): Rewrite to do parallel search.
18739         * modules/strchrnul-tests: New file.
18740         * tests/test-strchrnul.c: Likewise.
18741
18742         Remove intprops dependency.
18743         * modules/memchr (Depends-on): Remove intprops.
18744         * modules/memrchr (Depends-on): Likewise.
18745         * modules/memchr2 (Depends-on): Likewise.
18746         * lib/memchr.c (__memchr): Hand-inline the TYPE_MAXIMUM check.
18747         * lib/memrchr.c (__memrchr): Likewise.
18748         * lib/memrchr2.c (memchr2): Likewise.
18749         Reported by Simon Josefsson.
18750
18751 2008-04-28  Simon Josefsson  <simon@josefsson.org>
18752
18753         * m4/sys_socket_h.m4: Move AC_REQUIRE([AC_C_INLINE]) to top.
18754         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
18755
18756 2008-04-28  Simon Josefsson  <simon@josefsson.org>
18757
18758         * lib/inet_ntop.h, lib/inet_pton.h: Remove files.
18759
18760         * lib/inet_ntop.c: Include arpa/inet.h instead of inet_ntop.h.
18761
18762         * lib/inet_pton.c: Include arpa/inet.h instead of inet_pton.h.
18763
18764         * lib/arpa_inet.in.h [@GNULIB_INET_NTOP@]: Inline inet_ntop.h
18765         declarations.
18766         [@GNULIB_INET_PTON@]: Inline inet_pton.h declarations.
18767
18768         * m4/inet_pton.m4: Don't check for header files.
18769
18770         * m4/inet_ntop.m4: Don't check for header files.
18771
18772 2008-04-28  Simon Josefsson  <simon@josefsson.org>
18773
18774         * m4/sys_socket_h.m4: Require AC_C_INLINE when necessary.
18775         * lib/sys_socket.in.h (setsockopt): Use proper win32 tests (don't
18776         trigger for cygwin).
18777         Reported by Bruno Haible  <bruno@clisp.org>.
18778
18779 2008-04-28  Bruno Haible  <bruno@clisp.org>
18780
18781         * doc/posix-functions/strdup.texi: Mention mingw problem.
18782
18783 2008-04-27  Bruno Haible  <bruno@clisp.org>
18784
18785         * modules/stat-time-tests (Depends-on): Add sleep.
18786         * tests/test-stat-time.c (force_unlink): New function.
18787         (cleanup): Use it.
18788         (test_mtime): Remove the ctime related tests.
18789         (test_ctime): New function, containing the ctime related tests.
18790         (main): Call test_ctime, except on native Windows platforms.
18791
18792 2008-04-27  Bruno Haible  <bruno@clisp.org>
18793
18794         * lib/rpmatch.c (rpmatch): Add some comments.
18795         Reported by James Youngman <jay@gnu.org>.
18796
18797 2008-04-27  Bruno Haible  <bruno@clisp.org>
18798
18799         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Also test the behaviour on
18800         quiet NaNs.
18801
18802 2008-04-27  Bruno Haible  <bruno@clisp.org>
18803
18804         Make test-yesno.sh work on mingw.
18805         * tests/test-yesno.sh: Postprocess the output to convert CR/LF to LF.
18806         * tests/test-yesno.c: Include yesno.h first. Include binary-io.h.
18807         (main): Set stdin to binary mode.
18808         * modules/yesno-tests (Depends-on): Add binary-io.
18809
18810 2008-04-27  Bruno Haible  <bruno@clisp.org>
18811
18812         Fix 'isfinite' on x86, x86_64, ia64 platforms.
18813         * tests/test-isfinite.c (test_isfinitel): Also test the behavior on
18814         argument that lie outside the IEEE 854 domain.
18815         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): New macro.
18816         (gl_ISFINITE): Use it.
18817         * doc/posix-functions/isfinite.texi: Document the fixed bugs.
18818
18819 2008-04-27  Bruno Haible  <bruno@clisp.org>
18820
18821         Allow local renaming in config.h.
18822         * lib/memrchr.c (memrchr): Don't undefine outside libc.
18823
18824 2008-04-27  Bruno Haible  <bruno@clisp.org>
18825
18826         * lib/memchr.c (__memchr): Change type of 'i'.
18827         * lib/memchr2.c (memchr2): Likewise.
18828
18829 2008-04-26  Eric Blake  <ebb9@byu.net>
18830         and Bruno Haible  <bruno@clisp.org>
18831
18832         Optimize and test memrchr.
18833         * modules/memrchr (Depends-on): Add intprops.
18834         * lib/memrchr.c (__memrchr): Avoid false positives in loop.
18835         * modules/memrchr-tests: New file.
18836         * tests/test-memrchr.c: New file.
18837
18838 2008-04-26  Bruno Haible  <bruno@clisp.org>
18839
18840         Add tentative support for DragonFly BSD.
18841         * lib/stdio-impl.h: Add macros for DragonFly BSD.
18842         * lib/fbufmode.c (fbufmode): Update conditionals. Use fp_ instead of
18843         fp.
18844         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
18845         restore_seek_optimization, update_fpos_cache, rpl_fflush: Likewise.
18846         * lib/fpurge.c (fpurge): Likewise.
18847         * lib/freadable.c (freaadable): Likewise.
18848         * lib/freadahead.c (freadahead): Likewise.
18849         * lib/freading.c (freading): Likewise.
18850         * lib/freadptr.c (freadptr): Likewise.
18851         * lib/freadseek.c (freadptrinc): Likewise.
18852         * lib/fseeko.c (fseeko): Likewise.
18853         * lib/fseterr.c (fseterr): Likewise.
18854         * lib/fwritable.c (fwritable): Likewise.
18855         * lib/fwriting.c (fwriting): Likewise.
18856
18857 2008-04-26  Bruno Haible  <bruno@clisp.org>
18858
18859         * lib/stdio-impl.h: New file.
18860         * lib/fbufmode.c: Include stdio-impl.h.
18861         (fbufmode): Use fp_, remove redundant #defines.
18862         * lib/fflush.c: Include stdio-impl.h.
18863         (clear_ungetc_buffer): Remove redundant #defines.
18864         * lib/fpurge.c: Include stdio-impl.h.
18865         (fpurge): Remove redundant #defines.
18866         * lib/freadable.c: Include stdio-impl.h.
18867         (freadable): Remove redundant #defines.
18868         * lib/freadahead.c: Include stdio-impl.h.
18869         (freadahead): Remove redundant #defines.
18870         * lib/freading.c: Include stdio-impl.h.
18871         (freading): Remove redundant #defines.
18872         * lib/freadptr.c: Include stdio-impl.h.
18873         (freadptr): Remove redundant #defines.
18874         * lib/freadseek.c: Include stdio-impl.h.
18875         (freadptrinc): Remove redundant #defines.
18876         * lib/fseeko.c: Include stdio-impl.h.
18877         (rpl_fseeko): Remove redundant #defines.
18878         * lib/fseterr.c: Include stdio-impl.h.
18879         (fseterr): Remove redundant #defines.
18880         * lib/fwritable.c: Include stdio-impl.h.
18881         (fwritable: Remove redundant #defines.
18882         * lib/fwriting.c: Include stdio-impl.h.
18883         (fwriting): Remove redundant #defines.
18884         * modules/fbufmode (Files): Add lib/stdio-impl.h.
18885         * modules/fflush (Files): Likewise.
18886         * modules/fpurge (Files): Likewise.
18887         * modules/freadable (Files): Likewise.
18888         * modules/freadahead (Files): Likewise.
18889         * modules/freading (Files): Likewise.
18890         * modules/freadptr (Files): Likewise.
18891         * modules/freadseek (Files): Likewise.
18892         * modules/fseeko (Files): Likewise.
18893         * modules/fseterr (Files): Likewise.
18894         * modules/fwritable (Files): Likewise.
18895         * modules/fwriting (Files): Likewise.
18896
18897 2008-04-26  Bruno Haible  <bruno@clisp.org>
18898
18899         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
18900         restore_seek_optimization, update_fpos_cache): New functions, extracted
18901         from rpl_fflush.
18902         (rpl_fflush): Use them.
18903         * m4/fflush.m4 (gl_PREREQ_FFLUSH): New macro.
18904         (gl_REPLACE_FFLUSH): Use it.
18905
18906 2008-04-26  Bruno Haible  <bruno@clisp.org>
18907
18908         * tests/test-xstrtol.sh: Work around limitation of an old 'tr' program
18909         on Solaris.
18910         * tests/test-xstrtoimax.sh: Likewise.
18911         * tests/test-xstrtoumax.sh: Likewise.
18912         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
18913
18914 2008-04-26  Bruno Haible  <bruno@clisp.org>
18915
18916         * modules/memchr-tests: New file.
18917         * tests/test-memchr.c; New file, based on tests/test-memchr2.c.
18918
18919 2008-04-26  Eric Blake  <ebb9@byu.net>
18920             Bruno Haible  <bruno@clisp.org>
18921
18922         * lib/memchr.c: Include intprops.h.
18923         (__memchr): Optimize parallel detection of matching bytes. Rename local
18924         variables. Add explanatory comments.
18925
18926 2008-04-26  Bruno Haible  <bruno@clisp.org>
18927
18928         Fix module 'memchr', broken since 2000-10-28.
18929         * lib/memchr.c: Outside glibc, define memchr, not __memchr.
18930
18931 2008-04-26  Bruno Haible  <bruno@clisp.org>
18932
18933         * lib/memchr2.c (memchr2): Rename local variables. Add explanatory
18934         comments.
18935
18936 2008-04-25  Eric Blake  <ebb9@byu.net>
18937
18938         Use native fstatat on cygwin 1.7.0.
18939         * m4/openat.m4 (gl_FUNC_OPENAT): Make sure lstat check is made
18940         first.
18941
18942 2008-04-23  Eric Blake  <ebb9@byu.net>
18943
18944         Improve memchr2 performance.
18945         * lib/memchr2.c (memchr2): Further optimize parallel detection of
18946         NUL bytes.
18947         * modules/memchr2 (Depends-on): Use intprops.h.
18948
18949 2008-04-23  Simon Josefsson  <simon@josefsson.org>
18950
18951         * lib/sys_socket.in.h (setsockopt): Be more type safe by declaring
18952         an inline function instead of a CPP macro.  Patch by Ben Pfaff
18953         <blp@cs.stanford.edu>.
18954
18955 2008-04-23  Simon Josefsson  <simon@josefsson.org>
18956
18957         * lib/arpa_inet.in.h: New file.
18958
18959         * modules/arpa_inet (Files): Add lib/arpa_inet.in.h.
18960         (Makefile.am): Sed in substitute header file.
18961
18962         * m4/arpa_inet_h.m4: Add gl_ARPA_INET_H_DEFAULTS and
18963         gl_ARPA_INET_MODULE_INDICATOR.  Use them.
18964
18965         * modules/inet_ntop (configure.ac): Use
18966         gl_ARPA_INET_MODULE_INDICATOR.
18967
18968         * modules/inet_pton (configure.ac): Use
18969         gl_ARPA_INET_MODULE_INDICATOR.
18970
18971 2008-04-22  Jim Meyering  <meyering@redhat.com>
18972
18973         * modules/verify (License): Re-license as LGPLv2+.
18974
18975 2008-04-22  Simon Josefsson  <simon@josefsson.org>
18976
18977         * lib/sys_socket.in.h: Define setsockopt macro to cast fourth
18978         parameter to void* as per POSIX standard (MinGW uses char*).
18979
18980 2008-04-21  Bruno Haible  <bruno@clisp.org>
18981
18982         * lib/wctype.in.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
18983         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
18984         Define to replacements if REPLACE_ISWCNTRL is 1.
18985         * m4/wctype.m4 (gl_WCTYPE_H): Test whether the isw* functions work.
18986         If not, set WCTYPE_H to nonempty and REPLACE_ISWCNTRL to 1.
18987         * modules/wctype (Makefile.am): Substitute REPLACE_ISWCNTRL.
18988         * doc/posix-functions/iswalnum.texi: Mention the 'wctype' module and
18989         what it fixes.
18990         * doc/posix-functions/iswalpha.texi: Likewise.
18991         * doc/posix-functions/iswblank.texi: Likewise.
18992         * doc/posix-functions/iswcntrl.texi: Likewise.
18993         * doc/posix-functions/iswdigit.texi: Likewise.
18994         * doc/posix-functions/iswgraph.texi: Likewise.
18995         * doc/posix-functions/iswlower.texi: Likewise.
18996         * doc/posix-functions/iswprint.texi: Likewise.
18997         * doc/posix-functions/iswpunct.texi: Likewise.
18998         * doc/posix-functions/iswspace.texi: Likewise.
18999         * doc/posix-functions/iswupper.texi: Likewise.
19000         * doc/posix-functions/iswxdigit.texi: Likewise.
19001         Reported by Alain Guibert.
19002
19003 2008-04-21  Bruno Haible  <bruno@clisp.org>
19004
19005         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Fix typo in last commit.
19006         Patch by Alain Guibert.
19007
19008 2008-04-21  Bruno Haible  <bruno@clisp.org>
19009
19010         Fix test failures on mingw.
19011         * tests/test-xstrtol.c (print_no_progname): New function.
19012         (main): Install it in error_print_progname hook.
19013         * tests/test-xstrtol.sh: Convert CR/LF to NL in output.
19014         * tests/test-xstrtoimax.sh: Likewise.
19015         * tests/test-xstrtoumax.sh: Likewise.
19016
19017 2008-04-21  Bruno Haible  <bruno@clisp.org>
19018
19019         Fix test failure on mingw.
19020         * tests/test-argp-2.sh (func_compare): Remove CRs from sed's output.
19021
19022 2008-04-21  Bruno Haible  <bruno@clisp.org>
19023
19024         * lib/localename.c (SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN):
19025         Actually assign a value.
19026
19027 2008-04-20  Bruno Haible  <bruno@clisp.org>
19028
19029         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl',
19030         take 2.
19031         * lib/canonicalize.c (canonicalize_file_name): Elide if the
19032         'canonicalize-lgpl' module is also used.
19033         * lib/canonicalize-lgpl.c: Undo last change.
19034         * modules/canonicalize-lgpl (configure.ac): Invoke gl_MODULE_INDICATOR.
19035
19036 2008-04-20  Bruno Haible  <bruno@clisp.org>
19037
19038         * lib/mkdir.c (mkdir): Undefine after the includes, not right after
19039         config.h. Provide _mkdir based fallback for mingw.
19040         * lib/sys_stat.in.h (mkdir): Define through an 'extern' declaration
19041         if REPLACE_MKDIR is 1. Otherwise, test for mingw directly.
19042         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Require
19043         gl_SYS_STAT_H_DEFAULTS. When doing the replacement, set REPLACE_MKDIR
19044         rather than defining mkdir in config.h.
19045         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): New macro.
19046         (gl_SYS_STAT_H_DEFAULTS): New macro.
19047         (gl_HEADER_SYS_STAT_H): Require it. Don't set HAVE_DECL_MKDIR and
19048         HAVE_IO_H any more.
19049         * modules/sys_stat (Makefile.am): Substitute REPLACE_MKDIR instead of
19050         HAVE_DECL_MKDIR and HAVE_IO_H.
19051
19052 2008-04-20  Bruno Haible  <bruno@clisp.org>
19053
19054         * lib/isapipe.c: Port to native Windows platforms.
19055
19056 2008-04-20  Bruno Haible  <bruno@clisp.org>
19057
19058         * lib/gc-gnulib.c: Include <windows.h> before <wincrypt.h>.
19059
19060 2008-04-21  Eric Blake  <ebb9@byu.net>
19061
19062         Work around preprocessors that don't handle UINTMAX_MAX.
19063         * lib/memchr2.c (memchr2): Avoid embedded #if.
19064         Reported by Alain Guibert, fix suggested by Bruno Haible.
19065
19066 2008-04-21  Simon Josefsson  <simon@josefsson.org>
19067
19068         * doc/posix-functions/strftime.texi (strftime): Explain better
19069         Windows incompatibility.  Suggested by Micah Cowan
19070         <micah@cowan.name>.
19071
19072 2008-04-20  Bruno Haible  <bruno@clisp.org>
19073
19074         * modules/uniconv/u32-conv-to-enc (Depends-on): Add unistr/u32-mblen,
19075         unistr/u8-mblen.
19076
19077 2008-04-20  Bruno Haible  <bruno@clisp.org>
19078
19079         Fix test failure on platforms with non-GNU iconv.
19080         * lib/uniconv/u16-conv-to-enc.c (u16_to_u8_lenient): New function.
19081         (U_TO_U8): Use it, rather than u16_to_u8.
19082         * lib/uniconv/u-conv-to-enc.h (FUNC): Allow an incomplete sequence of
19083         units at the end of the input string.
19084         * modules/uniconv/u16-conv-to-enc (Depends-on): Update.
19085
19086 2008-04-20  Bruno Haible  <bruno@clisp.org>
19087
19088         * tests/uniconv/test-u8-conv-to-enc.c (main): Accept result == NULL
19089         when the resulting length is 0.
19090         * tests/uniconv/test-u16-conv-to-enc.c (main): Likewise.
19091
19092 2008-04-20  Bruno Haible  <bruno@clisp.org>
19093
19094         * m4/roundf.m4 (gl_FUNC_ROUNDF): Add test whether roundf actually
19095         works.
19096         * doc/posix-functions/roundf.texi: Mention roundf bug on mingw.
19097
19098 2008-04-20  Bruno Haible  <bruno@clisp.org>
19099
19100         * tests/test-tsearch.c (main): Don't use initstate if it is missing.
19101         * modules/tsearch-tests (configure.ac): Test for initstate function.
19102
19103 2008-04-20  Bruno Haible  <bruno@clisp.org>
19104
19105         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Also provided a substitute
19106         for nlink_t if missing.
19107         * tests/test-sys_stat.c: Check the existence of the nlink_t type.
19108
19109 2008-04-19  Bruno Haible  <bruno@clisp.org>
19110
19111         Work around snprintf bug on Linux libc5.
19112         * m4/printf.m4 (gl_SNPRINTF_SIZE1): New macro.
19113         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
19114         gl_SNPRINTF_SIZE1.
19115         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
19116         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Likewise. Replace snprintf if
19117         that test failed.
19118         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Likewise.
19119         * lib/vasnprintf.c (USE_SNPRINTF): Set to 0 on Linux libc5 systems.
19120         * modules/snprintf (Files): Add m4/printf.m4.
19121         * modules/vsnprintf (Files): Likewise.
19122         * doc/posix-functions/snprintf.texi: Document Linux libc5 problem.
19123         * doc/posix-functions/vsnprintf.texi: Likewise.
19124
19125 2008-04-19  Bruno Haible  <bruno@clisp.org>
19126
19127         * lib/vasnprintf.c (floorlog10l, floorlog10): Reduce maximum error
19128         from 0.0058 to less than 10^-7.
19129
19130 2008-04-19  Bruno Haible  <bruno@clisp.org>
19131
19132         Fix rounding when a precision is given.
19133         * lib/vasnprintf.c (is_borderline): New function.
19134         (VASNPRINTF): For %e and %g, consider replacing the digits 10....0 with
19135         9...9x.
19136         * tests/test-vasnprintf-posix.c (test_function): Test rounding with %f,
19137         %e, %g.
19138         * tests/test-vasprintf-posix.c (test_function): Likewise.
19139         * tests/test-snprintf-posix.h (test_function): Likewise.
19140         * tests/test-sprintf-posix.h (test_function): Likewise.
19141         * tests/test-fprintf-posix.h (test_function): Test rounding with %f.
19142         * tests/test-printf-posix.h (test_function): Likewise.
19143         * tests/test-printf-posix.output: Update.
19144         Reported by John Darrington <john@darrington.wattle.id.au> via
19145         Ben Pfaff <blp@cs.stanford.edu>.
19146
19147 2008-04-18  Simon Josefsson  <simon@josefsson.org>
19148
19149         * doc/posix-functions/strftime.texi (strftime): Clarify platform.
19150         Suggested by Bruno Haible <bruno@clisp.org>.
19151
19152 2008-04-17  Bruno Haible  <bruno@clisp.org>
19153
19154         * lib/lock.h (gl_lock_destroy, gl_rwlock_destroy,
19155         gl_recursive_lock_destroy): Provide no-op definitions for the dummy
19156         implementation.
19157         Patch by Bruce Merry <bmerry@gmail.com>.
19158
19159 2008-04-17  Simon Josefsson  <simon@josefsson.org>
19160
19161         * doc/posix-functions/strftime.texi (strftime): Mention that %e
19162         doesn't work under Windows.
19163
19164 2008-04-16  Bruno Haible  <bruno@clisp.org>
19165
19166         * lib/localename.c (LANG_MAORI, LANG_QUECHUA, LANG_SOTHO, LANG_UIGHUR):
19167         New macros.
19168         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN,
19169         SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC,
19170         SUBLANG_CROATIAN_CROATIA, SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN,
19171         SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA, SUBLANG_MONGOLIAN_PRC,
19172         SUBLANG_QUECHUA_BOLIVIA, SUBLANG_QUECHUA_ECUADOR, SUBLANG_QUECHUA_PERU,
19173         SUBLANG_RUSSIAN_RUSSIA, SUBLANG_RUSSIAN_MOLDAVIA, SUBLANG_SPANISH_US,
19174         SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN, SUBLANG_UIGHUR_PRC): New
19175         macros.
19176         (gl_locale_name_from_win32_LANGID): Refine code for Croatian/Bosnian,
19177         Mongolian, Russian, Spanish, Tibetan. Add code for Maori, Quechua,
19178         Northern Sotho, Uighur.
19179
19180 2008-04-16  Bruno Haible  <bruno@clisp.org>
19181
19182         * lib/localename.c (SUBLANG_SINDHI_INDIA): New macro.
19183         (SUBLANG_SINDHI_PAKISTAN): Change value from 1 to 2.
19184         (gl_locale_name_from_win32_LANGID): Fix code for Sindhi.
19185         Reported by Daniel Bergström <daniel@octocode.com>.
19186
19187 2007-12-25  KJK::Hyperion  <hackbunny@reactos.com>
19188             Bruno Haible  <bruno@clisp.org>
19189
19190         * lib/localename.c (gl_locale_name_canonicalize) [WIN32_NATIVE]: New
19191         function.
19192         (gl_locale_name_from_win32_LANGID, gl_locale_name_from_win32_LCID):
19193         New functions, mostly extracted from gl_locale_name_default.
19194         (gl_locale_name_default): Use gl_locale_name_from_win32_LCID.
19195
19196 2008-04-16  Eric Blake  <ebb9@byu.net>
19197
19198         Adjust strtod detection to catch glibc 2.7 bug.
19199         * m4/strtod.m4 (gl_FUNC_STRTOD): Test "nan()" behavior.
19200         Reported by John Gatewood Ham.
19201
19202 2008-04-16  Bruno Haible  <bruno@clisp.org>
19203
19204         Add tentative support for Linux libc5.
19205         * lib/fbufmode.c (fbufmode) [__GNU_LIBRARY__==1]: Reuse glibc2 code.
19206         * lib/fpurge.c (fpurge): Likewise.
19207         * lib/freadable.c (freadable): Likewise.
19208         * lib/freadahead.c (freadahead): Likewise.
19209         * lib/freading.c (freading): Likewise.
19210         * lib/freadptr.c (freadptr): Likewise.
19211         * lib/freadseek.c (freadptrinc): Likewise.
19212         * lib/fseeko.c (rpl_fseeko): Likewise.
19213         * lib/fseterr.c (fseterr): Likewise.
19214         * lib/fwritable.c (fwritable): Likewise.
19215         * lib/fwriting.c (fwriting): Likewise.
19216         Reported by Alain Guibert <alguibert+bts@free.fr>.
19217
19218 2008-04-15  Bruno Haible  <bruno@clisp.org>
19219
19220         * modules/mathl (configure.ac): Define module indicator.
19221
19222 2008-04-15  Bruno Haible  <bruno@clisp.org>
19223
19224         * lib/logl.c (logl): Remove unused variables.
19225
19226 2008-04-15  Bruno Haible  <bruno@clisp.org>
19227
19228         * lib/uniconv/u-conv-to-enc.h (FUNC): Fix return value when U_TO_U8
19229         fails.
19230
19231 2008-04-15  Bruno Haible  <bruno@clisp.org>
19232
19233         * lib/trim.c (trim2): Fix argument of isspace() macro.
19234
19235 2008-04-15  Paolo Bonzini  <bonzini@gnu.org>
19236
19237         * lib/tanl.c (kernel_tanl): Rename flag to invert, initialize it
19238         to 0.
19239         * lib/trigl.c (ieee754_rem_pio2l): Fix range checks.
19240
19241 2008-04-14  Bruno Haible  <bruno@clisp.org>
19242
19243         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Fix underquoting of
19244         AC_LANG_PROGRAM argument.
19245         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Likewise.
19246         * m4/gethrxtime.m4 (gl_ARITHMETIC_HRTIME_T): Likewise.
19247         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Likewise.
19248         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
19249         * m4/math_h.m4 (gl_MATH_H): Likewise.
19250         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Likewise.
19251         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
19252         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
19253         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Likewise.
19254         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
19255         * m4/regex.m4 (gl_REGEX): Likewise.
19256         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Likewise.
19257         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET): Likewise.
19258         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
19259         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Likewise.
19260         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
19261         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
19262         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
19263         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
19264
19265 2008-04-14  Jim Meyering  <meyering@redhat.com>
19266
19267         test-strtod: fix typos: s/abs/fabs/
19268         * tests/test-strtod.c (main): Use fabs, not narrowing-to-int "abs".
19269
19270 2008-04-13  Bruno Haible  <bruno@clisp.org>
19271
19272         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl'.
19273         * lib/canonicalize-lgpl.c: Elide the contents if the 'canonicalize'
19274         module is also used and while not building the reloc-wrapper.
19275
19276 2008-04-13  Bruno Haible  <bruno@clisp.org>
19277
19278         * tests/test-getaddrinfo.c (simple): Ignore EAI_NODATA error.
19279
19280 2008-04-13  Bruno Haible  <bruno@clisp.org>
19281
19282         Fix AIX compilation failure introduced on 2008-04-02.
19283         * tests/test-frexp.c (exp): Undefine before redefining.
19284         * tests/test-frexpl.c (exp): Likewise.
19285
19286 2008-04-13  Bruno Haible  <bruno@clisp.org>
19287
19288         Work around a HP-UX stdio bug.
19289         * tests/test-ftell.c (main): Disable the fseek/ftell test on HP-UX.
19290         * tests/test-ftello.c (main): Likewise.
19291         * doc/posix-functions/ftell.texi: Mention HP-UX bug.
19292         * doc/posix-functions/ftello.texi: Likewise.
19293
19294 2008-04-13  Bruno Haible  <bruno@clisp.org>
19295
19296         Make test-signbit pass on HP-UX/hppa.
19297         * tests/test-signbit.c (minus_zerol): New variable.
19298         (test_signbitl): Use it.
19299
19300 2008-04-13  Bruno Haible  <bruno@clisp.org>
19301
19302         Make truncl work on OSF/1 4.0.
19303         * m4/truncl.m4 (gl_FUNC_TRUNCL): Test whether truncl actually works.
19304         Set REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
19305         * lib/math.in.h (truncl): Test REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
19306         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_TRUNCL, not
19307         HAVE_DECL_TRUNCL.
19308         * modules/math (Makefile.am): Substitute REPLACE_TRUNCL, not
19309         HAVE_DECL_TRUNCL.
19310         * doc/posix-functions/truncl.texi: Document the OSF/1 4.0 problem.
19311
19312 2008-04-13  Bruno Haible  <bruno@clisp.org>
19313
19314         * lib/unictype.h: Remove trailing comma from enumeration definitions.
19315
19316 2008-04-13  Bruno Haible  <bruno@clisp.org>
19317
19318         * lib/count-one-bits.h (COUNT_ONE_BITS): Rewrite verification
19319         expression, so as to avoid HP-UX 11 cc compiler bug.
19320
19321 2008-04-13  Bruno Haible  <bruno@clisp.org>
19322
19323         * m4/regex.m4 (gl_PREREQ_REGEX): Also check for <libintl.h>.
19324
19325 2008-04-13  Bruno Haible  <bruno@clisp.org>
19326
19327         * lib/git-merge-changelog.c: Remove empty declaration outside of
19328         functions.
19329
19330 2008-04-13  Bruno Haible  <bruno@clisp.org>
19331
19332         * modules/quotearg-tests (Makefile.am): Define test_quotearg_LDADD.
19333
19334 2008-04-13  Bruno Haible  <bruno@clisp.org>
19335
19336         * doc/posix-headers/sys_socket.texi: Document the problem on EMX.
19337         * lib/sys_socket.in.h (SHUT_RD, SHUT_WR, SHUT_RDWR): Define if missing.
19338         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Replace <sys/socket.h>
19339         also if it exists but lacks definitions of the SHUT_* macros.
19340         * modules/sys_socket (Description): Update.
19341         Reported by Elbert Pol <e.pol@chello.nl>.
19342
19343 2008-04-13  Bruno Haible  <bruno@clisp.org>
19344
19345         * lib/localcharset.c (OS2): Don't redefine if already defined.
19346         Reported by Elbert Pol <e.pol@chello.nl>.
19347
19348 2008-04-13  Bruno Haible  <bruno@clisp.org>
19349
19350         * lib/binary-io.h [__EMX__]: Include <io.h>.
19351         Reported by Elbert Pol <e.pol@chello.nl>.
19352
19353 2008-04-12  Bruno Haible  <bruno@clisp.org>
19354
19355         * lib/fpucw.h: Enable the definitions also for x86_64.
19356         Needed for NetBSD/x86_64.
19357         Reported by Thomas Klausner <tk@giga.or.at>.
19358
19359 2008-04-12  Bruno Haible  <bruno@clisp.org>
19360
19361         * tests/test-strtod.c: Include isnand.h.
19362         (main): Use isnand instead of isnan.
19363         Reported by Jim Meyering.
19364
19365 2008-04-12  Bruno Haible  <bruno@clisp.org>
19366
19367         * m4/isnanf.m4 (gl_ISNANF_WORKS): Add a test for a special NaN.
19368         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
19369
19370 2008-04-12  Jim Meyering  <meyering@redhat.com>
19371
19372         * m4/math_h.m4 (gl_MATH_H): Fix typos.
19373
19374 2008-04-12  Bruno Haible  <bruno@clisp.org>
19375
19376         * lib/freadptr.c (freadptr) [__EMX__]: Fix wrong assertion.
19377         Reported by Elbert Pol <e.pol@chello.nl>.
19378
19379 2008-04-12  Eric Blake  <ebb9@byu.net>
19380
19381         Work around Solaris 10 math.h bug.
19382         * m4/math_h.m4 (gl_MATH_H): Check for bug.
19383         (gl_MATH_H_DEFAULTS): Set up default.
19384         * modules/math (Makefile.am): Replace new indicators.
19385         * lib/math.in.h (NAN, HUGE_VAL): Provide replacements.
19386         * tests/test-math.c (main): Test this.
19387         * m4/strtod.m4 (gl_FUNC_STRTOD): Don't rely on HUGE_VAL.
19388         * doc/posix-headers/math.texi (math.h): Mention bug.
19389         Reported by Nelson H. F. Beebe and Jim Meyering.
19390
19391 2008-04-11  Bruno Haible  <bruno@clisp.org>
19392
19393         Adapt to future versions of Apple GCC.
19394         * lib/argp-fmtstream.h (ARGP_FS_EI): Don't test __GNUC_GNU_INLINE__.
19395         Reported by Peter O'Gorman <peter@pogma.com>.
19396
19397 2008-04-11  Bruno Haible  <bruno@clisp.org>
19398
19399         * tests/test-getaddrinfo.c (simple): Ignore EAI_NONAME error.
19400
19401 2008-04-11  Bruno Haible  <bruno@clisp.org>
19402
19403         * modules/strsignal-tests (Makefile.am): Define test_strsignal_LDADD.
19404
19405         * modules/getaddrinfo-tests (Makefile.am): Define
19406         test_getaddrinfo_LDADD.
19407
19408 2008-04-11  Bruno Haible  <bruno@clisp.org>
19409
19410         * lib/strsignal.c (_sys_siglist): Don't declare if already declared.
19411         (init): Fix syntax error.
19412         * m4/strsignal.m4 (gl_PREREQ_STRSIGNAL): Check whether _sys_siglist
19413         is declared.
19414
19415 2008-04-11  Bruno Haible  <bruno@clisp.org>
19416
19417         * lib/glob.c: Include <stdbool.h>. Needed at least with IRIX cc.
19418         * modules/glob (Depends-on): Add stdbool.
19419
19420 2008-04-11  Bruno Haible  <bruno@clisp.org>
19421
19422         * lib/trim.c: Include <string.h>.
19423
19424 2008-04-11  Eric Blake  <ebb9@byu.net>
19425
19426         Avoid compile failure on OS/2.
19427         * lib/regex_internal.h (internal_function): Disable optimization
19428         on OS/2 (__EMX__), where it caused compiler error.
19429         Reported by Elbert Pol.
19430
19431 2008-04-11  Bruno Haible  <bruno@clisp.org>
19432
19433         Flush the standard error stream before aborting. Needed on mingw.
19434         * tests/test-argmatch.c (ASSERT): Call fflush(stderr) before abort().
19435         * tests/test-array_list.c (ASSERT): Likewise.
19436         * tests/test-array_oset.c (ASSERT): Likewise.
19437         * tests/test-avltree_list.c (ASSERT): Likewise.
19438         * tests/test-avltree_oset.c (ASSERT): Likewise.
19439         * tests/test-avltreehash_list.c (ASSERT): Likewise.
19440         * tests/test-binary-io.c (ASSERT): Likewise.
19441         * tests/test-byteswap.c (ASSERT): Likewise.
19442         * tests/test-c-ctype.c (ASSERT): Likewise.
19443         * tests/test-c-strcasecmp.c (ASSERT): Likewise.
19444         * tests/test-c-strcasestr.c (ASSERT): Likewise.
19445         * tests/test-c-strncasecmp.c (ASSERT): Likewise.
19446         * tests/test-c-strstr.c (ASSERT): Likewise.
19447         * tests/test-canonicalize-lgpl.c (ASSERT): Likewise.
19448         * tests/test-canonicalize.c (ASSERT): Likewise.
19449         * tests/test-carray_list.c (ASSERT): Likewise.
19450         * tests/test-ceilf1.c (ASSERT): Likewise.
19451         * tests/test-ceilf2.c (ASSERT): Likewise.
19452         * tests/test-ceill.c (ASSERT): Likewise.
19453         * tests/test-count-one-bits.c (ASSERT): Likewise.
19454         * tests/test-fbufmode.c (ASSERT): Likewise.
19455         * tests/test-fflush2.c (ASSERT): Likewise.
19456         * tests/test-floorf1.c (ASSERT): Likewise.
19457         * tests/test-floorf2.c (ASSERT): Likewise.
19458         * tests/test-floorl.c (ASSERT): Likewise.
19459         * tests/test-fopen.c (ASSERT): Likewise.
19460         * tests/test-fpending.c (ASSERT): Likewise.
19461         * tests/test-fprintf-posix.c (ASSERT): Likewise.
19462         * tests/test-fpurge.c (ASSERT): Likewise.
19463         * tests/test-freadable.c (ASSERT): Likewise.
19464         * tests/test-freadahead.c (ASSERT): Likewise.
19465         * tests/test-freading.c (ASSERT): Likewise.
19466         * tests/test-freadptr.c (ASSERT): Likewise.
19467         * tests/test-freadptr2.c (ASSERT): Likewise.
19468         * tests/test-freadseek.c (ASSERT): Likewise.
19469         * tests/test-freopen.c (ASSERT): Likewise.
19470         * tests/test-frexp.c (ASSERT): Likewise.
19471         * tests/test-frexpl.c (ASSERT): Likewise.
19472         * tests/test-fseek.c (ASSERT): Likewise.
19473         * tests/test-fseeko.c (ASSERT): Likewise.
19474         * tests/test-fstrcmp.c (ASSERT): Likewise.
19475         * tests/test-ftell.c (ASSERT): Likewise.
19476         * tests/test-ftello.c (ASSERT): Likewise.
19477         * tests/test-func.c (ASSERT): Likewise.
19478         * tests/test-fwritable.c (ASSERT): Likewise.
19479         * tests/test-fwriting.c (ASSERT): Likewise.
19480         * tests/test-getdelim.c (ASSERT): Likewise.
19481         * tests/test-getline.c (ASSERT): Likewise.
19482         * tests/test-i-ring.c (ASSERT): Likewise.
19483         * tests/test-iconv-utf.c (ASSERT): Likewise.
19484         * tests/test-iconv.c (ASSERT): Likewise.
19485         * tests/test-isfinite.c (ASSERT): Likewise.
19486         * tests/test-isnand.c (ASSERT): Likewise.
19487         * tests/test-isnanf.c (ASSERT): Likewise.
19488         * tests/test-isnanl.h (ASSERT): Likewise.
19489         * tests/test-ldexpl.c (ASSERT): Likewise.
19490         * tests/test-linked_list.c (ASSERT): Likewise.
19491         * tests/test-linkedhash_list.c (ASSERT): Likewise.
19492         * tests/test-localename.c (ASSERT): Likewise.
19493         * tests/test-lseek.c (ASSERT): Likewise.
19494         * tests/test-mbscasecmp.c (ASSERT): Likewise.
19495         * tests/test-mbscasestr1.c (ASSERT): Likewise.
19496         * tests/test-mbscasestr2.c (ASSERT): Likewise.
19497         * tests/test-mbscasestr3.c (ASSERT): Likewise.
19498         * tests/test-mbscasestr4.c (ASSERT): Likewise.
19499         * tests/test-mbschr.c (ASSERT): Likewise.
19500         * tests/test-mbscspn.c (ASSERT): Likewise.
19501         * tests/test-mbsncasecmp.c (ASSERT): Likewise.
19502         * tests/test-mbspbrk.c (ASSERT): Likewise.
19503         * tests/test-mbspcasecmp.c (ASSERT): Likewise.
19504         * tests/test-mbsrchr.c (ASSERT): Likewise.
19505         * tests/test-mbsspn.c (ASSERT): Likewise.
19506         * tests/test-mbsstr1.c (ASSERT): Likewise.
19507         * tests/test-mbsstr2.c (ASSERT): Likewise.
19508         * tests/test-mbsstr3.c (ASSERT): Likewise.
19509         * tests/test-memchr2.c (ASSERT): Likewise.
19510         * tests/test-memmem.c (ASSERT): Likewise.
19511         * tests/test-open.c (ASSERT): Likewise.
19512         * tests/test-printf-frexp.c (ASSERT): Likewise.
19513         * tests/test-printf-frexpl.c (ASSERT): Likewise.
19514         * tests/test-printf-posix.c (ASSERT): Likewise.
19515         * tests/test-quotearg.c (ASSERT): Likewise.
19516         * tests/test-rbtree_list.c (ASSERT): Likewise.
19517         * tests/test-rbtree_oset.c (ASSERT): Likewise.
19518         * tests/test-rbtreehash_list.c (ASSERT): Likewise.
19519         * tests/test-round1.c (ASSERT): Likewise.
19520         * tests/test-roundf1.c (ASSERT): Likewise.
19521         * tests/test-roundl.c (ASSERT): Likewise.
19522         * tests/test-signbit.c (ASSERT): Likewise.
19523         * tests/test-sleep.c (ASSERT): Likewise.
19524         * tests/test-snprintf-posix.c (ASSERT): Likewise.
19525         * tests/test-snprintf.c (ASSERT): Likewise.
19526         * tests/test-sprintf-posix.c (ASSERT): Likewise.
19527         * tests/test-stat-time.c (ASSERT): Likewise.
19528         * tests/test-strcasestr.c (ASSERT): Likewise.
19529         * tests/test-strerror.c (ASSERT): Likewise.
19530         * tests/test-striconv.c (ASSERT): Likewise.
19531         * tests/test-striconveh.c (ASSERT): Likewise.
19532         * tests/test-striconveha.c (ASSERT): Likewise.
19533         * tests/test-strsignal.c (ASSERT): Likewise.
19534         * tests/test-strstr.c (ASSERT): Likewise.
19535         * tests/test-strtod.c (ASSERT): Likewise.
19536         * tests/test-trunc1.c (ASSERT): Likewise.
19537         * tests/test-trunc2.c (ASSERT): Likewise.
19538         * tests/test-truncf1.c (ASSERT): Likewise.
19539         * tests/test-truncf2.c (ASSERT): Likewise.
19540         * tests/test-truncl.c (ASSERT): Likewise.
19541         * tests/test-vasnprintf-posix.c (ASSERT): Likewise.
19542         * tests/test-vasnprintf-posix2.c (ASSERT): Likewise.
19543         * tests/test-vasnprintf.c (ASSERT): Likewise.
19544         * tests/test-vasprintf-posix.c (ASSERT): Likewise.
19545         * tests/test-vasprintf.c (ASSERT): Likewise.
19546         * tests/test-vfprintf-posix.c (ASSERT): Likewise.
19547         * tests/test-vprintf-posix.c (ASSERT): Likewise.
19548         * tests/test-vsnprintf-posix.c (ASSERT): Likewise.
19549         * tests/test-vsnprintf.c (ASSERT): Likewise.
19550         * tests/test-vsprintf-posix.c (ASSERT): Likewise.
19551         * tests/test-wcwidth.c (ASSERT): Likewise.
19552         * tests/test-xfprintf-posix.c (ASSERT): Likewise.
19553         * tests/test-xprintf-posix.c (ASSERT): Likewise.
19554         * tests/test-xvasprintf.c (ASSERT): Likewise.
19555         * tests/uniconv/test-u16-conv-from-enc.c (ASSERT): Likewise.
19556         * tests/uniconv/test-u16-conv-to-enc.c (ASSERT): Likewise.
19557         * tests/uniconv/test-u16-strconv-from-enc.c (ASSERT): Likewise.
19558         * tests/uniconv/test-u16-strconv-to-enc.c (ASSERT): Likewise.
19559         * tests/uniconv/test-u32-conv-from-enc.c (ASSERT): Likewise.
19560         * tests/uniconv/test-u32-conv-to-enc.c (ASSERT): Likewise.
19561         * tests/uniconv/test-u32-strconv-from-enc.c (ASSERT): Likewise.
19562         * tests/uniconv/test-u32-strconv-to-enc.c (ASSERT): Likewise.
19563         * tests/uniconv/test-u8-conv-from-enc.c (ASSERT): Likewise.
19564         * tests/uniconv/test-u8-conv-to-enc.c (ASSERT): Likewise.
19565         * tests/uniconv/test-u8-strconv-from-enc.c (ASSERT): Likewise.
19566         * tests/uniconv/test-u8-strconv-to-enc.c (ASSERT): Likewise.
19567         * tests/unictype/test-bidi_byname.c (ASSERT): Likewise.
19568         * tests/unictype/test-bidi_name.c (ASSERT): Likewise.
19569         * tests/unictype/test-bidi_of.c (ASSERT): Likewise.
19570         * tests/unictype/test-bidi_test.c (ASSERT): Likewise.
19571         * tests/unictype/test-block_list.c (ASSERT): Likewise.
19572         * tests/unictype/test-block_of.c (ASSERT): Likewise.
19573         * tests/unictype/test-block_test.c (ASSERT): Likewise.
19574         * tests/unictype/test-categ_and.c (ASSERT): Likewise.
19575         * tests/unictype/test-categ_and_not.c (ASSERT): Likewise.
19576         * tests/unictype/test-categ_byname.c (ASSERT): Likewise.
19577         * tests/unictype/test-categ_name.c (ASSERT): Likewise.
19578         * tests/unictype/test-categ_none.c (ASSERT): Likewise.
19579         * tests/unictype/test-categ_of.c (ASSERT): Likewise.
19580         * tests/unictype/test-categ_or.c (ASSERT): Likewise.
19581         * tests/unictype/test-categ_test_withtable.c (ASSERT): Likewise.
19582         * tests/unictype/test-combining.c (ASSERT): Likewise.
19583         * tests/unictype/test-decdigit.c (ASSERT): Likewise.
19584         * tests/unictype/test-digit.c (ASSERT): Likewise.
19585         * tests/unictype/test-mirror.c (ASSERT): Likewise.
19586         * tests/unictype/test-numeric.c (ASSERT): Likewise.
19587         * tests/unictype/test-pr_byname.c (ASSERT): Likewise.
19588         * tests/unictype/test-pr_test.c (ASSERT): Likewise.
19589         * tests/unictype/test-predicate-part1.h (ASSERT): Likewise.
19590         * tests/unictype/test-scripts.c (ASSERT): Likewise.
19591         * tests/unictype/test-sy_c_ident.c (ASSERT): Likewise.
19592         * tests/unictype/test-sy_java_ident.c (ASSERT): Likewise.
19593         * tests/unistdio/test-u16-asnprintf1.c (ASSERT): Likewise.
19594         * tests/unistdio/test-u16-vasnprintf1.c (ASSERT): Likewise.
19595         * tests/unistdio/test-u16-vasnprintf2.c (ASSERT): Likewise.
19596         * tests/unistdio/test-u16-vasnprintf3.c (ASSERT): Likewise.
19597         * tests/unistdio/test-u16-vasprintf1.c (ASSERT): Likewise.
19598         * tests/unistdio/test-u16-vsnprintf1.c (ASSERT): Likewise.
19599         * tests/unistdio/test-u16-vsprintf1.c (ASSERT): Likewise.
19600         * tests/unistdio/test-u32-asnprintf1.c (ASSERT): Likewise.
19601         * tests/unistdio/test-u32-vasnprintf1.c (ASSERT): Likewise.
19602         * tests/unistdio/test-u32-vasnprintf2.c (ASSERT): Likewise.
19603         * tests/unistdio/test-u32-vasnprintf3.c (ASSERT): Likewise.
19604         * tests/unistdio/test-u32-vasprintf1.c (ASSERT): Likewise.
19605         * tests/unistdio/test-u32-vsnprintf1.c (ASSERT): Likewise.
19606         * tests/unistdio/test-u32-vsprintf1.c (ASSERT): Likewise.
19607         * tests/unistdio/test-u8-asnprintf1.c (ASSERT): Likewise.
19608         * tests/unistdio/test-u8-vasnprintf1.c (ASSERT): Likewise.
19609         * tests/unistdio/test-u8-vasnprintf2.c (ASSERT): Likewise.
19610         * tests/unistdio/test-u8-vasnprintf3.c (ASSERT): Likewise.
19611         * tests/unistdio/test-u8-vasprintf1.c (ASSERT): Likewise.
19612         * tests/unistdio/test-u8-vsnprintf1.c (ASSERT): Likewise.
19613         * tests/unistdio/test-u8-vsprintf1.c (ASSERT): Likewise.
19614         * tests/unistdio/test-ulc-asnprintf1.c (ASSERT): Likewise.
19615         * tests/unistdio/test-ulc-vasnprintf1.c (ASSERT): Likewise.
19616         * tests/unistdio/test-ulc-vasnprintf2.c (ASSERT): Likewise.
19617         * tests/unistdio/test-ulc-vasnprintf3.c (ASSERT): Likewise.
19618         * tests/unistdio/test-ulc-vasprintf1.c (ASSERT): Likewise.
19619         * tests/unistdio/test-ulc-vsnprintf1.c (ASSERT): Likewise.
19620         * tests/unistdio/test-ulc-vsprintf1.c (ASSERT): Likewise.
19621         * tests/uniwidth/test-u16-strwidth.c (ASSERT): Likewise.
19622         * tests/uniwidth/test-u16-width.c (ASSERT): Likewise.
19623         * tests/uniwidth/test-u32-strwidth.c (ASSERT): Likewise.
19624         * tests/uniwidth/test-u32-width.c (ASSERT): Likewise.
19625         * tests/uniwidth/test-u8-strwidth.c (ASSERT): Likewise.
19626         * tests/uniwidth/test-u8-width.c (ASSERT): Likewise.
19627         * tests/uniwidth/test-uc_width.c (ASSERT): Likewise.
19628         Reported by Eric Blake.
19629
19630 2008-04-11  Bruno Haible  <bruno@clisp.org>
19631
19632         * lib/wchar.in.h: Tweak comment.
19633
19634 2008-04-11  Bruno Haible  <bruno@clisp.org>
19635
19636         Fix __GNUC_STDC_INLINE__ predefine with Apple GCC on MacOS X 10.5.
19637         * gnulib-tool (func_emit_initmacro_start): Emit an invocation of
19638         gl_COMMON.
19639         * m4/gnulib-common.m4 (gl_COMMON, gl_COMMON_BODY): New macros.
19640
19641 2008-04-11  Bruno Haible  <bruno@clisp.org>
19642
19643         * modules/git-merge-changelog (git_merge_changelog_LDADD): Add LIBINTL.
19644
19645 2008-04-11  Simon Josefsson  <simon@josefsson.org>
19646
19647         * lib/gc-gnulib.c: On Windows, use CryptGenRandom from CSP instead
19648         of attempting to use non-existing /dev/*random.  Based on patch
19649         from Adam Strzelecki <ono@java.pl> in
19650         <http://lists.gnu.org/archive/html/help-gsasl/2008-02/msg00000.html>.
19651
19652 2008-04-08  Bruno Haible  <bruno@clisp.org>
19653
19654         Add tentative support for emx+gcc.
19655         * lib/fbufmode.c (fbufmode) [__EMX__]: Add conditional code.
19656         * lib/fpurge.c (fpurge): Likewise.
19657         * lib/freadable.c (freadable): Likewise.
19658         * lib/freadahead.c (freadahead): Likewise.
19659         * lib/freading.c (freading): Likewise.
19660         * lib/freadptr.c (freadptr): Likewise.
19661         * lib/freadseek.c (freadptrinc): Likewise.
19662         * lib/fseeko.c (rpl_fseeko): Likewise.
19663         * lib/fseterr.c (fseterr): Likewise.
19664         * lib/fwritable.c (fwritable): Likewise.
19665         * lib/fwriting.c (fwriting): Likewise.
19666         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for emx+gcc.
19667
19668 2008-04-09  Eric Blake  <ebb9@byu.net>
19669
19670         Avoid some autoconf warnings.
19671         * m4/regex.m4 (gl_REGEX): s/AC_HELP_STRING/AS_HELP_STRING/.
19672         * m4/acl.m4 (gl_FUNC_ACL): Likewise.
19673         * m4/afs.m4 (gl_AFS): Likewise.
19674         * m4/gc-random.m4 (gl_GC_RANDOM): Likewise.
19675         * m4/include_next.m4 (gl_INCLUDE_NEXT): s/AC_FOREACH/m4_foreach_w/.
19676         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
19677         * m4/stdint.m4 (gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED)
19678         (gl_INTEGER_TYPE_SUFFIX): Likewise.
19679         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE)
19680         (AC_CHECK_DECLS_ONCE): Likewise.
19681         Rename file...
19682         * m4/onceonly.m4: ...to this, and delete 2.54 variant, now that
19683         gnulib-tool requires autoconf 2.59 or better.
19684         * gnulib-tool (func_get_filelist): s/\(onceonly\)_2_57.m4/\1.m4/.
19685
19686 2008-04-08  Eric Blake  <ebb9@byu.net>
19687
19688         Use 'git describe --match' if present (added in git 1.5.5).
19689         * build-aux/git-version-gen: Limit result to tags that match 'v*'
19690         if possible.
19691
19692 2008-04-08  Bruno Haible  <bruno@clisp.org>
19693
19694         Add tentative support for OpenServer.
19695         * lib/fbufmode.c (fbufmode): Add conditional define for _flag, _base,
19696         _ptr, _cnt.
19697         * lib/fpurge.c (fpurge): Likewise.
19698         * lib/freadable.c (freadable): Likewise.
19699         * lib/freadahead.c (freadahead): Likewise.
19700         * lib/freading.c (freading): Likewise.
19701         * lib/freadptr.c (freadptr): Likewise.
19702         * lib/freadseek.c (freadptrinc): Likewise.
19703         * lib/fseeko.c (rpl_fseeko): Likewise.
19704         * lib/fseterr.c (fseterr): Likewise.
19705         * lib/fwritable.c (fwritable): Likewise.
19706         * lib/fwriting.c (fwriting): Likewise.
19707         Reported by Roger Cornelius <rac@tenzing.org> and
19708         Brian K. White <brian@aljex.com>.
19709
19710 2008-04-06  Jim Meyering  <meyering@redhat.com>
19711
19712         * gnulib-tool (func_add_or_update): s/backuped/backed up/ in diagnostic
19713
19714 2008-04-06  Bruno Haible  <bruno@clisp.org>
19715
19716         Avoid possible error with non-ASCII bytes in UTF-8 locales.
19717         * tests/test-fprintf-posix.sh: Use "LC_ALL=C tr" instead of "tr".
19718         * tests/test-printf-posix.sh: Likewise.
19719         * tests/test-vfprintf-posix.sh: Likewise.
19720         * tests/test-vprintf-posix.sh: Likewise.
19721         * tests/test-xprintf-posix.sh: Likewise.
19722
19723 2008-04-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19724
19725         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT): Fix quoting,
19726         hide error from 'ls', needed on OS/2.
19727         Report by Elbert Pol <elbert.pol@gmail.com>.
19728
19729 2008-04-04  Eric Blake  <ebb9@byu.net>
19730
19731         Make test-fseeko.c failures meaningful.
19732         * tests/test-fseeko.c: Print line number on failure.
19733         * tests/test-fseek.c: Likewise.
19734         Reported by Nelson H. F. Beebe.
19735
19736         Improve strtod bug detection check.
19737         * m4/strtod.m4 (gl_FUNC_STRTOD): Also check for hex-float parsing,
19738         required for Solaris 10.
19739         Reported by Bob Friesenhahn and Nelson H. F. Beebe.
19740
19741 2008-04-04  Bruno Haible  <bruno@clisp.org>
19742
19743         * modules/relocatable-prog-wrapper (Files): Add m4/environ.m4. Needed
19744         by m4/setenv.m4.
19745
19746 2008-04-03  Eric Blake  <ebb9@byu.net>
19747
19748         Ensure sane .version contents.
19749         * top/GNUmakefile (_dummy): Also delete .version when rebuilding
19750         version string.
19751         * build-aux/git-version-gen: Improve documentation.
19752
19753         Make GNU make output nicer.
19754         * top/GNUmakefile [!_have-Makefile]: Add dependency on
19755         MAKECMDGOALS to enforce message for all command line targets.  Set
19756         srcdir for use in maint.mk.
19757
19758         Another maintainer tweak.
19759         * top/GNUmakefile (_is-dist-target): Allow maintainer-distcheck as
19760         a target that regenerates version.
19761
19762 2008-04-03  Jim Meyering  <meyering@redhat.com>
19763
19764         vc-list-files: don't cause coreutils "make po-check" failure
19765         * build-aux/vc-list-files: Skip postprocessing when $2 is '.'
19766
19767 2008-04-03  Eric Blake  <ebb9@byu.net>
19768
19769         Allow VPATH usage of vc-list-files.
19770         * build-aux/vc-list-files (scriptversion): Add timestamp.
19771         (options): Add --help, --version, -C.
19772         (CVS): Support installed cvsu.
19773
19774 2008-04-02  Bruno Haible  <bruno@clisp.org>
19775
19776         Avoid some "statement with no effect" warnings from gcc.
19777         * tests/test-wctype.c (main): Explicitly ignore unused values.
19778         Reported by Jim Meyering.
19779
19780 2008-04-02  Jim Meyering  <meyering@redhat.com>
19781
19782         Avoid some warnings from "gcc -Wshadow".
19783         * tests/test-frexp.c (exp): Define to a different identifier.
19784         * tests/test-frexpl.c (exp): Likewise.
19785
19786 2008-04-03  Jim Meyering  <meyering@redhat.com>
19787
19788         bootstrap: remove dangling *.[ch] symlinks from lib
19789         * build-aux/bootstrap [dangling symlink removal]: Move find's
19790         -depth option to precede all others, to avoid a warning.
19791         Remove *.[ch] files too, and from "$source_base" (usually lib/).
19792
19793 2008-04-02  Bruno Haible  <bruno@clisp.org>
19794
19795         Avoid some warnings from "gcc -Wshadow".
19796         * tests/tests-vfprintf-posix.c (my_fprintf): Move after test_function.
19797         * tests/tests-vprintf-posix.c (my_printf): Move after test_function.
19798         * tests/tests-vsnprintf-posix.c (my_snprintf): Move after test_function.
19799         * tests/tests-vsprintf-posix.c (my_sprintf): Move after test_function.
19800         Reported by Jim Meyering.
19801
19802 2008-04-01  Bruno Haible  <bruno@clisp.org>
19803
19804         Fix test to work on IRIX 6.5 with cc.
19805         * tests/test-math.c (numeric_equal): New function.
19806         (main): Use it.
19807
19808 2008-04-01  Bruno Haible  <bruno@clisp.org>
19809
19810         * doc/posix-headers/math.texi: Refine documentation of NAN problem.
19811
19812 2008-04-01  Bruno Haible  <bruno@clisp.org>
19813
19814         * tests/test-vasnprintf-posix.c: Include nan.h instead of <math.h>.
19815         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
19816         * modules/vasnprintf-posix-tests (Files): Add tests/nan.h.
19817         (Depends-on): Remove math.
19818
19819         * tests/test-vasprintf-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/vasprintf-posix-tests (Files): Add tests/nan.h.
19822         (Depends-on): Remove math.
19823
19824         * tests/test-snprintf-posix.h: Include nan.h instead of <math.h>.
19825         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
19826         * modules/snprintf-posix-tests (Files): Add tests/nan.h.
19827         (Depends-on): Remove math.
19828         * modules/vsnprintf-posix-tests (Files): Add tests/nan.h.
19829         (Depends-on): Remove math.
19830
19831         * tests/test-sprintf-posix.h: Include nan.h instead of <math.h>.
19832         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
19833         * modules/sprintf-posix-tests (Files): Add tests/nan.h.
19834         (Depends-on): Remove math.
19835         * modules/vsprintf-posix-tests (Files): Add tests/nan.h.
19836         (Depends-on): Remove math.
19837
19838         * tests/test-round1.c: Include nan.h.
19839         (main): Use NaNd instead of NAN.
19840         * modules/round-tests (Files): Add tests/nan.h.
19841
19842         * tests/test-trunc1.c: Include nan.h.
19843         (main): Use NaNd instead of NAN.
19844         * modules/trunc-tests (Files): Add tests/nan.h.
19845
19846         * tests/test-roundf1.c: Include nan.h.
19847         (main): Use NaNf instead of NAN.
19848         * modules/roundf-tests (Files): Add tests/nan.h.
19849
19850         * tests/test-truncf1.c: Include nan.h.
19851         (main): Use NaNf instead of NAN.
19852         * modules/truncf-tests (Files): Add tests/nan.h.
19853
19854         * tests/test-ceilf1.c: Include nan.h.
19855         (main): Use NaNf instead of NAN.
19856         * modules/ceilf-tests (Files): Add tests/nan.h.
19857
19858         * tests/test-floorf1.c: Include nan.h.
19859         (main): Use NaNf instead of NAN.
19860         * modules/floorf-tests (Files): Add tests/nan.h.
19861
19862         * tests/test-isnanf.c: Include nan.h instead of <math.h>.
19863         (main): Use NaNf instead of NAN.
19864         * modules/isnanf-nolibm-tests (Files): Add tests/nan.h.
19865
19866         * tests/test-isnand.c: Include nan.h instead of <math.h>.
19867         (main): Use NaNd instead of NAN.
19868         * modules/isnand-nolibm-tests (Files): Add tests/nan.h.
19869
19870         * tests/test-frexp.c: Include nan.h.
19871         (main): Use NaNd instead of NAN.
19872         * modules/frexp-tests (Files): Add tests/nan.h.
19873
19874         * lib/isnan.c: Don't include <math.h>.
19875         (FUNC): Don't use NAN macro.
19876         * modules/isnand-nolibm (Depends-on): Remove math.
19877         * modules/isnanf-nolibm (Depends-on): Remove math.
19878         * modules/isnanl (Depends-on): Remove math.
19879         * modules/isnanl-nolibm (Depends-on): Remove math.
19880
19881         * tests/nan.h: New file.
19882
19883 2008-04-01  Eric Blake  <ebb9@byu.net>
19884
19885         Fix typos.
19886         * tests/test-strtod.c (main): s/FLT_/DBL_/ for minimum and epsilon
19887         values to be the right type.
19888
19889         For now, cater to gnulib strtod inaccuracies.
19890         * tests/test-strtod.c (main): Allow 1-ulp error on expected
19891         fractional results.  While not as nice from a QoI perspective, it
19892         is a quicker patch than correctly implementing decimal to binary
19893         rounding.
19894
19895 2008-03-31  Eric Blake  <ebb9@byu.net>
19896
19897         Guarantee a definition of NAN.
19898         * lib/math.in.h (NAN): Define if missing.
19899         * tests/test-math.c (main): Test it.
19900         * doc/posix-headers/math.texi (math.h): Document this.
19901         * lib/isnan.c (rpl_isnand): Use it.
19902         * tests/test-ceilf1.c (NaN): Delete, and use NAN instead.
19903         * tests/test-floorf1.c (NaN): Likewise.
19904         * tests/test-frexp.c (NaN): Likewise.
19905         * tests/test-isnand.c (NaN): Likewise.
19906         * tests/test-isnanf.c (NaN): Likewise.
19907         * tests/test-round1.c (NaN): Likewise.
19908         * tests/test-roundf1.c (NaN): Likewise.
19909         * tests/test-snprintf-posix.h (NaN): Likewise.
19910         * tests/test-sprintf-posix.h (NaN): Likewise.
19911         * tests/test-trunc1.c (NaN): Likewise.
19912         * tests/test-truncf1.c (NaN): Likewise.
19913         * tests/test-vasnprintf-posix.c (NaN): Likewise.
19914         * tests/test-vasprintf-posix.c (NaN): Likewise.
19915         * modules/isnand-nolibm (Depends-on): Add math.
19916         * modules/isnanf-nolibm (Depends-on): Likewise.
19917         * modules/isnanl (Depends-on): Likewise.
19918         * modules/isnanl-nolibm (Depends-on): Likewise.
19919         * modules/snprintf-posix-tests (Depends-on): Likewise.
19920         * modules/sprintf-posix-tests (Depends-on): Likewise.
19921         * modules/vsnprintf-posix-tests (Depends-on): Likewise.
19922         * modules/vsprintf-posix-tests (Depends-on): Likewise.
19923         * modules/vasnprintf-posix-tests (Depends-on): Likewise.
19924         * modules/vasprintf-posix-tests (Depends-on): Likewise.
19925
19926 2008-03-31  Bruno Haible  <bruno@clisp.org>
19927
19928         * tests/test-strtod.c (main): Update results for OSF/1 platforms.
19929         * doc/posix-functions/strtod.texi: Likewise.
19930
19931 2008-03-31  Bruno Haible  <bruno@clisp.org>
19932
19933         * tests/test-strtod.c (main): Don't use C99 syntax.
19934
19935 2008-03-31  Bruno Haible  <bruno@clisp.org>
19936
19937         * tests/test-strtod.c (main): Don't test NAN macro. Needed for Solaris.
19938         Reported by Eric Blake.
19939
19940 2008-03-31  Jim Meyering  <meyering@redhat.com>
19941
19942         Don't compare actual signbit return values.
19943         * tests/test-strtod.c (main): Rather, compare only their
19944         zero/non-zero nature.
19945
19946 2008-03-31  Eric Blake  <ebb9@byu.net>
19947
19948         More strtod documentation.
19949         * doc/posix-functions/strtod.texi (strtod): Interpret more test
19950         failures as distinct bugs.
19951
19952 2008-03-30  Paul Eggert  <eggert@cs.ucla.edu>
19953
19954         * lib/wchar.in.h [defined __need_mbstate_t]: Just include <wchar.h>.
19955         Problem reported by Erik Benada in
19956         <http://lists.gnu.org/archive/html/bug-gnulib/2008-03/msg00249.html>.
19957
19958 2008-03-30  Bruno Haible  <bruno@clisp.org>
19959
19960         * tests/test-strtod.c: Add comments about which assertion fails on which
19961         platform.
19962         * doc/posix-functions/strtod.texi: Add info about many more platforms.
19963
19964 2008-03-30  Eric Blake  <ebb9@byu.net>
19965
19966         Test signbit behavior on zeros.
19967         * tests/test-signbit.c (test_signbitf): Add tests for zero.
19968         (test_signbitd, test_signbitl): Likewise.
19969
19970         More strtod touchups.
19971         * tests/test-strtod.c (main): Ignore tests for signbit on NaN, and
19972         sign of negative underflow, for now.  Use .5, not .1.
19973         * doc/posix-functions/strtod.texi (strtod): Mention these
19974         limitations.
19975         Reported by Jim Meyering.
19976
19977 2008-03-30  Bruno Haible  <bruno@clisp.org>
19978
19979         * lib/striconveh.h (mem_iconveh, str_iconveh): Optimize the conversion
19980         from UTF-8 to UTF-8//TRANSLIT in the same way as from UTF-8 to UTF-8.
19981
19982 2008-03-30  Bruno Haible  <bruno@clisp.org>
19983
19984         Avoid failure when attempting to return empty iconv results on some
19985         platforms.
19986         * lib/striconveh.c (mem_cd_iconveh_internal): In the final memory
19987         allocation, don't report ENOMEM when the resulting string is empty.
19988
19989 2008-03-30  Bruno Haible  <bruno@clisp.org>
19990
19991         Fix buffer overrun.
19992         * lib/vasnprintf.c (VASNPRINTF): If !USE_SNPRINTF && pad_ourselves:
19993         Don't consider the width for tmp_length. Check count against tmp_length
19994         before doing the padding. Ensure enough allocation during padding.
19995
19996 2008-03-30  Eric Blake  <ebb9@byu.net>
19997
19998         strtod touchups.
19999         * lib/strtod.c (strtod): Avoid compiler warnings.
20000         Reported by Jim Meyering.
20001
20002 2008-03-30  Bruno Haible  <bruno@clisp.org>
20003
20004         * lib/unistdio/u-vsprintf.h (EOVERFLOW): Remove fallback.
20005         * modules/unistdio/ulc-vsprintf (Depends-on): Add EOVERFLOW.
20006         * modules/unistdio/u8-vsprintf (Depends-on): Add EOVERFLOW.
20007         * modules/unistdio/u8-u8-vsprintf (Depends-on): Add EOVERFLOW.
20008         * modules/unistdio/u16-vsprintf (Depends-on): Add EOVERFLOW.
20009         * modules/unistdio/u16-u16-vsprintf (Depends-on): Add EOVERFLOW.
20010         * modules/unistdio/u32-vsprintf (Depends-on): Add EOVERFLOW.
20011         * modules/unistdio/u32-u32-vsprintf (Depends-on): Add EOVERFLOW.
20012
20013         * lib/unistdio/u-vsnprintf.h (EOVERFLOW): Remove fallback.
20014         * modules/unistdio/ulc-vsnprintf (Depends-on): Add EOVERFLOW.
20015         * modules/unistdio/u8-vsnprintf (Depends-on): Add EOVERFLOW.
20016         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Add EOVERFLOW.
20017         * modules/unistdio/u16-vsnprintf (Depends-on): Add EOVERFLOW.
20018         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Add EOVERFLOW.
20019         * modules/unistdio/u32-vsnprintf (Depends-on): Add EOVERFLOW.
20020         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Add EOVERFLOW.
20021
20022         * lib/unistdio/u-vasprintf.h (EOVERFLOW): Remove fallback.
20023         * modules/unistdio/ulc-vasprintf (Depends-on): Add EOVERFLOW.
20024         * modules/unistdio/u8-vasprintf (Depends-on): Add EOVERFLOW.
20025         * modules/unistdio/u8-u8-vasprintf (Depends-on): Add EOVERFLOW.
20026         * modules/unistdio/u16-vasprintf (Depends-on): Add EOVERFLOW.
20027         * modules/unistdio/u16-u16-vasprintf (Depends-on): Add EOVERFLOW.
20028         * modules/unistdio/u32-vasprintf (Depends-on): Add EOVERFLOW.
20029         * modules/unistdio/u32-u32-vasprintf (Depends-on): Add EOVERFLOW.
20030
20031         * lib/unistdio/ulc-vfprintf.c (EOVERFLOW): Remove fallback.
20032         * modules/unistdio/ulc-vfprintf (Depends-on): Add EOVERFLOW.
20033
20034         * lib/unistdio/ulc-fprintf.c (EOVERFLOW): Remove fallback.
20035         * modules/unistdio/ulc-fprintf (Depends-on): Add EOVERFLOW.
20036
20037         * lib/xvasprintf.c (EOVERFLOW): Remove fallback.
20038         * modules/xvasprintf (Depends-on): Add EOVERFLOW.
20039
20040         * lib/vsprintf.c (EOVERFLOW): Remove fallback.
20041         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Drop gl_EOVERFLOW.
20042         * modules/vsprintf-posix (Depends-on): Add EOVERFLOW.
20043
20044         * lib/vsnprintf.c (EOVERFLOW): Remove fallback.
20045         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Drop gl_EOVERFLOW.
20046         * modules/vsnprintf (Depends-on): Add EOVERFLOW.
20047
20048         * lib/vfprintf.c (EOVERFLOW): Remove fallback.
20049         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Drop gl_EOVERFLOW.
20050         * modules/vfprintf-posix (Depends-on): Add EOVERFLOW.
20051
20052         * lib/vasprintf.c (EOVERFLOW): Remove fallback.
20053         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Drop gl_EOVERFLOW.
20054         * modules/vasprintf (Depends-on): Add EOVERFLOW.
20055
20056         * lib/vasnprintf.c (EOVERFLOW): Remove fallback.
20057         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Drop gl_EOVERFLOW.
20058         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Drop gl_EOVERFLOW.
20059         * modules/vasnprintf (Files): Remove m4/eoverflow.m4.
20060         (Depends-on): Add EOVERFLOW.
20061         * modules/unistdio/ulc-vasnprintf (Files): Remove m4/eoverflow.m4.
20062         (Depends-on): Add EOVERFLOW.
20063         * modules/unistdio/u8-vasnprintf (Files): Remove m4/eoverflow.m4.
20064         (Depends-on): Add EOVERFLOW.
20065         * modules/unistdio/u8-u8-vasnprintf (Files): Remove m4/eoverflow.m4.
20066         (Depends-on): Add EOVERFLOW.
20067         * modules/unistdio/u16-vasnprintf (Files): Remove m4/eoverflow.m4.
20068         (Depends-on): Add EOVERFLOW.
20069         * modules/unistdio/u16-u16-vasnprintf (Files): Remove m4/eoverflow.m4.
20070         (Depends-on): Add EOVERFLOW.
20071         * modules/unistdio/u32-vasnprintf (Files): Remove m4/eoverflow.m4.
20072         (Depends-on): Add EOVERFLOW.
20073         * modules/unistdio/u32-u32-vasnprintf (Files): Remove m4/eoverflow.m4.
20074         (Depends-on): Add EOVERFLOW.
20075
20076         * lib/sprintf.c (EOVERFLOW): Remove fallback.
20077         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Drop gl_EOVERFLOW.
20078         * modules/sprintf-posix (Depends-on): Add EOVERFLOW.
20079
20080         * lib/snprintf.c (EOVERFLOW): Remove fallback.
20081         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Drop gl_EOVERFLOW.
20082         * modules/snprintf (Depends-on): Add EOVERFLOW.
20083
20084         * lib/poll.c (EOVERFLOW): Remove fallback.
20085         * modules/poll (Depends-on): Add EOVERFLOW.
20086
20087         * lib/getugroups.c (EOVERFLOW): Remove fallback.
20088         * modules/getugroups (Depends-on): Add EOVERFLOW.
20089
20090         * lib/getdelim.c (EOVERFLOW): Remove fallback.
20091         * modules/getdelim (Depends-on): Add EOVERFLOW.
20092
20093         * lib/ftell.c (EOVERFLOW): Remove fallback.
20094         * modules/ftell (Depends-on): Add EOVERFLOW.
20095
20096         * lib/fprintf.c (EOVERFLOW): Remove fallback.
20097         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Drop gl_EOVERFLOW.
20098         * modules/fprintf-posix (Depends-on): Add EOVERFLOW.
20099
20100         * lib/c-stack.c (EOVERFLOW): Remove unused fallback.
20101
20102         * modules/EOVERFLOW-tests: New file.
20103         * tests/test-EOVERFLOW.c: New file.
20104
20105         * modules/EOVERFLOW: New file.
20106         * doc/posix-headers/errno.texi: Mention EOVERFLOW portability problem.
20107
20108 2008-03-30  Bruno Haible  <bruno@clisp.org>
20109
20110         Fix bug introduced on 2007-06-10.
20111         * lib/vasnprintf.c (VASNPRINTF): When performing zero-padding, use
20112         spaces instead of 0 digits for 's' also when ENABLE_UNISTDIO.
20113
20114 2008-03-30  Bruno Haible  <bruno@clisp.org>
20115
20116         Improve freadseek's efficiency after ungetc.
20117         * lib/freadseek.c: Include freadahead.h.
20118         (freadptrinc): New function, extracted from freadseek.
20119         (freadseek): Use it in a loop. Use freadahead to determine the number
20120         of loop iterations.
20121         * modules/freadseek (Depends-on): Add freadahead.
20122         (configure.ac): Require AC_C_INLINE.
20123
20124 2008-03-30  Bruno Haible  <bruno@clisp.org>
20125
20126         * lib/freadseek.c (freadseek): Don't ignore the return value of
20127         freadptr.
20128
20129 2008-03-29  Eric Blake  <ebb9@byu.net>
20130
20131         Add hex float support.
20132         * modules/strtod (Depends-on): Add c-ctype.
20133         (Link): Mention POW_LIB.
20134         * lib/strtod.c (strtod): Recognize hex floats.  Don't allow
20135         whitespace between 'e' and exponent.
20136         * tests/test-strtod.c (main): Enable hex float tests.
20137         * doc/posix-functions/strtod.texi (strtod): Document what gnulib
20138         now provides.
20139
20140         Document various strtod bugs, with some fixes.
20141         * doc/posix-functions/strtod.texi (strtod): Document bugs with
20142         "-0x", "inf", "nan", and hex constants.
20143         * doc/posix-functions/atof.texi (atof): Likewise.
20144         * modules/stdlib (Makefile.am): Support strtod.
20145         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Likewise.
20146         * m4/strtod.m4 (gl_FUNC_STRTOD): Fit in stdlib framework, and
20147         detect additional strtod bugs.
20148         * lib/stdlib.in.h (rpl_strtod): Add declarations.
20149         * lib/strtod.c (strtod): Return -0.0 on negative underflow.  Use
20150         bool where appropriate.  Parse 'inf' and 'nan'.
20151         * tests/test-strtod.c: New file.
20152         * modules/strtod (Depends-on): Add stdbool, stdlib.
20153         (configure.ac): Turn on module indicator.
20154         * modules/strtod-tests: New module.
20155
20156 2008-03-29  Eric Blake  <ebb9@byu.net>
20157
20158         Fix ftell on mingw.
20159         * lib/ftell.c (EOVERFLOW): Define if the system lacks it.
20160         * modules/ftell-tests (Depends-on): Add binary-io.
20161         * modules/ftello-tests (Depends-on): Likewise.
20162         * tests/test-ftell.c (main): Enhance test to cover behavior after
20163         ungetc.  Enforce binary mode.
20164         * tests/test-ftello.c (main): Likewise.
20165
20166         Pass test-freadseek on cygwin.
20167         * modules/freadseek (Depends-on): Use freadptr, not freadahead.
20168         * lib/freadseek.c (freadseek): Don't increment beyond bounds of
20169         ungetc buffer.
20170
20171         * tests/test-fflush2.c (main): Fix typo.
20172
20173 2008-03-29  Bruno Haible  <bruno@clisp.org>
20174
20175         * tests/test-fflush2.c (main): Temporarily disable the contents of
20176         this test.
20177         * m4/fflush.m4 (gl_FUNC_FFLUSH): Add a TODO.
20178         Reported by Eric Blake.
20179
20180 2008-03-28  Simon Josefsson  <simon@josefsson.org>
20181
20182         * lib/gc.h (enum Gc_hash): Add GC_SHA224.
20183         (GC_SHA224_DIGEST_SIZE): Add.
20184
20185         * lib/gc-libgcrypt.c (gc_hash_open): Handle SHA-224.
20186         (gc_hash_digest_length): Likewise.
20187         (gc_hash_buffer): Likewise.
20188
20189 2008-03-25  Bruno Haible  <bruno@clisp.org>
20190
20191         * doc/gnulib-tool.texi (gettextize and autopoint): Explain in more
20192         detail which gettext release to use.
20193         Reported by Simon Josefsson.
20194
20195 2008-03-26  Jim Meyering  <meyering@redhat.com>
20196
20197         gnumakefile: remove file from $(top_builddir), not from $(top_srcdir)
20198         * modules/gnumakefile (clean-GNUmakefile): Also, use
20199         test ... && ... || : syntax rather than if-then ... fi.
20200
20201         gnumakefile: Don't double-quote-expand $(VPATH) value.
20202         * modules/gnumakefile (clean-GNUmakefile): Use single quotes.
20203
20204 2008-03-24  Eric Blake  <ebb9@byu.net>
20205
20206         Alter GNUmakefile to install into top directory.
20207         * modules/maintainer-makefile: Split, and add dependency...
20208         * modules/gnumakefile: to this new module.
20209         * build-aux/GNUmakefile: Move...
20210         * top/GNUmakefile: ...here.
20211         * build-aux/maint.mk: Move...
20212         * top/maint.mk: ...here.
20213         * MODULES.html.sh (Support for maintaining...): Document new
20214         module.
20215
20216 2008-03-23  Bruno Haible  <bruno@clisp.org>
20217
20218         * gnulib-tool: New options --vc-files, --no-vc-files.
20219         (func_usage): Document them.
20220         (vc_files): New variable.
20221         (func_import): Consider vc_files.
20222         (func_create_testdir): Set vc_files to empty.
20223         Suggested by Jim Meyering and Karl Berry.
20224
20225 2008-03-23  Bruno Haible  <bruno@clisp.org>
20226
20227         Fix regex compilation error on HP-UX 11.
20228         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_TYPE_MBSTATE_T.
20229         * modules/regex (Files): Add m4/mbstate_t.m4.
20230         Reported by Ton Voon <ton.voon@altinity.com>.
20231
20232 2008-03-23  Bruno Haible  <bruno@clisp.org>
20233
20234         * doc/gnulib-tool.texi (gettextize and autopoint): New section.
20235
20236 2008-03-23  Eric Blake  <ebb9@byu.net>
20237             Bruno Haible  <bruno@clisp.org>
20238
20239         Install files from top/ in the destination directory.
20240         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
20241         augmentation also for the files from top/.
20242         (func_import, func_create_testdir): Rewrite file names:
20243         top/filename -> filename.
20244
20245 2008-03-23  Bruno Haible  <bruno@clisp.org>
20246
20247         Tweak "gnulib --version" output.
20248         * gnulib-tool (func_version): Replace "-dirty" suffix with "-modified".
20249
20250 2008-03-23  Bruno Haible  <bruno@clisp.org>
20251
20252         Tweak "gnulib --version" output.
20253         * gnulib-tool (func_version): Use date of last commit to ChangeLog,
20254         rather than contents of ChangeLog, when possible.
20255
20256 2008-03-21  Eric Blake  <ebb9@byu.net>
20257
20258         More --version tweaks.
20259         * gnulib-tool (func_version): Obey GNU Coding Standards.  Output
20260         date of last ChangeLog entry.
20261
20262 2008-03-21  Jim Meyering  <meyering@redhat.com>
20263
20264         * build-aux/GNUmakefile (_have-git-version-gen): Split long line.
20265
20266 2008-03-20  Eric Blake  <ebb9@byu.net>
20267
20268         VPATH fix.
20269         * build-aux/GNUmakefile (_have_git-version-gen): Look in correct dir.
20270
20271 2008-03-20  Simon Josefsson  <simon@josefsson.org>
20272
20273         * build-aux/GNUmakefile: Make git-version-gen optional.  Add
20274         _build-aux variable.  Suggested by Eric Blake <ebb9@byu.net>.
20275
20276 2008-03-20  Eric Blake  <ebb9@byu.net>
20277
20278         Sync GNUmakefile with coreutils.
20279         * build-aux/GNUmakefile (have-Makefile): Rename...
20280         (_have-Makefile): ...to this, for namespace consideration.
20281         (GNUmakefile.cfg): Include, if present.
20282         (_autoreconf): Define a default.
20283         (_is-dist-target): New rule for rebuilds to pick up intra-release
20284         version.
20285         (maint-cfg.mk): Rename...
20286         (cfg.mk): ...to this.
20287
20288 2008-03-18  Jim Meyering  <meyering@redhat.com>
20289
20290         New script and module: mktempd
20291         * MODULES.html.sh (maint+release support): Add mktempd.
20292         * build-aux/mktempd: New file.
20293         * modules/mktempd: New file.
20294
20295 2008-03-15  Jim Meyering  <meyering@redhat.com>
20296
20297         Undo last change.
20298         * lib/sha1.c, lib/md5.c: 63 != ~63.
20299         Reported by Andreas Schwab.
20300
20301         sha1.c, md5.c: Hoist a redundant expression.
20302         * lib/sha1.c (sha1_process_bytes): AND-off the low bits in
20303         "ctx->buflen" only once, before calling *_process_block.
20304         * lib/md5.c (md5_process_bytes): Likewise.
20305
20306 2008-03-14  Eric Blake  <ebb9@byu.net>
20307
20308         Bump copyright year in files generated by gnulib-tool.
20309         * gnulib-tool (func_emit_copyright_notice): Extract copyright from
20310         gnulib-tool, rather than hard-coding it.
20311
20312         Fix 'gnulib-tool --version' output to work with git.
20313         * gnulib-tool (func_gnulib_dir): New function, extracted from...
20314         (startup): ...here.
20315         (func_version): Use it to invoke git-version-gen, rather than
20316         relying on CVS keyword expansion.  Modernize wording.
20317         (cvsdatestamp, last_checkin_date, version): Kill unused
20318         variables.
20319
20320 2008-03-12  Jim Meyering  <meyering@redhat.com>
20321
20322         Recognize optional cast of the argument to free.
20323         * build-aux/useless-if-before-free: Update regexps.
20324
20325         * build-aux/bootstrap (gnulib_tool): Remove trailing blanks.
20326
20327 2008-03-11  Bruno Haible  <bruno@clisp.org>
20328
20329         Extend AC_LIB_LINKFLAGS to the situation of several libraries provided
20330         by a single package.
20331         * m4/lib-link.m4 (AC_LIB_FROMPACKAGE): New macro.
20332         (AC_LIB_LINKFLAGS_BODY): Use the information stored by
20333         AC_LIB_FROMPACKAGE. Use AC_ARG_WITH instead of AC_LIB_ARG_WITH.
20334         Reported by Sam Steingold <sds@gnu.org>.
20335
20336 2008-03-12  Sergey Poznyakoff  <gray@gnu.org.ua>
20337
20338         * build-aux/bootstrap (version_controlled_file): Adapt for SVN
20339         repositories.
20340
20341 2008-03-11  Bruno Haible  <bruno@clisp.org>
20342
20343         Avoid conflicts between local macro definitions.
20344         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
20345         AC_LIB_LINKFLAGS_BODY): Use pushdef/popdef instead of define/undefine.
20346
20347 2008-03-10  Peter O'Gorman  <bug-gnulib@mlists.thewrittenword.com>
20348             Bruno Haible  <bruno@clisp.org>
20349
20350         Make va_copy work with some version of xlc on AIX 5.1.
20351         * lib/stdarg.in.h: New file.
20352         * m4/stdarg.m4 (gl_STDARG_H): Initialize STDARG_H and NEXT_STDARG_H.
20353         On AIX, use a <stdarg.h> file substitute.
20354         * modules/stdarg (Files): Add lib/stdarg.in.h.
20355         (Depends-on): Add include_next.
20356         (Makefile.am): Build a stdarg.h substitute if requested.
20357         * doc/posix-functions/va_copy.texi: Document the platforms lacking it.
20358
20359 2008-03-10  Bruno Haible  <bruno@clisp.org>
20360
20361         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Document a restriction.
20362         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
20363         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
20364
20365 2008-03-10  Bruno Haible  <bruno@clisp.org>
20366
20367         * modules/stdlib (Depends-on): Add include_next, remove
20368         absolute-header.
20369
20370 2008-03-09  Bruno Haible  <bruno@clisp.org>
20371
20372         * lib/freadahead.h (freadahead): Document more precisely.
20373         * lib/freadahead.c (freadahead): When an ungetc is in effect, return
20374         the sum of both buffer sizes.
20375         * tests/test-freadahead.c (main): Also test behaviour after ungetc.
20376         * NEWS: Document the change.
20377
20378 2008-03-09  Bruno Haible  <bruno@clisp.org>
20379
20380         Extend freadptr to return also the buffer size.
20381         * lib/freadptr.h (freadptr): Add sizep argument.
20382         * lib/freadptr.c: Include freadptr.h, not freadahead.h.
20383         (freadptr): Add sizep argument. Determine buffer size like freadahead
20384         does.
20385         * tests/test-freadptr.c: Don't include freadahead.h.
20386         (main): Adapt for new calling convention of freadptr.
20387         * tests/test-freadptr2.c: New file, based on tests/test-freadahead.c.
20388         * tests/test-freadptr2.sh: New file, based on tests/test-freadahead.sh.
20389         * modules/freadptr-tests (Files): Add tests/test-freadptr2.c,
20390         tests/test-freadptr2.sh.
20391         (Depends): Remove freadahead.
20392         (TESTS): Add test-freadptr2.sh.
20393         (check_PROGRAMS): Add test-freadptr2.
20394
20395 2008-03-09  Bruno Haible  <bruno@clisp.org>
20396
20397         * doc/Makefile (%.pdf): Explain how to remedy the save_size error.
20398         Report and solution by Simon Josefsson.
20399
20400 2008-03-06  Bruno Haible  <bruno@clisp.org>
20401
20402         Make fflush after ungetc work on BSD platforms.
20403         * lib/fflush.c (rpl_fflush): Discard ungetc buffer if possible.
20404         * tests/test-fflush2.c: New file.
20405         * tests/test-fflush2.sh: New file.
20406         * modules/fflush-tests (Files): Add tests/test-fflush2.sh,
20407         tests/test-fflush2.c.
20408         (Makefile.am): Build test-fflush2 and run test-fflush2.sh.
20409         * doc/posix-functions/fflush.texi: Document fflush after ungetc bug.
20410
20411 2008-03-06  Eric Blake  <ebb9@byu.net>
20412
20413         Likewise for ftello.
20414         * modules/ftello (Dependencies): Add extensions.
20415         * m4/ftello.m4 (gl_FUNC_FTELLO): Require AC_USE_SYSTEM_EXTENSIONS.
20416
20417 2008-03-06  Bruno Haible  <bruno@clisp.org>
20418
20419         * modules/fseeko (Dependencies): Add extensions.
20420         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Require AC_USE_SYSTEM_EXTENSIONS.
20421         Needed on glibc systems.
20422
20423 2008-03-06  Bruno Haible  <bruno@clisp.org>
20424
20425         * doc/gnulib-tool.texi (@nosuchmodulenote): Avoid line break inside
20426         email address.
20427         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
20428
20429 2008-03-06  Bruno Haible  <bruno@clisp.org>
20430
20431         * users.txt: Add libgnupdf.
20432
20433 2008-03-06  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
20434
20435         * doc/gnulib-tool.texi (@nosuchmodulenote): New macro.
20436         (Header File Substitutes, Function Substitutes,
20437         Glibc Header File Substitutes, Glibc Function Substitutes): Use it.
20438         (Build robot for gnulib): Fix typo.
20439
20440 2008-03-06  Bruno Haible  <bruno@clisp.org>
20441
20442         * doc/gnulib-tool.texi (VCS Issues): Small updates.
20443         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
20444
20445 2008-03-06  Bruno Haible  <bruno@clisp.org>
20446
20447         * doc/func.texi: New file, extracted from doc/gnulib.texi.
20448         * doc/gnulib.texi: Include it.
20449
20450 2008-03-06  Simon Josefsson  <simon@josefsson.org>
20451
20452         * modules/func (License): Change license to unlimited; there was
20453         no LGPL parts in the module anyway.
20454
20455 2008-03-06  Simon Josefsson  <simon@josefsson.org>
20456
20457         * modules/__func__: Renamed to modules/func.
20458         * modules/__func__-tests: Renamed to modules/func-tests.
20459         * tests/test-__func__.c: Renamed to tests/test-func.c.
20460         * m4/__func__.m4: Renamed to m4/func.m4.
20461         * doc/gnulib.texi (__func__): Section renamed to func.
20462         Suggested by Eric Blake <ebb9@byu.net>.
20463
20464 2008-03-06  Simon Josefsson  <simon@josefsson.org>
20465
20466         * doc/gnulib.texi (__func__): Use C99 terminology when talking
20467         about __func__.  Make example self-contained.  Suggested by Eric
20468         Blake <ebb9@byu.net>.
20469
20470         * tests/test-__func__.c (main): Avoid extraneous () around __func.
20471         Suggested by Eric Blake <ebb9@byu.net>.
20472
20473 2008-03-06  Simon Josefsson  <simon@josefsson.org>
20474
20475         * modules/__func__: New file.
20476         * modules/__func__-tests: New file.
20477         * tests/test-__func__.c: New file.
20478         * m4/__func__.m4: New file.
20479         * doc/gnulib.texi (__func__): Document __func__ module.
20480
20481 2008-03-05  Simon Josefsson  <simon@josefsson.org>
20482
20483         * modules/byteswap (License): Re-license as LGPLv2+.
20484
20485 2008-03-05  Simon Josefsson  <simon@josefsson.org>
20486
20487         * doc/Makefile: Add pdf target.
20488
20489 2008-03-05  Simon Josefsson  <simon@josefsson.org>
20490
20491         * modules/inline (License): Use 'unlimited', since there are only
20492         *.m4 files in this module.
20493
20494 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
20495             Bruno Haible  <bruno@clisp.org>
20496
20497         Add support for HP C 7.1 on OpenVMS 8.3.
20498         * lib/alloca.in.h (alloca): Define as alias for DEC C on VMS.
20499
20500 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
20501
20502         Update VMS specifics.
20503         * lib/getopt.c [VMS]: Remove include of unixlib.h.
20504
20505 2008-03-02  Jim Meyering  <meyering@redhat.com>
20506
20507         Remove the last dependency on the "free" module.
20508         * m4/readutmp.m4 (gl_READUTMP): Don't require gl_FUNC_FREE.
20509         Reported by Bob Proulx.
20510
20511         * lib/getdelim.c (getdelim): Don't leak memory upon failed realloc.
20512
20513         Remove useless "if" tests before free.  Deprecate "free" module.
20514         * doc/posix-functions/free.texi: Mention that this
20515         module is no longer useful.
20516         * modules/free (Notice): Say this module is obsolete.
20517         * modules/readutmp (Depends-on): Remove free.
20518         * lib/save-cwd.c (free_cwd): Remove useless "if" before free.
20519         * lib/putenv.c (putenv): Likewise.
20520         * lib/gc-gnulib.c (gc_cipher_close): Likewise.
20521         * lib/getaddrinfo.c (freeaddrinfo): Likewise.
20522         * tests/test-c-strcasestr.c (main): Likewise.
20523         * tests/test-c-strstr.c (main): Likewise.
20524         * tests/test-mbscasestr1.c (main): Likewise.
20525         * tests/test-mbscasestr2.c (main): Likewise.
20526         * tests/test-mbsstr1.c (main): Likewise.
20527         * tests/test-mbsstr2.c (main): Likewise.
20528         * tests/test-memmem.c (main): Likewise.
20529         * tests/test-strcasestr.c (main): Likewise.
20530         * tests/test-striconv.c (main): Likewise.
20531         * tests/test-striconveh.c (main): Likewise.
20532         * tests/test-striconveha.c (main): Likewise.
20533         * tests/test-strstr.c (main): Likewise.
20534
20535         * build-aux/git-version-gen: Adjust a comment and the Usage string.
20536
20537         bootstrap: sync from coreutils again
20538         * build-aux/bootstrap: Remove dangling m4/*.m4 symlinks.
20539
20540 2008-03-01  Jim Meyering  <meyering@redhat.com>
20541
20542         bootstrap: sync from coreutils
20543         * build-aux/bootstrap (update_po_files): Copy a .po file into place
20544         also when the target doesn't exist.
20545
20546 2008-03-01  Eric Blake  <ebb9@byu.net>
20547
20548         Fix bugs in last patch.
20549         * lib/memchr2.c (memchr2): Fix typo.
20550         * tests/test-memchr2.c: Test previous bug, and don't use GNU
20551         extension.
20552         Reported by Bruce Korb.
20553
20554         New module 'memchr2'.
20555         * modules/memchr2: New file.
20556         * modules/memchr2-tests: Likewise.
20557         * lib/memchr2.h: Likewise.
20558         * lib/memchr2.c: Likewise, based on memchr.c.
20559         * tests/test-memchr2.c: New test.
20560         * MODULES.html.sh (String handling): Add memchr2.
20561
20562 2008-02-29  Bruno Haible  <bruno@clisp.org>
20563
20564         * modules/freadseek-tests: New file.
20565         * tests/test-freadseek.sh: New file.
20566         * tests/test-freadseek.c: New file.
20567
20568         New module 'freadseek'.
20569         * modules/freadseek: New file.
20570         * lib/freadseek.h: New file.
20571         * lib/freadseek.c: New file.
20572         * MODULES.html.sh (File stream based Input/Output): Add freadseek.
20573
20574 2008-02-29  Sergey Poznyakoff  <gray@gnu.org.ua>
20575
20576         * users.txt: Add anubis, cpio, mailfromd, mailutils, radius,
20577         wydawca.
20578
20579         * m4/argp.m4 (gl_ARGP): Use AC_TRY_LINK to test if
20580         program_invocation_name and program_invocation_short_name are
20581         present.
20582
20583 2008-02-28  Bruno Haible  <bruno@clisp.org>
20584
20585         * tests/test-freadptr.c: Add a test for behaviour after ungetc.
20586         * tests/test-freadptr.sh: Also test non-seekable stdin.
20587
20588 2008-02-28  Sergey Poznyakoff  <gray@gnu.org.ua>
20589
20590         * build-aux/bootstrap (source_base, m4_base)
20591         (doc_base, tests_base): New variables.
20592         (gnulib_tool_options): Do not hardcode base directories, use
20593         the above variables instead.
20594
20595 2008-02-28  Atsushi SAKAI  <sakaia@jp.fujitsu.com>
20596
20597         * lib/xsize.h: Fix typo in comment: s/tupe/type/.
20598
20599 2008-02-28  Bruno Haible  <bruno@clisp.org>
20600
20601         * modules/freadptr-tests: New file.
20602         * tests/test-freadptr.sh: New file.
20603         * tests/test-freadptr.c: New file.
20604
20605         New module 'freadptr'.
20606         * modules/freadptr: New file.
20607         * lib/freadptr.h: New file.
20608         * lib/freadptr.c: New file.
20609         * MODULES.html.sh (File stream based Input/Output): Add freadptr.
20610
20611 2008-02-26  Karl Berry  <karl@freefriends.org>
20612
20613         Sync from Libtool:
20614         * libltdl/argz.c (argz_add, argz_count): New functions.
20615         * libltdl/argz.in.h: Declare them.
20616         Report by Juan Manuel Guerrero <juan.guerrero@gmx.de>.
20617
20618 2008-02-22  Bruno Haible  <bruno@clisp.org>
20619
20620         * m4/time_r.m4 (gl_TIME_R): Also check that localtime_r's return type
20621         is a pointer type.  Needed for HP-UX 10.
20622         * doc/posix-functions/localtime_r.texi: Mention HP-UX 10.
20623         * doc/posix-functions/gmtime_r.texi: Likewise.
20624         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
20625
20626 2008-02-24  Bruno Haible  <bruno@clisp.org>
20627
20628         * modules/environ-tests: New file.
20629         * tests/test-environ.c: New file.
20630
20631         New module 'environ'.
20632         * modules/environ: New file.
20633         * lib/unistd.in.h (environ): New declaration.
20634         * m4/environ.m4: New file.
20635         (gt_CHECK_VAR_DECL): Moved here from m4/setenv.m4. Undefine gt_cv_var
20636         after use.
20637         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_ENVIRON and
20638         HAVE_DECL_ENVIRON.
20639         * modules/unistd (Makefile.am): Substitute also GNULIB_ENVIRON and
20640         HAVE_DECL_ENVIRON.
20641         * doc/posix-functions/environ.texi: Mention module 'environ'. Remove
20642         wrong claim that 'environ' is missing on some systems.
20643         * modules/execute (Depends-on): Add environ.
20644         * lib/execute.c (environ): Remove fallback declaration.
20645         * modules/pipe (Depends-on): Add environ.
20646         * lib/pipe.c (environ): Remove fallback declaration.
20647         * modules/setenv (Depends-on): Add environ.
20648         * lib/setenv.c (environ): Remove fallback declaration.
20649         * modules/unsetenv (Depends-on): Add environ.
20650         * lib/unsetenv.c (environ): Remove fallback declaration.
20651         * m4/setenv.m4 (gt_CHECK_VAR_DECL): Remove macro. Moved to
20652         m4/environ.m4.
20653         (gl_PREREQ_SETENV): Require gl_ENVIRON instead of testing for environ.
20654         (gl_PREREQ_UNSETENV): Likewise.
20655
20656 2008-02-24  Bruno Haible  <bruno@clisp.org>
20657
20658         * doc/posix-functions/environ.texi: Document the MacOS X problem.
20659
20660 2008-02-20  Bob Proulx  <bob@proulx.com>
20661
20662         Enable use of older two part flavor 'git describe'.
20663         * build-aux/git-version-gen: If using the older two part flavor of
20664         git version then recreate the third part now present in the
20665         newer three part flavor of git describe.
20666
20667 2008-02-20  Martin Buchholz  <martin@xemacs.org>  (tiny change)
20668
20669         * lib/fts.c (fts_build): Typo correction to comment.
20670
20671 2008-02-17  Bruno Haible  <bruno@clisp.org>
20672
20673         * lib/git-merge-changelog.c (main) [split_merged_entry]: Avoid
20674         generating no-op conflicts.
20675
20676 2008-02-17  Bruno Haible  <bruno@clisp.org>
20677
20678         Speed up by 10%.
20679         * lib/git-merge-changelog.c (main): Use the iterator to iterate through
20680         result_entries, rather than an index-based loop.
20681
20682 2008-02-17  Bruno Haible  <bruno@clisp.org>
20683
20684         Speed up by 25%.
20685         * lib/git-merge-changelog.c (struct entry): New fields 'hashcode',
20686         'hashcode_cached'.
20687         (entry_create): New function.
20688         (entry_hashcode): Use the cached hashcode if possible.
20689         (read_changelog_file, try_split_merged_entry): Use entry_create.
20690
20691 2008-02-17  Bruno Haible  <bruno@clisp.org>
20692
20693         Speed up from O(n^2) to O(n) for long ChangeLog files.
20694         * lib/git-merge-changelog.c: Include gl_rbtreehash_list.h.
20695         (read_changelog_file): Change implementation of entries_reversed list
20696         to rbtreehash.
20697         * modules/git-merge-changelog (Depends-on): Add rbtreehash-list.
20698
20699 2008-02-17  Bruno Haible  <bruno@clisp.org>
20700
20701         New option --split-merged-entry.
20702         * lib/git-merge-changelog.c (FSTRCMP_STRICTER_THRESHOLD): New macro.
20703         (find_paragraph_end, try_split_merged_entry): New functions.
20704         (long_options): Add option --split-merged-entry.
20705         (usage): Document option --split-merged-entry.
20706         (main): Implement option --split-merged-entry.
20707         Reported by Eric Blake.
20708
20709 2008-02-17  Bruno Haible  <bruno@clisp.org>
20710
20711         * lib/git-merge-changelog.c: Include c-strstr.h.
20712         (main): Support the "git pull --rebase" situation.
20713         * modules/git-merge-changelog (Depends-on): Add c-strstr.
20714         Reported by Eric Blake.
20715
20716 2008-02-16  Eric Blake  <ebb9@byu.net>
20717
20718         Avoid doubling \ in common case of "c-maybe" quoting style.
20719         * lib/quotearg.c (quotearg_buffer_restyled): Don't escape \ when
20720         eliding outer quotes.
20721         * lib/quotearg.h: Document this.
20722         * tests/test-quotearg.c (result_strings, inputs, results_g)
20723         (flag_results, locale_results): Test it by adding a new string to
20724         each test group.
20725         (compare_strings): Test new string.
20726
20727 2008-02-13  Eric Blake  <ebb9@byu.net>
20728
20729         Avoid trigraph quoting in default output.
20730         * lib/quotearg.h (enum quoting_flags): Add QA_SPLIT_TRIGRAPHS.
20731         * lib/quotearg.c (quotearg_buffer_restyled): Don't quote trigraphs
20732         unless explicitly requested.
20733         * tests/test-quotearg.c (flag_results, main): Add additional tests.
20734
20735 2008-02-13  Lasse Collin  <lasse.collin@tukaani.org>
20736
20737         Don't rely on signed integer overflowing to negative value.
20738         * lib/getugroups.c (getugroups): Include <limits.h>.
20739         Instead, compare against INT_MAX, and increment only if the test passes.
20740
20741 2008-02-13  Jim Meyering  <meyering@redhat.com>
20742         and Eric Blake  <ebb9@byu.net>
20743
20744         Avoid shadowing warning and compile errors on Linux.
20745         * tests/test-quotearg.c [ENABLE_NLS]: Disable <libintl.h>
20746         forwarding macros on Linux.
20747         (dcgettext): Define a stub, for Linux.
20748         (results_g, main): Avoid warnings.
20749
20750 2008-02-12  Eric Blake  <ebb9@byu.net>
20751
20752         Silence warning in last patch.
20753         * lib/quotearg.c (quotearg_buffer_restyled): Add missing const.
20754
20755         Quotearg part 4: add tests, fix c-maybe colon quoting.
20756         * lib/quotearg.h: Improve documentation.
20757         * lib/quotearg.c (quotearg_buffer_restyled): Don't add extra
20758         escapes when adding outer quotes.  When quoting trigraphs, use
20759         valid C notation.  When quoting NUL, omit extra characters if next
20760         character is not digit.  Alter prototype.
20761         (quotearg_buffer, quotearg_alloc_mem, quotearg_n_options): Adjust
20762         callers.
20763         * modules/quotearg-tests: New module.
20764         * tests/test-quotearg.c: New test.
20765
20766 2008-02-07  Eric Blake  <ebb9@byu.net>
20767
20768         Quotearg part 3: add flag to control outer quote elision.
20769         * lib/quotearg.h (c_maybe_quoting_style): New style.
20770         (enum quoting_flags): Better documentation of flags.
20771         * lib/quotearg.c (quoting_style_args, quoting_style_vals): Add
20772         c-maybe style.
20773         (quotearg_buffer_restyled): Handle new flag to elide outer
20774         quotes.
20775
20776         Quotearg part 2: add flag that can control NUL elision.
20777         * lib/quotearg.h (set_quoting_flags): New prototype.
20778         * lib/quotearg.c (struct quoting_options): Add flag field.
20779         (set_quoting_flags): New function.
20780         (quotearg_buffer_restyled): Add flags parameter.
20781         (quotearg_alloc_mem): Set the flag if length cannot be returned.
20782         (quotearg_n_options): Set the flag, since length cannot be
20783         returned.
20784         (quoting_options_from_style): Default flags correctly.
20785
20786         Quotearg part 1: more wrappers, restore quotearg_char state.
20787         * lib/quotearg.h (quotearg_alloc_mem, quotearg_n_mem)
20788         (quotearg_mem, quotearg_style_mem, quotearg_char_mem)
20789         (quotearg_colon_mem): New wrappers.
20790         * lib/quotearg.c (quotearg_alloc, quotearg_char): Rewrite...
20791         (quotearg_alloc_mem, quotearg_char_mem): ...in terms of these new
20792         functions.
20793         (quotearg_n_mem, quotearg_mem, quotearg_style_mem)
20794         (quotearg_colon_mem): New functions.
20795
20796 2008-02-11  Bruno Haible  <bruno@clisp.org>
20797
20798         * modules/git-merge-changelog (Makefile.am): Don't use -L and -l for a
20799         library in the current directory: it does not work with parallel make.
20800         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
20801
20802 2008-02-11  Bruno Haible  <bruno@clisp.org>
20803
20804         * .gitattributes: New file.
20805
20806 2008-02-11  Jim Meyering  <meyering@redhat.com>
20807
20808         useless-if-before-free: Fix reversed exit values.
20809         * build-aux/useless-if-before-free: Use correct values
20810         for EXIT_MATCH and EXIT_NO_MATCH.
20811
20812         * build-aux/useless-if-before-free: Close stdout carefully.
20813
20814 2008-02-10  Bruno Haible  <bruno@clisp.org>
20815
20816         New module 'git-merge-changelog'.
20817         * modules/git-merge-changelog: New file.
20818         * lib/git-merge-changelog.c: New file.
20819
20820 2008-02-10  Jim Meyering  <meyering@redhat.com>
20821
20822         useless-if-before-free: New option: --list (-l).
20823
20824         useless-if-before-free: Don't exit immediately upon open failure.
20825         * build-aux/useless-if-before-free: Exit 2 for errors.
20826         Upon failure to open a file, don't exit immediately.
20827         Rather, just warn and continue with any remaining files.
20828
20829 2008-02-10  Bruno Haible  <bruno@clisp.org>
20830
20831         New abstract list operation 'node_set_value'.
20832         * lib/gl_list.h (gl_list_node_set_value): New function.
20833         (struct gl_list_implementation): New field node_set_value.
20834         * lib/gl_list.c (gl_list_node_set_value): New function.
20835         * lib/gl_array_list.c (gl_array_node_set_value): New function.
20836         (gl_array_list_implementation): Update.
20837         * lib/gl_carray_list.c (gl_carray_node_set_value): New function.
20838         (gl_carray_list_implementation): Update.
20839         * lib/gl_anylinked_list2.h (gl_linked_node_set_value): New function.
20840         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
20841         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
20842         * lib/gl_anytree_list2.h (gl_tree_node_set_value): New function.
20843         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
20844         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
20845         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
20846         Update.
20847         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
20848         * lib/gl_sublist.c (gl_sublist_node_set_value): New function.
20849         (gl_sublist_list_implementation): Update.
20850
20851 2008-02-10  Bruno Haible  <bruno@clisp.org>
20852
20853         * lib/diffseq.h: Write "ELEMENT const" instead of "const ELEMENT".
20854         Needed when ELEMENT is #defined to 'some_type *'.
20855
20856 2008-02-10  Jim Meyering  <meyering@redhat.com>
20857
20858         New script and module: useless-if-before-free
20859         * MODULES.html.sh (maint+release support): Add useless-if-before-free.
20860         * build-aux/useless-if-before-free: New file.
20861         * modules/useless-if-before-free: New file.
20862
20863         * build-aux/gitlog-to-changelog: Use committer date, not author date.
20864
20865         xstrtol_error: Fix typo.
20866         * lib/xstrtol-error.c (xstrtol_error): The parameter was unused:
20867         s/exit_failure/exit_status/.
20868
20869 2008-02-09  Jim Meyering  <meyering@redhat.com>
20870
20871         New script and module: gitlog-to-changelog
20872         * MODULES.html.sh (maint+release support): Add gitlog-to-changelog.
20873         * modules/gitlog-to-changelog: New file.
20874         * build-aux/gitlog-to-changelog: New file.
20875
20876 2008-02-08  Jim Meyering  <meyering@redhat.com>
20877
20878         Avoid two "parameter unused" warnings.
20879         * lib/stat-time.h (get_stat_birthtime_ns, get_stat_birthtime):
20880         Mark "st" as used.
20881
20882         Use "git COMMAND", not "git-COMMAND".
20883         * build-aux/bootstrap (version_controlled_file): s/git-rm/git-rm/.
20884         * build-aux/announce-gen (get_tool_versions): Correct a diagnostic.
20885         * build-aux/git-version-gen: Use "git status", not "git-status".
20886
20887 2008-02-07  Bruno Haible  <bruno@clisp.org>
20888
20889         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on native Woe32 systems.
20890         Avoids a crash on Windows Vista.
20891         Reported by Adam Strzelecki <ono@java.pl> via
20892         Simon Josefsson <simon@josefsson.org>.
20893
20894 2008-02-06  Bruno Haible  <bruno@clisp.org>
20895
20896         Fix *printf behaviour regarding the left-adjust flag on HP-UX 10.20.
20897         * m4/printf.m4 (gl_PRINTF_FLAG_LEFTADJUST): New macro.
20898         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_FLAG_LEFTADJUST.
20899         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST): New macro.
20900         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
20901         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
20902         gl_PRINTF_FLAG_LEFTADJUST and test its result. Invoke
20903         gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST.
20904         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
20905         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
20906         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
20907         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
20908         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
20909         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
20910         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
20911         * tests/test-vasnprintf-posix.c (test_function): Add testcases for the
20912         left-adjust flag.
20913         * tests/test-snprintf-posix.h (test_function): Likewise.
20914         * tests/test-sprintf-posix.h (test_function): Likewise.
20915         * tests/test-vasprintf-posix.c (test_function): Likewise.
20916         * doc/posix-functions/fprintf.texi: Update.
20917         * doc/posix-functions/printf.texi: Update.
20918         * doc/posix-functions/snprintf.texi: Update.
20919         * doc/posix-functions/sprintf.texi: Update.
20920         * doc/posix-functions/vfprintf.texi: Update.
20921         * doc/posix-functions/vprintf.texi: Update.
20922         * doc/posix-functions/vsnprintf.texi: Update.
20923         * doc/posix-functions/vsprintf.texi: Update.
20924         Reported by Peter Fales <psfales@alcatel-lucent.com>.
20925
20926 2008-02-06  Bruno Haible  <bruno@clisp.org>
20927
20928         Fix bug introduced on 2008-01-26.
20929         * lib/isnan.c (FUNC): Set to rpl_isnand, not rpl_isnan.
20930
20931 2008-02-06  Bruno Haible  <bruno@clisp.org>
20932
20933         Fix bug introduced on 2007-06-10.
20934         * lib/vasnprintf.c (VASNPRINTF): Perform zero-padding also if
20935         !NEED_PRINTF_FLAG_ZERO.
20936
20937 2008-02-05  Peter O'Gorman <pogma@thewrittenword.com>
20938
20939         getloadavg: use libperfstat on AIX5
20940         * lib/getloadavg.c, m4/getloadavg.m4 [aix]: Use libperfstat
20941
20942 2008-02-03  Bruno Haible  <bruno@clisp.org>
20943
20944         * lib/diffseq.h: Add comments about required #includes.
20945         Reported by Michael Biggs <gnulib@doubleplum.net>.
20946
20947 2008-02-01  Bruno Haible  <bruno@clisp.org>
20948
20949         * users.txt: Add gnuit.
20950
20951 2008-01-31  Bruno Haible  <bruno@clisp.org>
20952
20953         * lib/md4.c (set_uint32): Mark as inline.
20954         * lib/md5.c (set_uint32): Likewise.
20955         * lib/sha1.c (set_uint32): Likewise.
20956         * m4/md4.m4 (gl_MD4): Require AC_C_INLINE.
20957         * m4/md5.m4 (gl_MD5): Likewise.
20958         * m4/sha1.m4 (gl_SHA1): Likewise.
20959
20960 2008-01-31  Jim Meyering  <meyering@redhat.com>
20961
20962         Use "sizeof VAR", rather than a literal "4".
20963         * lib/md5.c (md5_read_ctx): Use sizeof ctx->A, not 4.
20964         * lib/md4.c (md4_read_ctx): Likewise.
20965         * lib/sha1.c (sha1_read_ctx): Likewise.
20966
20967 2008-01-31  Simon Josefsson  <simon@josefsson.org>
20968
20969         * tests/test-sha1.c: New file, based on test-md5.c.
20970
20971         * modules/crypto/sha1-tests: New file.
20972
20973 2008-01-31  Simon Josefsson  <simon@josefsson.org>
20974
20975         * lib/sha1.h (SHA1_DIGEST_SIZE): Define.
20976
20977 2008-01-31  Jim Meyering  <meyering@redhat.com>
20978
20979         Prefer "sizeof v" over the equivalent "4".
20980         * lib/md4.c (set_uint32): Use "sizeof v" as memcpy length, not 4.
20981         * lib/md5.c (set_uint32): Likewise.
20982         * lib/sha1.c (set_uint32): Likewise.
20983
20984 2008-01-31  Simon Josefsson  <simon@josefsson.org>
20985
20986         * lib/sha1.c (set_uint32): Mark function as static.
20987
20988 2008-01-31  Simon Josefsson  <simon@josefsson.org>
20989
20990         md2: clarify comments to say that alignment is not required.
20991         * lib/md2.h: Remove warning about alignment in comment.
20992         * lib/md2.c (md2_read_ctx, md2_finish_ctx): Doc fix, alignment has
20993         never been required.
20994
20995 2008-01-31  Simon Josefsson  <simon@josefsson.org>
20996
20997         md4: adapt alignment constraint fix from sha1.
20998         * lib/md4.c (set_uint32): New function, from sha1.c
20999         (md4_read_ctx): Use it.
21000         (md4_finish_ctx): Doc fix.
21001         * lib/md4.h: Doc fix.
21002
21003 2008-01-31  Simon Josefsson  <simon@josefsson.org>
21004
21005         md5: adapt alignment constraint fix from sha1.
21006         * lib/md5.c (set_uint32): New function, from sha1.c
21007         (md5_read_ctx): Use it.
21008         (md5_finish_ctx): Doc fix.
21009         * lib/md5.h: Doc fix.
21010
21011 2008-01-30  Peter Palfrader  <weasel@debian.org>
21012
21013         sha1: remove the result buffer alignment constraint
21014         * lib/sha1.c (set_uint32): New function.
21015         (sha1_read_ctx): Rewrite to remove the result buffer alignment
21016         constraint.
21017         (sha1_finish_ctx): Remove comment warning about alignment constraint.
21018         * lib/sha1.h: Likewise.
21019
21020 2008-01-30  Andreas Schwab  <schwab@suse.de>
21021             Bruno Haible  <bruno@clisp.org>
21022
21023         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Include <float.h> and ensure a
21024         correct definition of LDBL_MIN_EXP.
21025
21026 2008-01-30  Karl Berry  <karl@gnu.org>
21027
21028         * config/srclist-update: try to preserve x bit on updates.
21029         * config/srclistvars.sh: update for karl.
21030
21031 2008-01-29  Jim Meyering  <meyering@redhat.com>
21032
21033         vasnprintf.c: Avoid warning about unused label
21034         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Guard the
21035         "overflow" label definition and associated code with the
21036         same cpp condition that guards the sole use of that label.
21037
21038 2008-01-26  Bruno Haible  <bruno@clisp.org>
21039
21040         * m4/isnanl.m4 (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM,
21041         gl_FUNC_ISNANL_WORKS): Test the GCC >= 4.0 built-in.
21042         * lib/isnanl.h (isnanl): Use the GCC >= 4.0 built-in.
21043         * lib/isnanl-nolibm.h (isnanl): Likewise.
21044         Reported by Paul Eggert <eggert@cs.ucla.edu>.
21045
21046 2008-01-26  Bruno Haible  <bruno@clisp.org>
21047
21048         * m4/isnand.m4 (gl_FUNC_ISNAND_NO_LIBM): Test the GCC >= 4.0 built-in.
21049         * lib/isnand.h (isnand): Use the GCC >= 4.0 built-in.
21050
21051 2008-01-26  Bruno Haible  <bruno@clisp.org>
21052
21053         * m4/isnanf.m4 (gl_HAVE_ISNANF_NO_LIBM, gl_ISNANF_WORKS): Test the
21054         GCC >= 4.0 built-in.
21055         * lib/isnanf.h (isnanf): Use the GCC >= 4.0 built-in.
21056
21057 2008-01-26  Bruno Haible  <bruno@clisp.org>
21058
21059         Rename isnan, applicable to 'double' only, to isnand.
21060         * modules/isnand-nolibm: Renamed from modules/isnan-nolibm.
21061         (Files): Add lib/isnand.h, lib/isnand.c. Remove lib/isnan.h.
21062         (configure.ac): Update.
21063         (Include): Replace "isnan.h" with "isnand.h".
21064         * m4/isnand.m4: Renamed from m4/isnan.m4.
21065         (gl_FUNC_ISNAND_NO_LIBM): Renamed from gl_FUNC_ISNAN_NO_LIBM. Set
21066         HAVE_ISNAND_IN_LIBC instead of HAVE_ISNAN_IN_LIBC. Build isnand.c
21067         instead of isnan.c.
21068         * lib/isnand.h: Renamed from lib/isnan.h. Test HAVE_ISNAND_IN_LIBC
21069         instead of HAVE_ISNAN_IN_LIBC.
21070         (isnand): Renamed from isnan.
21071         * lib/isnand.c: New file.
21072         * modules/isnand-nolibm-tests: Renamed from modules/isnan-nolibm-tests.
21073         (Files): Add tests/test-isnand.c. Remove tests/test-isnan.c.
21074         (Makefile.am): Update.
21075         * tests/test-isnand.c: Renamed from tests/test-isnan.c.
21076         Include isnand.h instead of isnan.h.
21077         (main): Test isnand instead of isnan.
21078         * modules/fprintf-posix (Depends-on): Add isnand-nolibm, remove
21079         isnan-nolibm.
21080         * modules/frexp (Depends-on): Likewise.
21081         * modules/frexp-tests (Depends-on): Likewise.
21082         * modules/frexp-nolibm (Depends-on): Likewise.
21083         * modules/frexp-nolibm-tests (Depends-on): Likewise.
21084         * modules/isfinite (Depends-on): Likewise.
21085         * modules/round-tests (Depends-on): Likewise.
21086         * modules/signbit (Depends-on): Likewise.
21087         * modules/signbit-tests (Depends-on): Likewise.
21088         * modules/snprintf-posix (Depends-on): Likewise.
21089         * modules/sprintf-posix (Depends-on): Likewise.
21090         * modules/trunc-tests (Depends-on): Likewise.
21091         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
21092         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
21093         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
21094         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
21095         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
21096         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
21097         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
21098         * modules/vasnprintf-posix (Depends-on): Likewise.
21099         * modules/vasprintf-posix (Depends-on): Likewise.
21100         * modules/vfprintf-posix (Depends-on): Likewise.
21101         * modules/vsnprintf-posix (Depends-on): Likewise.
21102         * modules/vsprintf-posix (Depends-on): Likewise.
21103         * lib/frexp.c: Include isnand.h instead of isnan.h.
21104         (ISNAN): Set to isnand instead of isnan.
21105         * lib/isfinite.c: Include isnand.h instead of isnan.h.
21106         (gl_isfinited): Use isnand instead of isnan.
21107         * lib/signbitd.c: Include isnand.h instead of isnan.h.
21108         (gl_signbitd): Use isnand instead of isnan.
21109         * lib/vasnprintf.c: Include isnand.h instead of isnan.h.
21110         (is_infinite_or_zero, VASNPRINTF): Use isnand instead of isnan.
21111         * tests/test-frexp.c: Include isnand.h instead of isnan.h.
21112         (main): Use isnand instead of isnan.
21113         * tests/test-round1.c: Include isnand.h.
21114         (main): Use isnand instead of isnan.
21115         * tests/test-round2.c: Include isnand.h instead of isnan.h.
21116         (ISNAN): Set to isnand instead of isnan.
21117         * tests/test-trunc1.c: Include isnand.h.
21118         (main): Use isnand instead of isnan.
21119         * tests/test-trunc2.c: Include isnand.h instead of isnan.h.
21120         (equal): Use isnand instead of isnan.
21121         * MODULES.html.sh (Mathematics <math.h>): Replace isnan-nolibm with
21122         isnand-nolibm.
21123         * NEWS: Mention the change.
21124
21125 2008-01-25  Paul Eggert  <eggert@cs.ucla.edu>
21126             Bruno Haible  <bruno@clisp.org>
21127
21128         * m4/signbit.m4 (gl_SIGNBIT): Require a macro definition. Test whether
21129         the GCC builtins for signbits are present and set
21130         REPLACE_SIGNBIT_USING_GCC if so.
21131         * lib/math.in.h (signbit): Define using GCC builtins if
21132         REPLACE_SIGNBIT_USING_GCC is set.
21133         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize
21134         REPLACE_SIGNBIT_USING_GCC.
21135         * modules/math (Makefile.am): Substitute REPLACE_SIGNBIT_USING_GCC.
21136
21137 2008-01-25  Jim Meyering  <meyering@redhat.com>
21138
21139         Prefer <config.h> over "config.h".  See autoconf doc for explanation.
21140         * lib/poll.c: Include <config.h>, not "config.h".
21141         * tests/test-getaddrinfo.c: Likewise.
21142
21143 2008-01-25  Simon Josefsson  <simon@josefsson.org>
21144
21145         * modules/sockets-tests: New file.
21146
21147 2008-01-24  Simon Josefsson  <simon@josefsson.org>
21148
21149         * modules/sockets: New module, can be used to call WSA_Startup and
21150         WSA_Cleanup when needed.
21151
21152         * lib/sockets.h, lib/sockets.c: New files.
21153
21154         * m4/sockets.m4: New file.
21155
21156         * tests/test-sockets.c: New file.
21157
21158 2008-01-19  Bruno Haible  <bruno@clisp.org>
21159
21160         * doc/posix-headers: Renamed from doc/headers.
21161         * doc/posix-functions: Renamed from doc/functions.
21162         * doc/gnulib.texi: Update.
21163
21164 2008-01-19  Bruno Haible  <bruno@clisp.org>
21165
21166         * doc/glibc-functions/strcasestr.texi: Include contents of
21167         doc/functions/strcasestr.texi, fixing the list of platforms.
21168         * doc/functions/strcasestr.texi: Remove file.
21169
21170 2008-01-19  Bruno Haible  <bruno@clisp.org>
21171
21172         * doc/glibc-functions/memmem.texi: Include contents of
21173         doc/functions/memmem.texi.
21174         * doc/functions/memmem.texi: Remove file.
21175
21176 2008-01-18  Bruno Haible  <bruno@clisp.org>
21177
21178         * doc/glibc-functions/*.texi: New files.
21179         * doc/gnulib.texi (Glibc Function Substitutes): Completely rewritten
21180         to use the new files.
21181
21182 2008-01-17  Bruno Haible  <bruno@clisp.org>
21183
21184         * tests/test-gethostname.c (main): Fix printf statement.
21185
21186 2008-01-17  Simon Josefsson  <simon@josefsson.org>
21187
21188         * modules/gethostname-tests: New file.
21189
21190         * tests/test-gethostname.c: New file.
21191
21192 2008-01-17  Simon Josefsson  <simon@josefsson.org>
21193
21194         * lib/gethostname.c: Include string.h unconditionally, strncpy is
21195         used by the UNAME case.  Reported by Bruno Haible
21196         <bruno@clisp.org>.
21197
21198 2008-01-17  Eric Blake  <ebb9@byu.net>
21199
21200         Convert c-strcasestr to be more efficient.
21201         * modules/c-strcasestr (Files): Use Two-Way, not KMP.
21202         (Depends-on): Add c-strcase, remove malloca, strnlen.
21203         * tests/test-c-strcasestr.c (main): Enhance test.
21204         * lib/c-strcasestr.c (c_strcasestr): Rewrite to new algorithm.
21205
21206 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
21207
21208         * build-aux/bootstrap (MSGID_BUGS_ADDRESS): New overridable variable.
21209         Use it in creating po/Makevars.
21210
21211 2008-01-15  Simon Josefsson  <simon@josefsson.org>
21212
21213         * lib/gc-libgcrypt.c (gc_init): Disable secure memory by default.
21214         Applications that requires it should initialize libgcrypt
21215         manually.
21216
21217 2008-01-16  Simon Josefsson  <simon@josefsson.org>
21218
21219         * lib/gethostname.c [!HAVE_UNAME]: Need string.h for strcpy.
21220
21221 2008-01-15  Paul Eggert  <eggert@cs.ucla.edu>
21222
21223         Fix problem with getdate on mingw32 reported by Simon Josefsson
21224         in <http://lists.gnu.org/archive/html/bug-gnulib/2008-01/msg00192.html>.
21225         * lib/getdate.y (get_date): Check "HAVE_DECL_TZNAME", not "defined
21226         tzname", when deciding whether to declare tzname.
21227         * lib/strftime.c (tzname): Likewise.
21228
21229 2008-01-15  Bruno Haible  <bruno@clisp.org>
21230
21231         Work around a MacOS X 10.5 bug in frexpl().
21232         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Also check denormalized numbers.
21233         * doc/functions/frexpl.texi: Document the bug.
21234         Reported by Elias Pipping <pipping@gentoo.org>.
21235
21236 2008-01-14  Eric Blake  <ebb9@byu.net>
21237
21238         Touch up previous patch.
21239         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Fix typo.
21240         * doc/functions/strcasestr.texi (strcasestr): Document OpenBSD bug.
21241
21242         Convert strcasestr module to use Two-Way algorithm.
21243         * modules/strcasestr-simple: New module, based on the old
21244         strcasestr, but with Two-Way rather than KMP.
21245         * modules/strcasestr (Depends-on): Change to strcasestr-simple.
21246         * lib/string.in.h (rpl_strcasestr): Declare.
21247         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Check for linear
21248         performance.
21249         * lib/strcasestr.c (strcasestr): Simplify, and avoid malloc.
21250         * modules/string (Makefile.am): Support strcasestr.
21251         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
21252         * modules/strcasestr-tests (Depends-on): Check for alarm.
21253         * tests/test-strcasestr.c: Augment test.
21254         * lib/str-two-way.h: Clean up stray macro.
21255         * NEWS: Document new module.
21256         * MODULES.html.sh (string handling): Likewise.
21257         * doc/functions/strcasestr.texi: New file.
21258         * doc/gnulib.texi (Function Substitutes): New node.  Move memmem
21259         here, since it is not a POSIX function.
21260
21261 2008-01-14  Colin Watson  <cjwatson@debian.org>
21262             Bruno Haible  <bruno@clisp.org>
21263
21264         * m4/strsignal.m4 (gl_FUNC_STRSIGNAL): Also check whether strsignal
21265         works fine; if not, set REPLACE_STRSIGNAL.
21266         (gl_PREREQ_STRSIGNAL): Require AC_DECL_SYS_SIGLIST.
21267         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
21268         REPLACE_STRSIGNAL.
21269         * lib/string.in.h (strsignal): Consider REPLACE_STRSIGNAL.
21270         * modules/string (Makefile.am): Substitute REPLACE_STRSIGNAL.
21271         * tests/test-strsignal.c (main): Check out-of-range signal numbers.
21272
21273 2008-01-14  Bruno Haible  <bruno@clisp.org>
21274
21275         * modules/strsignal (Include): Change to <string.h>.
21276
21277 2008-01-14  Colin Watson  <cjwatson@debian.org>
21278
21279         * modules/argp (Notice): Add a notice recommending to change
21280         XGETTEXT_OPTIONS.
21281         (configure.ac): Invoke AM_XGETTEXT_OPTION if it exists.
21282
21283 2008-01-13  Colin Watson  <cjwatson@debian.org>
21284
21285         * modules/strsignal-tests: New file.
21286         * tests/test-strsignal.c: New file.
21287
21288         * lib/strsignal.c: New file, from glibc with modifications.
21289         * lib/siglist.h: New file, from glibc with modifications.
21290         * lib/string.in.h (strsignal): New declaration.
21291         * m4/strsignal.m4: New file.
21292         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
21293         GNULIB_STRSIGNAL and HAVE_DECL_STRSIGNAL.
21294         * modules/strsignal: New file.
21295         * modules/string (Makefile.am): Substitute GNULIB_STRSIGNAL and
21296         HAVE_DECL_STRSIGNAL.
21297
21298 2008-01-13  Bruno Haible  <bruno@clisp.org>
21299
21300         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check that the
21301         locale encoding is not ASCII. Needed for OpenBSD 4.0.
21302         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
21303         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
21304
21305 2008-01-13  Bruno Haible  <bruno@clisp.org>
21306
21307         * lib/argp-fmtstream.h (__attribute__): Don't redefine if
21308         __STRICT_ANSI__ is set: it's not needed by any version of gcc.
21309         * lib/argp.h (__attribute__): Likewise.
21310         * lib/c-stack.c (__attribute__): Likewise.
21311         * lib/error.h (__attribute__): Likewise.
21312         * lib/fts.c (__attribute__): Likewise.
21313         * lib/openat.h (__attribute__): Likewise.
21314         * lib/stdio.in.h (__attribute__): Likewise.
21315         * lib/string.in.h (__attribute__): Likewise.
21316         * lib/utimens.c (__attribute__): Likewise.
21317         * lib/vasnprintf.h (__attribute__): Likewise.
21318         * lib/xalloc.h (__attribute__): Likewise.
21319         * lib/xprintf.h (__attribute__): Likewise.
21320         * lib/xstrtol.h (__attribute__): Likewise.
21321         * lib/xvasprintf.h (__attribute__): Likewise.
21322
21323 2008-01-12  Bruno Haible  <bruno@clisp.org>
21324
21325         * doc/gnulib.texi (Glibc Header File Substitutes): New chapter.
21326         * doc/glibc-headers/a.out.texi: New file.
21327         * doc/glibc-headers/aliases.texi: New file.
21328         * doc/glibc-headers/alloca.texi: New file.
21329         * doc/glibc-headers/ar.texi: New file.
21330         * doc/glibc-headers/argp.texi: New file.
21331         * doc/glibc-headers/argz.texi: New file.
21332         * doc/glibc-headers/byteswap.texi: New file.
21333         * doc/glibc-headers/crypt.texi: New file.
21334         * doc/glibc-headers/endian.texi: New file.
21335         * doc/glibc-headers/envz.texi: New file.
21336         * doc/glibc-headers/err.texi: New file.
21337         * doc/glibc-headers/error.texi: New file.
21338         * doc/glibc-headers/execinfo.texi: New file.
21339         * doc/glibc-headers/fpu_control.texi: New file.
21340         * doc/glibc-headers/fstab.texi: New file.
21341         * doc/glibc-headers/fts.texi: New file.
21342         * doc/glibc-headers/getopt.texi: New file.
21343         * doc/glibc-headers/ieee754.texi: New file.
21344         * doc/glibc-headers/ifaddrs.texi: New file.
21345         * doc/glibc-headers/libintl.texi: New file.
21346         * doc/glibc-headers/mcheck.texi: New file.
21347         * doc/glibc-headers/mntent.texi: New file.
21348         * doc/glibc-headers/obstack.texi: New file.
21349         * doc/glibc-headers/paths.texi: New file.
21350         * doc/glibc-headers/printf.texi: New file.
21351         * doc/glibc-headers/pty.texi: New file.
21352         * doc/glibc-headers/resolv.texi: New file.
21353         * doc/glibc-headers/shadow.texi: New file.
21354         * doc/glibc-headers/sysexits.texi: New file.
21355         * doc/glibc-headers/ttyent.texi: New file.
21356
21357 2008-01-12  Jim Meyering  <meyering@redhat.com>
21358
21359         announce-gen: emit Gnulib's git-based version string.
21360         * build-aux/announce-gen: Remove option: --gnulib-snapshot-time-stamp=S.
21361         New option --gnulib-version=V, where V is expected to be
21362         the output of running git describe in the gnulib directory.
21363         (get_tool_versions): Request feedback on xdelta.  I suspect it's
21364         not useful, and plan to stop publishing an xdelta file with each
21365         coreutils release.
21366
21367         * build-aux/announce-gen: Also check for lzma-compressed files.
21368
21369 2008-01-11  Bruno Haible  <bruno@clisp.org>
21370
21371         * tests/test-memmem.c (main): Increase maximum allowed time.
21372         * tests/test-strstr.c (main): Likewise.
21373
21374 2008-01-11  Bruno Haible  <bruno@clisp.org>
21375
21376         * doc/functions/memmem.texi: Add more precisions about platforms.
21377         * doc/functions/strstr.texi: Likewise.
21378
21379 2008-01-10  Eric Blake  <ebb9@byu.net>
21380
21381         * m4/strstr.m4: Delete cruft from copy-n-paste.
21382         Reported by Bruno Haible.
21383
21384 2008-01-10  Bruno Haible  <bruno@clisp.org>
21385
21386         Make c-strstr rely on strstr.
21387         * lib/c-strstr.c: Don't include str-kmp.h.
21388         (c_strstr): Define in terms of strstr.
21389         * modules/c-strstr (Files): Remove lib/str-kmp.h.
21390         (Depends-on): Remove stdbool, malloca, strnlen. Add strstr.
21391
21392 2008-01-10  Bruno Haible  <bruno@clisp.org>
21393
21394         * doc/gnulib.texi (String Functions in C Locale): New section.
21395         * doc/c-ctype.texi: New file.
21396         * doc/c-strcase.texi: New file.
21397         * doc/c-strcaseeq.texi: New file.
21398         * doc/c-strcasestr.texi: New file.
21399         * doc/c-strstr.texi: New file.
21400         * doc/c-strtod.texi: New file.
21401         * doc/c-strtold.texi: New file.
21402
21403 2008-01-10  Eric Blake  <ebb9@byu.net>
21404
21405         * lib/relocatable.h: Fix a comment.
21406
21407 2008-01-10  Eric Blake  <ebb9@byu.net>
21408
21409         Share two-way algorithm.
21410         * lib/str-two-way.h: New file, merged from...
21411         * lib/memmem.c: ...here...
21412         * lib/strstr.c: ...and here.
21413         * modules/memmem (Files): Use it.
21414         * modules/strstr (Files): Likewise.
21415
21416         Avoid quadratic strstr implementations.
21417         * lib/strstr.c: New file.
21418         * m4/strstr.m4: Likewise.
21419         * modules/strstr: Likewise.
21420         * modules/strstr-tests: Likewise.
21421         * tests/test-strstr.c: Likewise.
21422         * lib/string.in.h (rpl_strstr): Declare.
21423         (memmem) [GNULIB_POSIXCHECK]: Document speed issue.
21424         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Support strstr.
21425         * modules/string (Makefile.am): Likewise.
21426         * MODULES.html.sh (string handling): Mention new module.
21427         * doc/functions/strstr.texi (strstr): Document the bug.
21428
21429 2008-01-10  Bruno Haible  <bruno@clisp.org>
21430
21431         * lib/relocatable.h (relocate): State whether result is freshly
21432         allocated or not.
21433         * lib/relocatable.c (relocate): Return a freshly allocated string
21434         instead of a pointer to a privately held string.
21435         Reported by Sylvain Beucler <beuc@gnu.org>.
21436
21437 2008-01-10  Colin Watson  <cjwatson@debian.org>
21438
21439         * lib/canonicalize-lgpl.c [!_LIBC]: Fix typo in #if directive:
21440         s/S_ISNLK/S_ISLNK/.
21441
21442 2008-01-09  Bruno Haible  <bruno@clisp.org>
21443
21444         * doc/functions/memmem.texi: Use the same structure as snprintf.texi
21445         and other files.
21446         * m4/memmem.m4 (gl_FUNC_MEMMEM): Say "guessing no" instead of "no"
21447         if it's only a guess.
21448         * modules/memmem: Simplify by depending on memmem-simple.
21449
21450 2008-01-09  Bruno Haible  <bruno@clisp.org>
21451
21452         Work around OpenBSD 4.0 tdelete() bug.
21453         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Also check tdelete's return value.
21454         * lib/search.in.h: If REPLACE_TSEARCH is 1, define tsearch etc. as
21455         macros and don't redefine the enum values.
21456         * m4/search_h.m4 (gl_SEARCH_H_DEFAULTS): Initialize REPLACE_TSEARCH.
21457         * modules/search (Makefile.am): Also substitute REPLACE_TSEARCH.
21458         * doc/functions/tdelete.texi: Document the OpenBSD 4.0 bug.
21459
21460 2008-01-09  Bruno Haible  <bruno@clisp.org>
21461
21462         * tests/test-wcwidth.c: Include <string.h> and localcharset.h.
21463         (main): Don't perform the tests if setlocale did not install a UTF-8
21464         locale. Needed on OpenBSD 4.0.
21465         * modules/wcwidth-tests (Depends-on): Add localcharset.
21466
21467 2008-01-09  Paul Eggert  <eggert@cs.ucla.edu>
21468
21469         gl_FUNC_ALLOCA no longer defines HAVE_ALLOCA_H unconditionally.
21470         See <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00149.html>.
21471         * NEWS: announce this.
21472         * m4/alloca.m4 (gl_FUNC_ALLOCA): Don't define HAVE_ALLOCA_H.
21473
21474 2008-01-09  Simon Josefsson  <simon@josefsson.org>
21475         and Eric Blake  <ebb9@byu.net>
21476
21477         Add memmem-simple module.
21478         * m4/memmem.m4 (gl_FUNC_MEMMEM_SIMPLE): New macro.
21479         (gl_FUNC_MEMMEM): Separate performance from presence checks.
21480         * modules/memmem-simple: New file.
21481         * modules/memmem (Description): Tweak.
21482         * MODULES.html.sh (string handling): Mention new module.
21483         * doc/functions/memmem.texi (memmem): Distinguish which flaws are
21484         addressed by memmem-simple.
21485         * NEWS: Document the difference.
21486
21487 2008-01-09  Eric Blake  <ebb9@byu.net>
21488
21489         Give gcc some memmem optimization hints.
21490         * lib/string.in.h (memmem, memrchr, strchrnul, strnlen, strpbrk)
21491         (strcasestr): Declare as pure.
21492         * modules/memmem (Maintainer): Claim my implementation.
21493
21494 2008-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21495
21496         Support AIX 6.1 and higher.
21497         * build-aux/config.libpath: Likewise.
21498         * build-aux/config.rpath: Likewise.
21499
21500 2008-01-08  Jim Meyering  <meyering@redhat.com>
21501             Bruno Haible  <bruno@clisp.org>
21502
21503         * lib/printf-parse.c (PRINTF_PARSE): Handle a size specifier "q"
21504         on MacOS X and a size specifier "I64" on mingw. Needed for PRIdMAX.
21505         Reported by Peter Fales in
21506         <http://lists.gnu.org/archive/html/bug-coreutils/2007-12/msg00148.html>.
21507
21508 2008-01-08  Bruno Haible  <bruno@clisp.org>
21509
21510         * modules/unictype/category-of (Depends-on): Add
21511         unictype/category-none.
21512         * modules/unictype/category-and-tests (Depends-on): Add
21513         unictype/category-{L,N,Lu,Nd}.
21514         * modules/unictype/category-and-not-tests (Depends-on): Likewise.
21515         * modules/unictype/category-or-tests (Depends-on): Add
21516         unictype/category-{L,N}.
21517         * modules/unictype/category-name-tests (Depends-on): Add
21518         unictype/category-{Z,Nl}.
21519         Reported by Simon Josefsson.
21520
21521 2008-01-08  Bruno Haible  <bruno@clisp.org>
21522
21523         * lib/str-kmp.h (knuth_morris_pratt_unibyte): Document the calling
21524         convention better.
21525         * lib/mbsstr.c (knuth_morris_pratt_multibyte): Likewise.
21526         * lib/mbscasestr.c (knuth_morris_pratt_multibyte): Likewise.
21527         Reported by Peter Miller <millerp@canb.auug.org.au>.
21528
21529 2008-01-08  Eric Blake  <ebb9@byu.net>
21530
21531         Rewrite memmem to guarantee linear complexity without malloc.
21532         * lib/memmem.c (memmem): Use Two-Way rather than
21533         Knuth-Morris-Pratt, to allow O(1) space usage.
21534         (critical_factorization, two_way_short_needle)
21535         (two_way_long_needle): New functions.
21536         (knuth_morris_pratt): Delete.
21537         * modules/memmem (Depends-on): No longer need malloca or stdbool.
21538         Add stdint.
21539         * tests/test-memmem.c (main): Add tests for periodic needle and
21540         sublinear performance.
21541         * doc/functions/memmem.texi (memmem): Document other deficiencies
21542         in cygwin and older glibc.
21543
21544 2008-01-08  Bruno Haible  <bruno@clisp.org>
21545
21546         * modules/memmem-tests (Makefile.am): Remove TESTS_ENVIRONMENT
21547         augmentation.
21548
21549 2008-01-08  Mike Frysinger  <vapier@gentoo.org>
21550
21551         Add a configure time option: --disable-acl.
21552         * m4/acl.m4 (gl_FUNC_ACL): Wrap all ACL logic in a call to
21553         AC_ARG_ENABLE(acl).
21554
21555 2008-01-06  Simon Josefsson  <simon@josefsson.org>
21556
21557         * tests/test-localename.c: Don't include obsolete "setenv.h".
21558
21559         * modules/localename-tests (Depends-on): Need unsetenv.
21560
21561 2008-01-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21562
21563         * DEPENDENCIES: Require Texinfo version 4.6 or newer.
21564
21565 2008-01-06  Colin Watson  <cjwatson@debian.org>
21566
21567         * users.txt: Add man-db.
21568
21569 2008-01-07  Bruno Haible  <bruno@clisp.org>
21570
21571         * doc/gnulib-intro.texi (Library vs Reusable Code): Restore the
21572         previous section name.
21573
21574 2008-01-07  Bruno Haible  <bruno@clisp.org>
21575
21576         * lib/progname.c (set_program_name): Don't strip off a leading
21577         "lt-" prefix outside a .libs directory.
21578         Suggested by Paul Eggert.
21579
21580 2008-01-01  Sylvain Beucler  <beuc@gnu.org>
21581             Bruno Haible  <bruno@clisp.org>
21582
21583         Improve memory cleanup in 'relocatable' module.
21584         * lib/relocatable.h (compute_curr_prefix): Change return type to
21585         'char *'.
21586         * lib/relocatable.c (compute_curr_prefix): Change return type to
21587         'char *'. Free curr_installdir after use.
21588         (relocate): Free curr_prefix_better after use.
21589         * lib/progreloc.c (prepare_relocate): Free curr_prefix after use.
21590
21591 2008-01-01  Bruno Haible  <bruno@clisp.org>
21592
21593         * tests/test-wcwidth.c (main): Relax test of U+2060. Avoids a test
21594         failure on older glibc systems.
21595         Reported by Peter Fales <psfales@alcatel-lucent.com>.
21596
21597 2008-01-05  Eric Blake  <ebb9@byu.net>
21598
21599         Avoid quadratic system memmem.
21600         * m4/memmem.m4 (gl_FUNC_MEMMEM): Check for quadratic memmem.
21601         Reported by Ralf Wildenhues.
21602
21603         Fix memmem test for mingw.
21604         * modules/memmem-tests (configure.ac): Check for alarm.
21605         * tests/test-memmem.c (main): Avoid alarm on platforms that lack
21606         it.
21607         * doc/functions/memmem.texi: New file.
21608         * doc/gnulib.texi (Function Substitutes): Add memmem.
21609         Reported by Bruno Haible.
21610
21611 2008-01-04  Bruno Haible  <bruno@clisp.org>
21612
21613         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP):
21614         Require gl_HEADER_STRINGS_H_DEFAULTS, not
21615         gl_HEADER_STRING_H_DEFAULTS.
21616
21617 2008-01-04  Eric Blake  <ebb9@byu.net>
21618
21619         Shorten duration of memmem test.
21620         * tests/test-memmem.c (main): Use alarm to declare failure if test
21621         is taking too long.
21622         Reported by Ralf Wildenhues.
21623
21624 2007-12-21  Simon Josefsson  <simon@josefsson.org>
21625
21626         * modules/relocatable-prog-wrapper (Depends-on): Add intprops and
21627         string, needed by strerror.
21628
21629 2008-01-03  Colin Watson  <cjwatson@debian.org>
21630             Bruno Haible  <bruno@clisp.org>
21631
21632         * doc/gnulib-tool.texi (Localization): New section.
21633
21634 2008-01-02  Bruno Haible  <bruno@clisp.org>
21635
21636         * lib/memmem.c (knuth_morris_pratt, memmem): Change all 'char *'
21637         variables to 'unsigned char *' type.
21638         Reported by Paul Eggert.
21639
21640 2008-01-02  Jim Meyering  <jim@meyering.net>
21641
21642         * lib/version-etc.c (COPYRIGHT_YEAR): Increase for new year.
21643
21644 2007-12-31  Jim Meyering  <jim@meyering.net>
21645
21646         Avoid use of private FTS type name.
21647         * lib/fts.c (fts_sort): Use FTSENT rather than "struct _ftsent".
21648
21649 2007-12-30  Karl Berry  <karl@gnu.org>
21650
21651         * doc/gnulib.texi (Library vs. Reusable Code): remove period, to
21652         work around defect in Texinfo and/or the standalone Info browser.
21653
21654 2007-12-30  Bruno Haible  <bruno@clisp.org>
21655
21656         Unify 5 copies of the KMP code.
21657         * lib/str-kmp.h: New file.
21658         * lib/c-strcasestr.c: Include str-kmp.h.
21659         (knuth_morris_pratt): Remove function.
21660         (c_strcasestr): Update.
21661         * lib/c-strstr.c: Include str-kmp.h.
21662         (knuth_morris_pratt): Remove function.
21663         (c_strcasestr): Update.
21664         * lib/mbscasestr.c: Include str-kmp.h.
21665         (knuth_morris_pratt_unibyte): Remove function.
21666         * lib/mbsstr.c: Include str-kmp.h.
21667         (knuth_morris_pratt_unibyte): Remove function.
21668         * lib/strcasestr.c: Include str-kmp.h.
21669         (knuth_morris_pratt): Remove function.
21670         (strcasestr): Update.
21671         * modules/c-strcasestr (Files): Add lib/str-kmp.h.
21672         * modules/c-strstr (Files): Likewise.
21673         * modules/mbscasestr (Files): Likewise.
21674         * modules/mbsstr (Files): Likewise.
21675         * modules/strcasestr (Files): Likewise.
21676         Suggested by Paul Eggert.
21677
21678 2007-12-30  Bruno Haible  <bruno@clisp.org>
21679
21680         * lib/xmalloca.c (xmmalloca): Don't define if HAVE_ALLOCA is not
21681         defined.
21682
21683 2007-12-30  Bruno Haible  <bruno@clisp.org>
21684
21685         * lib/xmalloca.h: Include xalloc.h.
21686         (xnmalloca): New macro.
21687
21688 2007-12-30  Bruno Haible  <bruno@clisp.org>
21689
21690         * lib/malloca.h (nmalloca): New macro.
21691         * lib/c-strcasestr.c (knuth_morris_pratt): Use it.
21692         * lib/c-strstr.c (knuth_morris_pratt): Likewise.
21693         * lib/mbscasestr.c (knuth_morris_pratt_unibyte,
21694         knuth_morris_pratt_multibyte): Likewise.
21695         * lib/mbsstr.c (knuth_morris_pratt_unibyte,
21696         knuth_morris_pratt_multibyte): Likewise.
21697         * lib/memmem.c (knuth_morris_pratt): Likewise.
21698         * lib/strcasestr.c (knuth_morris_pratt): Likewise.
21699
21700 2007-12-25  Bruno Haible  <bruno@clisp.org>
21701
21702         Fixup after 2007-10-17 commit. Ensure that 'glob' stays under LGPLv2+.
21703         * lib/glob.c: Don't include openat.h.
21704         (link_exists2_p): Add back the code that deals with the
21705         !GLOB_ALTDIRFUNC case.
21706         (link_exists_p) [!_LIBC && !HAVE_FSTATAT]: Just call link_exists2_p and
21707         let it do the filename concatenation.
21708         * m4/glob.m4 (gl_PREREQ_GLOB): Add check for fstatat.
21709         * modules/glob (Depends-on): Remove openat.
21710
21711 2007-12-31  Bruno Haible  <bruno@clisp.org>
21712
21713         * modules/dirfd (License): Change to LGPLv2+.
21714         Approved by Jim Meyering.
21715
21716 2007-12-29  Paul Eggert  <eggert@cs.ucla.edu>
21717
21718         * lib/memmem.c (knuth_morris_pratt): Check for size_t overflow
21719         when multiplying M by sizeof (size_t).
21720
21721 2007-12-10  Martin Lambers  <marlam@marlam.de>
21722
21723         Override getpagesize on mingw.
21724         * lib/getpagesize.c: New file.
21725         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Enable replacement on mingw.
21726         * modules/getpagesize (Files): Add lib/getpagesize.c.
21727         * lib/unistd.in.h (getpagesize): Declare if we are using a replacement.
21728         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
21729         REPLACE_GETPAGESIZE.
21730         * modules/unistd (Makefile.am): Substitute REPLACE_GETPAGESIZE.
21731
21732 2007-12-25  Bruno Haible  <bruno@clisp.org>
21733
21734         * modules/localcharset (Notice): New field.
21735         (configure.ac): Define LOCALCHARSET_TESTS_ENVIRONMENT.
21736         Suggested by Ben Pfaff <blp@cs.stanford.edu>.
21737
21738 2007-12-25  Paul Eggert  <eggert@cs.ucla.edu>
21739             Bruno Haible  <bruno@clisp.org>
21740
21741         Avoid using the syntax symbol() in formatted documentation.
21742         * MODULES.html.sh (func_module): When replacing symbol() with a
21743         hyperlink, remove the parentheses. Show an error if some remain.
21744         Recognize and render the '...' syntax.
21745         * doc/alloca-opt.texi: Remove parentheses from symbol reference.
21746         Rework. Add paragraph about GCC's inlining.
21747         * doc/alloca.texi: Likewise.
21748         * doc/error.texi: Remove parentheses from symbol reference.
21749         * doc/gnulib-intro.texi: Likewise.
21750         * doc/gnulib.texi (alloca, alloca-opt): New nodes.
21751         * modules/fnmatch (Description): Reword to say "the ... function".
21752         * modules/full-read (Description): Likewise.
21753         * modules/full-write (Description): Likewise.
21754         * modules/safe-read (Description): Likewise.
21755         * modules/safe-write (Description): Likewise.
21756         * modules/strchrnul (Description): Likewise.
21757         * modules/trim (Description): Likewise.
21758         * modules/error (Description): Remove parentheses from symbol
21759         references.
21760         * modules/verror (Description): Likewise.
21761         Reported by Karl Berry.
21762
21763 2007-12-25  Bruno Haible  <bruno@clisp.org>
21764
21765         Fixup after 2007-10-16 commit.
21766         * lib/glob.c (glob_in_dir): Don't use ISO C99 syntax.
21767
21768 2007-12-24  Bruno Haible  <bruno@clisp.org>
21769
21770         Make --enable-relocatable work with DESTDIR.
21771         * build-aux/install-reloc: Accept another argument 'destdir'. Use it
21772         to compute installdir from destprog.
21773         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV,
21774         also set the RELOC_DESTDIR variable.
21775         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
21776
21777 2007-12-24  Bruno Haible  <bruno@clisp.org>
21778
21779         Fix link error due to xalloc_die().
21780         * lib/progreloc.c: When NO_XMALLOC is defined, use areadlink instead
21781         of xreadlink.
21782         * lib/relocwrapper.c: Update comments.
21783         * build-aux/install-reloc: Remove xreadlink.c from file list.
21784         * modules/relocatable-prog-wrapper (Files): Remove xreadlink.h and
21785         xreadlink.c.
21786         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
21787
21788 2007-12-24  Bruno Haible  <bruno@clisp.org>
21789
21790         Split setenv module into setenv and unsetenv. Get rid of setenv.h.
21791         * lib/setenv.h: Remove file.
21792         * lib/stdlib.in.h (setenv, unsetenv): New declarations, moved here from
21793         lib/setenv.h.
21794         * modules/setenv (Files): Remove lib/setenv.h, lib/unsetenv.c.
21795         (Depends-on): Add stdlib.
21796         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR. Don't invoke
21797         gl_FUNC_UNSETENV.
21798         (Include): Replace setenv.h with <stdlib.h>.
21799         * modules/unsetenv: New file.
21800         * lib/setenv.c: Include <stdlib.h> first, after alloca.h.
21801         * lib/unsetenv.c: Include <stdlib.h> first.
21802         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_SETENV_SEPARATE): Require
21803         gl_STDLIB_H_DEFAULTS. Conditionally set HAVE_SETENV to 0.
21804         (gl_FUNC_UNSETENV): Require gl_STDLIB_H_DEFAULTS. Conditionally set
21805         HAVE_UNSETENV to 0. Set VOID_UNSETENV as an AC_SUBSTed variable.
21806         * modules/stdlib (Makefile.am): Substitute also GNULIB_SETENV,
21807         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
21808         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_SETENV,
21809         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
21810         * doc/functions/unsetenv.texi: Update.
21811         * modules/xsetenv (Depends-on): Add unsetenv.
21812         * modules/getdate (Depends-on): Likewise.
21813         * lib/xsetenv.h: Include <stdlib.h> instead of setenv.h.
21814         * lib/xsetenv.c: Don't include setenv.h.
21815         * lib/getdate.y: Likewise.
21816         * lib/relocwrapper.c: Likewise.
21817         * modules/relocatable-prog-wrapper (Files): Remove lib/setenv.h.
21818         (Depends-on): Add stdlib.
21819         * NEWS: Mention the changes.
21820         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
21821
21822 2007-12-23  Bruno Haible  <bruno@clisp.org>
21823
21824         * lib/memmem.c (memmem): Use lowercase variable names. Tab
21825         indentation.
21826
21827 2007-12-23  Bruno Haible  <bruno@clisp.org>
21828
21829         * lib/c-strcasestr.c: Add more comments.
21830         * lib/c-strstr.c: Likewise.
21831         * lib/mbscasestr.c: Likewise.
21832         * lib/mbsstr.c: Likewise.
21833         * lib/strcasestr.c: Likewise.
21834         * lib/memmem.c: Likewise.
21835
21836 2007-12-23  Bruno Haible  <bruno@clisp.org>
21837
21838         * tests/test-memmem.c: Include <string.h> first.
21839
21840 2007-12-22  Bruno Haible  <bruno@clisp.org>
21841
21842         * gnulib-tool (func_create_testdir): Change $auxdir while generating
21843         the contents of $testsbase.
21844         Reported by Ralf Wildenhues.
21845
21846 2007-12-22  Bruno Haible  <bruno@clisp.org>
21847
21848         * gnulib-tool (func_emit_tests_Makefile_am): Replace local_ldadd with
21849         two variables local_ldadd_before, local_ldadd_last.
21850
21851 2007-12-20  Eric Blake  <ebb9@byu.net>
21852
21853         Work around circular library issue when cross-compiling.
21854         * lib/progname.c (set_program_name): Use strncmp, not memcmp, so
21855         that progname.o does not need to pull in rpl_memcmp.
21856
21857 2007-12-19  Eric Blake  <ebb9@byu.net>
21858
21859         Fix memmem to avoid O(n^2) worst-case complexity.
21860         * lib/memmem.c (knuth_morris_pratt): New function.
21861         (memmem): Use it if first few naive iterations fail.
21862         * m4/memmem.m4 (gl_FUNC_MEMMEM): Detect cygwin bug.
21863         * modules/memcmp (License): Set to LGPLv2+, not LGPL.
21864         * modules/memchr (License): Likewise.
21865         * modules/memmem (Depends-on): Add memcmp, memchr, stdbool, and
21866         malloca.
21867         * tests/test-memmem.c: Rewrite, borrowing ideas from
21868         test-mbsstr1.c; the old version wouldn't even compile!
21869         * modules/memmem-tests: New file.
21870         * lib/string.in.h (rpl_memmem): Add declaration.
21871         * modules/string (Makefile.am): Substitute REPLACE_MEMMEM.
21872         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Default for
21873         REPLACE_MEMMEM.
21874
21875 2007-12-18  Paul Eggert  <eggert@cs.ucla.edu>
21876
21877         Fix problem with _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H on VMS.
21878         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_INTTYPES_H): Define
21879         before any system include files, and undef after them all.  This
21880         should fix a problem on VMS reported by John E. Malmberg in
21881         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00118.html>.
21882
21883 2007-12-17  Eric Blake  <ebb9@byu.net>
21884
21885         Revert addition of verify, for BSD/OS.
21886         * lib/fseeko.c [!HAVE_FSEEKO]: Allow off_t > long, even though it
21887         can't handle large files, for the sake of obsolete platforms.
21888         * modules/fseeko (Depends-on): Remove verify.
21889         * doc/functions/fseeko.texi (fseeko): Document BSD/OS limitation.
21890         * doc/functions/ftello.texi (ftello): Likewise.
21891         * doc/functions/fgetpos.texi (fgetpos): Likewise.
21892         Reported by Larry Jones.
21893
21894 2007-12-17  Petr Salinger  <Petr.Salinger@seznam.cz>
21895
21896         getcwd.c: Use a more readable witness: HAVE_OPENAT_SUPPORT
21897         * lib/getcwd.c: Define and use HAVE_OPENAT_SUPPORT, in place of AT_FDCWD.
21898
21899 2007-12-17  Jim Meyering  <meyering@redhat.com>
21900
21901         Port to GNU/kFreeBSD - FreeBSD kernel + GNU libc,
21902         which has no openat syscall, yet <fcntl.h> does define AT_FDCWD.
21903         * lib/getcwd.c: Undef AT_FDCWD if there is no openat function.
21904         * modules/getcwd (Depends-on): Add openat.
21905         Reported by Petr Salinger.
21906
21907 2007-12-17  Bruno Haible  <bruno@clisp.org>
21908
21909         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Use GL_NOCRASH to
21910         avoid a segmentation fault of the configure test on x86_64 systems.
21911
21912 2007-12-15  Jim Meyering  <meyering@redhat.com>
21913
21914         * build-aux/gnupload (GPG): Don't hard-code absolute name of gpg binary.
21915
21916 2007-12-13  Eric Blake  <ebb9@byu.net>
21917
21918         Another fseek test.
21919         * tests/test-fseek.c (main): Also test ungetc handling.
21920         * tests/test-fseeko.c (main): Likewise.
21921         * modules/fseeko (Depends-on): Add verify.
21922         * lib/fseeko.c [!HAVE_FSEEKO]: Verify that off_t is not too
21923         large.
21924         Reported by Larry Jones.
21925
21926         Fix fseeko on mingw.
21927         * lib/fseeko.c (rpl_fseeko) [_IOERR]: Reset EOF flag on successful
21928         seek.
21929
21930         Beef up fseek tests.
21931         * tests/test-fseek.c (main): Also test eof handling.
21932         * tests/test-fseeko.c (main): Likewise.
21933         Reported by Larry Jones.
21934
21935 2007-12-13  Larry Jones  <lawrence.jones@siemens.com>  (tiny change)
21936
21937         Fix fseeko on BSD-based platforms.
21938         * lib/fseeko.c (rpl_fseeko) [__sferror]: Reset EOF flag on
21939         successful seek.
21940
21941 2007-12-12  Eric Blake  <ebb9@byu.net>
21942
21943         Allow circular dependency of separate libtests.a
21944         * gnulib-tool (func_emit_tests_Makefile_am): Add AM_LIBTOOLFLAGS
21945         when use_libtests.
21946
21947 2007-12-11  Eric Blake  <ebb9@byu.net>
21948
21949         Fix bug with -0.0L in previous patch.
21950         * lib/isnan.c (rpl_isnanl): Make robust to -0.0L and pad bits.
21951         * tests/test-isnan.c (main): Also test on zeroes.
21952         * tests/test-isnanf.c (main): Likewise.
21953         * tests/test-isnanl.h (main): Likewise.
21954
21955         Detect pseudo-denormals on x86 even when cross-compiling.
21956         * lib/isnan.c (rpl_isnanl) [!KNOWN_EXPBIT0_LOCATION
21957         && USE_LONG_DOUBLE && x86]: Add one more check to filter out
21958         invalid bit patterns that happen to satisfy ==.
21959
21960         Avoid link failures with separate libtests.a.
21961         * gnulib-tool (func_emit_tests_Makefile_am): Also list local_ldadd
21962         last, to satisfy circular dependencies.
21963
21964 2007-12-11  Eric Blake  <ebb9@byu.net>
21965         and Bruno Haible  <bruno@clisp.org>
21966
21967         Fix OpenBSD 4.0 <float.h> handling of long double.
21968         * m4/float_h.m4 (gl_FLOAT_H): Also claim OpenBSD is broken.
21969         * lib/float.in.h [__OpenBSD__]: Add fixes for OpenBSD.
21970         * doc/headers/float.texi (float.h): Document OpenBSD bug.
21971
21972 2007-12-11  Jim Meyering  <meyering@redhat.com>
21973
21974         * users.txt: Add libvirt.
21975
21976         Support versions of autoconf prior to 2.59c.
21977         * gnulib-tool (func_emit_initmacro_done): Define m4_foreach_w
21978         if it is not already defined.
21979
21980 2007-12-09  Bruno Haible  <bruno@clisp.org>
21981
21982         Let 'gnulib-tool --import' collect sources needed for the tests in
21983         tests/ rather than in lib/.
21984         * gnulib-tool (func_emit_tests_Makefile_am): Accept use_libtests
21985         argument. If true, add rules to generate libtests.a, and put libtests.a
21986         into $(LDADD). Consider source files in subdirectories and set
21987         uses_subdirs.
21988         (func_emit_initmacro_start, func_emit_initmacro_end,
21989         func_emit_initmacro_done): Pass all arguments explicitly.
21990         (func_import): Determine two module lists main_modules,
21991         testsrelated_modules. Determine use_libtests. Determine two variables
21992         sed_transform_main_lib_file, sed_transform_testsrelated_lib_file
21993         instead of just sed_transform_lib_file. Determine two variables
21994         main_files and testsrelated_files. Compute 'files' as the union of
21995         both. Adjust sed_rewrite_old_files, sed_rewrite_new_files,
21996         func_add_or_update. In the generated gnulib-comp.m4, collect the
21997         object files for tests/ in different variables than those for lib/.
21998         Substitute LIBTESTS_LIBDEPS.
21999         (func_create_testdir): Combine the uses_subdirs results from
22000         func_emit_lib_Makefile_am and from func_emit_tests_Makefile_am.
22001
22002 2007-12-09  Bruno Haible  <bruno@clisp.org>
22003
22004         * gnulib-tool (func_emit_tests_Makefile_am): Expand references to
22005         the build-aux directory.
22006
22007 2007-12-09  Bruno Haible  <bruno@clisp.org>
22008
22009         * gnulib-tool (func_emit_tests_Makefile_am): Remove redundant code
22010         introduced on 2006-09-09.
22011
22012 2007-12-07  Jim Meyering  <meyering@redhat.com>
22013
22014         Let these macros work also with autoconf-2.59.
22015         * m4/getline.m4 (gl_FUNC_GETLINE): Require only autoconf-2.59.  2.60
22016         is not needed, since gnulib now permits use of AC_CHECK_DECLS_ONCE.
22017         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
22018
22019 2007-12-06  Jim Meyering  <meyering@redhat.com>
22020
22021         Avoid a configure-time syntax error in gl_FUNC_ACL.
22022         * m4/acl.m4 (gl_FUNC_ACL): Be careful to check for the acl_trivial
22023         function in each branch, before testing the cache variable.
22024
22025 2007-12-04  Eric Blake  <ebb9@byu.net>
22026
22027         Make scripts executable.
22028         * build-aux/config.guess: Add execute permissions.
22029         * build-aux/config.sub: Likewise.
22030         * build-aux/gendocs.sh: Likewise.
22031
22032         Fix frexp on mingw.
22033         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Detect mingw bug when
22034         cross-compiling.
22035         * doc/functions/frexp.texi (frexp): Document the bug.
22036
22037         Make cygwin fseeko check more reliable.
22038         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Use cygwin
22039         version numbers, rather than unrelated feature check.
22040         * doc/functions/fseeko.texi (fseeko): Tweak failure report.
22041         * doc/functions/ftello.texi (ftello): Likewise.
22042         Reported by Bruno Haible.
22043
22044         * m4/strerror.m4: Bump version number.
22045
22046 2007-12-03  Bruno Haible  <bruno@clisp.org>
22047
22048         * doc/functions/mprotect.texi: Mention the mingw problem.
22049
22050 2007-12-03  Eric Blake  <ebb9@byu.net>
22051
22052         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Ensure
22053         REPLACE_STRERROR is initialized before this macro.
22054
22055 2007-12-03  Paul Eggert  <eggert@cs.ucla.edu>
22056
22057         Add support for Solaris 10 ACLs.  Also, ACLs are Gnulib, not Autoconf.
22058         * modules/acl (configure.ac): Rename AC_FUNC_ACL to gl_FUNC_ACL.
22059         * m4/acl.m4 (gl_FUNC_ACL): Renamed from AC_FUNC_ACL.  On Solaris,
22060         put -lsec in even for programs other than 'ls'.  This fixes a problem
22061         for gettext reported by Bruno Haible in
22062         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00007.html>.
22063         * lib/acl.c (copy_acl, qset_acl) [USE_ACL && defined ACL_NO_TRIVIAL]:
22064         Add support for Solaris 10.  This isn't efficient, but should get the
22065         job done for now.
22066
22067 2007-12-03  James Youngman  <jay@gnu.org>
22068
22069         * doc/regexprops-generic.texi: change "an close-group" to "a
22070         close-group" and "illegal" to "not allowed".
22071
22072 2007-11-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22073
22074         * lib/unictype/pr_byname.c: Include unictype/pr_byname.h instead of
22075         pr_byname.h. Needed for the rare case when the maintainer has done
22076         "make maintainer-clean" in the source directory and then attempts a
22077         build outside the source directory.
22078         * lib/unictype/scripts.c: Include unictype/scripts_byname.h instead of
22079         scripts_byname.h.
22080
22081 2007-12-02  Martin Lambers <marlam@marlam.de>
22082             Bruno Haible  <bruno@clisp.org>
22083
22084         * lib/getpagesize.h: Remove file.
22085         * lib/unistd.in.h: Include declaration of getpagesize here.
22086         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Renamed from gl_GETPAGESIZE.
22087         Invoke gl_UNISTD_H_DEFAULTS. Set HAVE_GETPAGESIZE, HAVE_OS_H,
22088         HAVE_SYS_PARAM_H.
22089         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETPAGESIZE,
22090         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
22091         * modules/getpagesize (Files): Remove lib/getpagesize.h.
22092         (Depends-on): Add unistd.
22093         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
22094         (Include): Use <unistd.h> instead of getpagesize.h.
22095         * modules/unistd (Makefile.am): Substitute also GNULIB_GETPAGESIZE,
22096         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
22097         * m4/pagealign_alloc.m4 (gl_PREREQ_PAGEALIGN_ALLOC): Remove
22098         gl_GETPAGESIZE invocation, already handled by module dependency.
22099         * lib/pagealign_alloc.c: Don't include getpagesize.h.
22100
22101 2007-12-02  Bruno Haible  <bruno@clisp.org>
22102
22103         * modules/strings-tests: New file.
22104         * tests/test-strings.c: New file.
22105
22106         Move declarations of str{,n}casecmp from <string.h> to <strings.h>.
22107         * lib/strings.in.h: New file.
22108         * lib/string.in.h (strcasecmp, strncasecmp): Remove declarations.
22109         * m4/strings_h.m4: New file.
22110         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Remove initialization
22111         of HAVE_STRCASECMP, HAVE_DECL_STRNCASECMP.
22112         * modules/strings: New file.
22113         * modules/string (Makefile.am): Update.
22114         * modules/strcase (Include): Mention <strings.h>, not <string.h>.
22115         Reported by Karl Berry.
22116
22117 2007-12-01  Eric Blake  <ebb9@byu.net>
22118
22119         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Rewrite to
22120         accomodate fix in cygwin 1.5.25.
22121
22122 2007-12-01  Jim Meyering  <meyering@redhat.com>
22123
22124         Fix a bug that inhibited much of the utf8-optimization in regcomp.c.
22125         * lib/regcomp.c (optimize_utf8): Fix a typo, s/idx/ctx_type/,
22126         that would inhibit utf8-optimization of a regexp containing line-
22127         or buffer-anchors, e.g., `^', `$'.
22128
22129 2007-11-30  Bruno Haible  <bruno@clisp.org>
22130
22131         * lib/lock.h (gl_recursive_lock_init) [PTHREAD &&
22132         PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Call
22133         glthread_recursive_lock_init.
22134         * lib/lock.c (glthread_recursive_lock_init)
22135         [PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: New function.
22136         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
22137
22138 2007-11-28  Paul Eggert  <eggert@cs.ucla.edu>
22139
22140         New function qset_acl, like set_acl but with syscall semantics.
22141         * lib/acl.h (qset_acl): New decl.
22142         * lib/acl.c (qset_acl): New function.
22143         (set_acl): Use new function.  Use more-consistent diagnostics.
22144
22145 2007-11-28  Jim Meyering  <meyering@redhat.com>
22146
22147         * modules/physmem (License): Change from GPL to LGPLv2+.
22148
22149 2007-11-26  Bruno Haible  <bruno@clisp.org>
22150
22151         * lib/vasnprintf.c (decode_long_double): Don't abort if the
22152         'long double' type has excess precision.
22153         Reported by Jim Meyering in
22154         <http://lists.gnu.org/archive/html/bug-gnulib/2007-11/msg00120.html>.
22155
22156 2007-11-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22157
22158         * doc/fdl.texi, doc/gpl-3.0.texi, doc/lgpl-3.0.texi:
22159         Sync from <http://gnu.org/licenses>.
22160         * modules/agpl-3.0, doc/agpl-3.0.texi: New module,
22161         with license text from same location.
22162         * doc/maintain.texi, doc/standards.texi:  Sync from
22163         <http://savannah.gnu.org/projects/gnustandards>.
22164
22165 2007-11-22  OndÅ™ej Vašík  <ovasik@redhat.com>
22166         and Jim Meyering  <meyering@redhat.com>
22167
22168         Adjust getdate' grammar to accept a slightly more regular language.
22169         E.g., accept "YYYYMMDD +N days" as well as "YYYYMMDD N days".
22170         Before, the former was rejected.
22171         * lib/getdate.y (digits_to_date_time): New function, factored
22172         out of ...
22173         (number): ...here.  Just call digits_to_date_time.
22174         (hybrid): New non-terminal to handle an <unsigned number,
22175         signed relative offset> sequence consistently.
22176
22177 2007-11-18  Jim Meyering  <meyering@redhat.com>
22178
22179         Pull my changes from coreutils:
22180         bootstrap: fix typo to enable use of $gnulib_tool_option_extras.
22181         * build-aux/bootstrap (gnulib_tool_options): Add a space before the
22182         use of $gnulib_tool_option_extras, so that it's separated from the
22183         preceding argument.
22184
22185         Fix bootstrap failure to handle files like lib/uniwidth/cjk.h.
22186         * build-aux/bootstrap (cp_mark_as_generated): Create any required
22187         parent destination directories before copying a file into place.
22188
22189 2007-11-18  Sergey Poznyakoff  <gray@gnu.org.ua>
22190
22191         bootstrap: work also with 4-argument variant of AC_INIT
22192         * build-aux/bootstrap (gnulib_extra_files): Adjust sed command.
22193
22194 2007-11-16  Paul Eggert  <eggert@cs.ucla.edu>
22195
22196         Port test-getaddrinfo to Solaris.
22197         Problem reported by Bruno Haible in
22198         <http://lists.gnu.org/archive/html/bug-gnulib/2007-03/msg00171.html>.
22199         * tests/test-getaddrinfo.c (simple): Add a comment asking for an
22200         explanation of setting 'hints'.
22201         Don't reject an implementation merely because it returns EAI_SERVICE.
22202         (EAI_SERVICE): Define to 0 if not defined.
22203
22204 2007-11-15  Paul Eggert  <eggert@cs.ucla.edu>
22205
22206         The license of gnu-make and posix-shell is now "GPLed build tool".
22207         * modules/gnu-make (License): Likewise.
22208         * modules/posix-shell (License): Likewise.
22209
22210         New module posix-shell, for determining a POSIX shell
22211         or perhaps something that is close enough to a POSIX shell.
22212         * m4/posix-shell.m4: New file.
22213         * modules/posix-shell: New file.
22214
22215         * MODULES.html.sh: Mention new module.
22216
22217         New module gnu-make, for determining whether we're using GNU Make.
22218         * m4/gnu-make.m4: New file.
22219         * modules/gnu-make: New file.
22220         * MODULES.html.sh: Mention new module.
22221
22222 2007-11-14  Jim Meyering  <meyering@redhat.com>
22223
22224         Define a sometimes-link-required function using ARGMATCH_DIE_DECL.
22225         * tests/test-argmatch.c (ARGMATCH_DIE_DECL): When defined,
22226         use this macro to create a function _definition_.
22227         Remove useless "#undef ARGMATCH_DIE".
22228
22229 2007-11-14  Bruno Haible  <bruno@clisp.org>
22230
22231         * lib/config.charset: Update for OpenBSD 4.1.
22232         Reported and helped by Ben Pfaff <blp@cs.stanford.edu>.
22233
22234 2007-11-12  Paul Eggert  <eggert@cs.ucla.edu>
22235
22236         Document 64-bit #if problems in stdint.texi.
22237         * doc/headers/stdint.texi (stdint.h): Mention problems with
22238         64-bit-#if, and how to work around them.
22239
22240         Don't insist on 'long long int' support in the preprocessor.  It
22241         breaks too many things.  For example, PRIdMAX still uses a 'long
22242         long int' format with the latest Sun compiler, even though
22243         HAVE_LONG_LONG_INT isn't defined due to that compiler's
22244         preprocessor problem.  This causes the latest coreutils to dump
22245         core on Solaris 10 sparc with the Sun C compiler.
22246         Instead, fix the 2007-10-16 problem in a different way, by evaluating
22247         the troublesome expressions at configure-time, not at #if-time.
22248         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): Don't test the
22249         preprocessor.
22250         * m4/inttypes.m4 (gl_INTTYPES_H): Move the #if checks into
22251         compile-time C checks, done at 'configure'-time.
22252         (gl_INTTYPES_CHECK_LONG_LONG_INT_CONDITION): New macro.
22253         * modules/inttypes (Makefile): Substitute the new symbols that
22254         gl_INTTYPES_H now generates.
22255         * lib/inttypes.in.h: Don't use constants wider than 'long' in #if.
22256
22257 2007-11-12  Bruno Haible  <bruno@clisp.org>
22258
22259         Tests for Unicode character classification functions.
22260
22261         * modules/unictype/bidicategory-byname-tests: New file.
22262         * modules/unictype/bidicategory-name-tests: New file.
22263         * modules/unictype/bidicategory-of-tests: New file.
22264         * modules/unictype/bidicategory-test-tests: New file.
22265         * modules/unictype/block-list-tests: New file.
22266         * modules/unictype/block-of-tests: New file.
22267         * modules/unictype/block-test-tests: New file.
22268         * modules/unictype/category-C-tests: New file.
22269         * modules/unictype/category-Cc-tests: New file.
22270         * modules/unictype/category-Cf-tests: New file.
22271         * modules/unictype/category-Cn-tests: New file.
22272         * modules/unictype/category-Co-tests: New file.
22273         * modules/unictype/category-Cs-tests: New file.
22274         * modules/unictype/category-L-tests: New file.
22275         * modules/unictype/category-Ll-tests: New file.
22276         * modules/unictype/category-Lm-tests: New file.
22277         * modules/unictype/category-Lo-tests: New file.
22278         * modules/unictype/category-Lt-tests: New file.
22279         * modules/unictype/category-Lu-tests: New file.
22280         * modules/unictype/category-M-tests: New file.
22281         * modules/unictype/category-Mc-tests: New file.
22282         * modules/unictype/category-Me-tests: New file.
22283         * modules/unictype/category-Mn-tests: New file.
22284         * modules/unictype/category-N-tests: New file.
22285         * modules/unictype/category-Nd-tests: New file.
22286         * modules/unictype/category-Nl-tests: New file.
22287         * modules/unictype/category-No-tests: New file.
22288         * modules/unictype/category-P-tests: New file.
22289         * modules/unictype/category-Pc-tests: New file.
22290         * modules/unictype/category-Pd-tests: New file.
22291         * modules/unictype/category-Pe-tests: New file.
22292         * modules/unictype/category-Pf-tests: New file.
22293         * modules/unictype/category-Pi-tests: New file.
22294         * modules/unictype/category-Po-tests: New file.
22295         * modules/unictype/category-Ps-tests: New file.
22296         * modules/unictype/category-S-tests: New file.
22297         * modules/unictype/category-Sc-tests: New file.
22298         * modules/unictype/category-Sk-tests: New file.
22299         * modules/unictype/category-Sm-tests: New file.
22300         * modules/unictype/category-So-tests: New file.
22301         * modules/unictype/category-Z-tests: New file.
22302         * modules/unictype/category-Zl-tests: New file.
22303         * modules/unictype/category-Zp-tests: New file.
22304         * modules/unictype/category-Zs-tests: New file.
22305         * modules/unictype/category-and-not-tests: New file.
22306         * modules/unictype/category-and-tests: New file.
22307         * modules/unictype/category-byname-tests: New file.
22308         * modules/unictype/category-name-tests: New file.
22309         * modules/unictype/category-none-tests: New file.
22310         * modules/unictype/category-of-tests: New file.
22311         * modules/unictype/category-or-tests: New file.
22312         * modules/unictype/category-test-withtable-tests: New file.
22313         * modules/unictype/combining-class-tests: New file.
22314         * modules/unictype/ctype-alnum-tests: New file.
22315         * modules/unictype/ctype-alpha-tests: New file.
22316         * modules/unictype/ctype-blank-tests: New file.
22317         * modules/unictype/ctype-cntrl-tests: New file.
22318         * modules/unictype/ctype-digit-tests: New file.
22319         * modules/unictype/ctype-graph-tests: New file.
22320         * modules/unictype/ctype-lower-tests: New file.
22321         * modules/unictype/ctype-print-tests: New file.
22322         * modules/unictype/ctype-punct-tests: New file.
22323         * modules/unictype/ctype-space-tests: New file.
22324         * modules/unictype/ctype-upper-tests: New file.
22325         * modules/unictype/ctype-xdigit-tests: New file.
22326         * modules/unictype/decimal-digit-tests: New file.
22327         * modules/unictype/digit-tests: New file.
22328         * modules/unictype/mirror-tests: New file.
22329         * modules/unictype/numeric-tests: New file.
22330         * modules/unictype/property-alphabetic-tests: New file.
22331         * modules/unictype/property-ascii-hex-digit-tests: New file.
22332         * modules/unictype/property-bidi-arabic-digit-tests: New file.
22333         * modules/unictype/property-bidi-arabic-right-to-left-tests: New file.
22334         * modules/unictype/property-bidi-block-separator-tests: New file.
22335         * modules/unictype/property-bidi-boundary-neutral-tests: New file.
22336         * modules/unictype/property-bidi-common-separator-tests: New file.
22337         * modules/unictype/property-bidi-control-tests: New file.
22338         * modules/unictype/property-bidi-embedding-or-override-tests: New file.
22339         * modules/unictype/property-bidi-eur-num-separator-tests: New file.
22340         * modules/unictype/property-bidi-eur-num-terminator-tests: New file.
22341         * modules/unictype/property-bidi-european-digit-tests: New file.
22342         * modules/unictype/property-bidi-hebrew-right-to-left-tests: New file.
22343         * modules/unictype/property-bidi-left-to-right-tests: New file.
22344         * modules/unictype/property-bidi-non-spacing-mark-tests: New file.
22345         * modules/unictype/property-bidi-other-neutral-tests: New file.
22346         * modules/unictype/property-bidi-pdf-tests: New file.
22347         * modules/unictype/property-bidi-segment-separator-tests: New file.
22348         * modules/unictype/property-bidi-whitespace-tests: New file.
22349         * modules/unictype/property-byname-tests: New file.
22350         * modules/unictype/property-combining-tests: New file.
22351         * modules/unictype/property-composite-tests: New file.
22352         * modules/unictype/property-currency-symbol-tests: New file.
22353         * modules/unictype/property-dash-tests: New file.
22354         * modules/unictype/property-decimal-digit-tests: New file.
22355         * modules/unictype/property-default-ignorable-code-point-tests: New file.
22356         * modules/unictype/property-deprecated-tests: New file.
22357         * modules/unictype/property-diacritic-tests: New file.
22358         * modules/unictype/property-extender-tests: New file.
22359         * modules/unictype/property-format-control-tests: New file.
22360         * modules/unictype/property-grapheme-base-tests: New file.
22361         * modules/unictype/property-grapheme-extend-tests: New file.
22362         * modules/unictype/property-grapheme-link-tests: New file.
22363         * modules/unictype/property-hex-digit-tests: New file.
22364         * modules/unictype/property-hyphen-tests: New file.
22365         * modules/unictype/property-id-continue-tests: New file.
22366         * modules/unictype/property-id-start-tests: New file.
22367         * modules/unictype/property-ideographic-tests: New file.
22368         * modules/unictype/property-ids-binary-operator-tests: New file.
22369         * modules/unictype/property-ids-trinary-operator-tests: New file.
22370         * modules/unictype/property-ignorable-control-tests: New file.
22371         * modules/unictype/property-iso-control-tests: New file.
22372         * modules/unictype/property-join-control-tests: New file.
22373         * modules/unictype/property-left-of-pair-tests: New file.
22374         * modules/unictype/property-line-separator-tests: New file.
22375         * modules/unictype/property-logical-order-exception-tests: New file.
22376         * modules/unictype/property-lowercase-tests: New file.
22377         * modules/unictype/property-math-tests: New file.
22378         * modules/unictype/property-non-break-tests: New file.
22379         * modules/unictype/property-not-a-character-tests: New file.
22380         * modules/unictype/property-numeric-tests: New file.
22381         * modules/unictype/property-other-alphabetic-tests: New file.
22382         * modules/unictype/property-other-default-ignorable-code-point-tests: New file.
22383         * modules/unictype/property-other-grapheme-extend-tests: New file.
22384         * modules/unictype/property-other-id-continue-tests: New file.
22385         * modules/unictype/property-other-id-start-tests: New file.
22386         * modules/unictype/property-other-lowercase-tests: New file.
22387         * modules/unictype/property-other-math-tests: New file.
22388         * modules/unictype/property-other-uppercase-tests: New file.
22389         * modules/unictype/property-paired-punctuation-tests: New file.
22390         * modules/unictype/property-paragraph-separator-tests: New file.
22391         * modules/unictype/property-pattern-syntax-tests: New file.
22392         * modules/unictype/property-pattern-white-space-tests: New file.
22393         * modules/unictype/property-private-use-tests: New file.
22394         * modules/unictype/property-punctuation-tests: New file.
22395         * modules/unictype/property-quotation-mark-tests: New file.
22396         * modules/unictype/property-radical-tests: New file.
22397         * modules/unictype/property-sentence-terminal-tests: New file.
22398         * modules/unictype/property-soft-dotted-tests: New file.
22399         * modules/unictype/property-space-tests: New file.
22400         * modules/unictype/property-terminal-punctuation-tests: New file.
22401         * modules/unictype/property-test-tests: New file.
22402         * modules/unictype/property-titlecase-tests: New file.
22403         * modules/unictype/property-unassigned-code-value-tests: New file.
22404         * modules/unictype/property-unified-ideograph-tests: New file.
22405         * modules/unictype/property-uppercase-tests: New file.
22406         * modules/unictype/property-variation-selector-tests: New file.
22407         * modules/unictype/property-white-space-tests: New file.
22408         * modules/unictype/property-xid-continue-tests: New file.
22409         * modules/unictype/property-xid-start-tests: New file.
22410         * modules/unictype/property-zero-width-tests: New file.
22411         * modules/unictype/scripts-tests: New file.
22412         * modules/unictype/syntax-c-ident-tests: New file.
22413         * modules/unictype/syntax-c-whitespace-tests: New file.
22414         * modules/unictype/syntax-java-ident-tests: New file.
22415         * modules/unictype/syntax-java-whitespace-tests: New file.
22416         * tests/unictype/test-bidi_byname.c: New file.
22417         * tests/unictype/test-bidi_name.c: New file.
22418         * tests/unictype/test-bidi_of.c: New file.
22419         * tests/unictype/test-bidi_test.c: New file.
22420         * tests/unictype/test-block_list.c: New file.
22421         * tests/unictype/test-block_of.c: New file.
22422         * tests/unictype/test-block_test.c: New file.
22423         * tests/unictype/test-categ_and.c: New file.
22424         * tests/unictype/test-categ_and_not.c: New file.
22425         * tests/unictype/test-categ_byname.c: New file.
22426         * tests/unictype/test-categ_name.c: New file.
22427         * tests/unictype/test-categ_none.c: New file.
22428         * tests/unictype/test-categ_of.c: New file.
22429         * tests/unictype/test-categ_or.c: New file.
22430         * tests/unictype/test-categ_test_withtable.c: New file.
22431         * tests/unictype/test-combining.c: New file.
22432         * tests/unictype/test-decdigit.c: New file.
22433         * tests/unictype/test-digit.c: New file.
22434         * tests/unictype/test-mirror.c: New file.
22435         * tests/unictype/test-numeric.c: New file.
22436         * tests/unictype/test-pr_byname.c: New file.
22437         * tests/unictype/test-pr_test.c: New file.
22438         * tests/unictype/test-predicate-part1.h: New file.
22439         * tests/unictype/test-predicate-part2.h: New file.
22440         * tests/unictype/test-scripts.c: New file.
22441         * tests/unictype/test-sy_c_ident.c: New file.
22442         * tests/unictype/test-sy_java_ident.c: New file.
22443
22444         * tests/unictype/test-categ_C.c: New file, generated by gen-ctype.c
22445         for Unicode 5.0.0.
22446         * tests/unictype/test-categ_Cc.c: Likewise.
22447         * tests/unictype/test-categ_Cf.c: Likewise.
22448         * tests/unictype/test-categ_Cn.c: Likewise.
22449         * tests/unictype/test-categ_Co.c: Likewise.
22450         * tests/unictype/test-categ_Cs.c: Likewise.
22451         * tests/unictype/test-categ_L.c: Likewise.
22452         * tests/unictype/test-categ_Ll.c: Likewise.
22453         * tests/unictype/test-categ_Lm.c: Likewise.
22454         * tests/unictype/test-categ_Lo.c: Likewise.
22455         * tests/unictype/test-categ_Lt.c: Likewise.
22456         * tests/unictype/test-categ_Lu.c: Likewise.
22457         * tests/unictype/test-categ_M.c: Likewise.
22458         * tests/unictype/test-categ_Mc.c: Likewise.
22459         * tests/unictype/test-categ_Me.c: Likewise.
22460         * tests/unictype/test-categ_Mn.c: Likewise.
22461         * tests/unictype/test-categ_N.c: Likewise.
22462         * tests/unictype/test-categ_Nd.c: Likewise.
22463         * tests/unictype/test-categ_Nl.c: Likewise.
22464         * tests/unictype/test-categ_No.c: Likewise.
22465         * tests/unictype/test-categ_P.c: Likewise.
22466         * tests/unictype/test-categ_Pc.c: Likewise.
22467         * tests/unictype/test-categ_Pd.c: Likewise.
22468         * tests/unictype/test-categ_Pe.c: Likewise.
22469         * tests/unictype/test-categ_Pf.c: Likewise.
22470         * tests/unictype/test-categ_Pi.c: Likewise.
22471         * tests/unictype/test-categ_Po.c: Likewise.
22472         * tests/unictype/test-categ_Ps.c: Likewise.
22473         * tests/unictype/test-categ_S.c: Likewise.
22474         * tests/unictype/test-categ_Sc.c: Likewise.
22475         * tests/unictype/test-categ_Sk.c: Likewise.
22476         * tests/unictype/test-categ_Sm.c: Likewise.
22477         * tests/unictype/test-categ_So.c: Likewise.
22478         * tests/unictype/test-categ_Z.c: Likewise.
22479         * tests/unictype/test-categ_Zl.c: Likewise.
22480         * tests/unictype/test-categ_Zp.c: Likewise.
22481         * tests/unictype/test-categ_Zs.c: Likewise.
22482         * tests/unictype/test-ctype_alnum.c: Likewise.
22483         * tests/unictype/test-ctype_alpha.c: Likewise.
22484         * tests/unictype/test-ctype_blank.c: Likewise.
22485         * tests/unictype/test-ctype_cntrl.c: Likewise.
22486         * tests/unictype/test-ctype_digit.c: Likewise.
22487         * tests/unictype/test-ctype_graph.c: Likewise.
22488         * tests/unictype/test-ctype_lower.c: Likewise.
22489         * tests/unictype/test-ctype_print.c: Likewise.
22490         * tests/unictype/test-ctype_punct.c: Likewise.
22491         * tests/unictype/test-ctype_space.c: Likewise.
22492         * tests/unictype/test-ctype_upper.c: Likewise.
22493         * tests/unictype/test-ctype_xdigit.c: Likewise.
22494         * tests/unictype/test-decdigit.h: Likewise.
22495         * tests/unictype/test-digit.h: Likewise.
22496         * tests/unictype/test-numeric.h: Likewise.
22497         * tests/unictype/test-pr_alphabetic.c: Likewise.
22498         * tests/unictype/test-pr_ascii_hex_digit.c: Likewise.
22499         * tests/unictype/test-pr_bidi_arabic_digit.c: Likewise.
22500         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Likewise.
22501         * tests/unictype/test-pr_bidi_block_separator.c: Likewise.
22502         * tests/unictype/test-pr_bidi_boundary_neutral.c: Likewise.
22503         * tests/unictype/test-pr_bidi_common_separator.c: Likewise.
22504         * tests/unictype/test-pr_bidi_control.c: Likewise.
22505         * tests/unictype/test-pr_bidi_embedding_or_override.c: Likewise.
22506         * tests/unictype/test-pr_bidi_eur_num_separator.c: Likewise.
22507         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Likewise.
22508         * tests/unictype/test-pr_bidi_european_digit.c: Likewise.
22509         * tests/unictype/test-pr_bidi_hebrew_right_to_left.c: Likewise.
22510         * tests/unictype/test-pr_bidi_left_to_right.c: Likewise.
22511         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Likewise.
22512         * tests/unictype/test-pr_bidi_other_neutral.c: Likewise.
22513         * tests/unictype/test-pr_bidi_pdf.c: Likewise.
22514         * tests/unictype/test-pr_bidi_segment_separator.c: Likewise.
22515         * tests/unictype/test-pr_bidi_whitespace.c: Likewise.
22516         * tests/unictype/test-pr_combining.c: Likewise.
22517         * tests/unictype/test-pr_composite.c: Likewise.
22518         * tests/unictype/test-pr_currency_symbol.c: Likewise.
22519         * tests/unictype/test-pr_dash.c: Likewise.
22520         * tests/unictype/test-pr_decimal_digit.c: Likewise.
22521         * tests/unictype/test-pr_default_ignorable_code_point.c: Likewise.
22522         * tests/unictype/test-pr_deprecated.c: Likewise.
22523         * tests/unictype/test-pr_diacritic.c: Likewise.
22524         * tests/unictype/test-pr_extender.c: Likewise.
22525         * tests/unictype/test-pr_format_control.c: Likewise.
22526         * tests/unictype/test-pr_grapheme_base.c: Likewise.
22527         * tests/unictype/test-pr_grapheme_extend.c: Likewise.
22528         * tests/unictype/test-pr_grapheme_link.c: Likewise.
22529         * tests/unictype/test-pr_hex_digit.c: Likewise.
22530         * tests/unictype/test-pr_hyphen.c: Likewise.
22531         * tests/unictype/test-pr_id_continue.c: Likewise.
22532         * tests/unictype/test-pr_id_start.c: Likewise.
22533         * tests/unictype/test-pr_ideographic.c: Likewise.
22534         * tests/unictype/test-pr_ids_binary_operator.c: Likewise.
22535         * tests/unictype/test-pr_ids_trinary_operator.c: Likewise.
22536         * tests/unictype/test-pr_ignorable_control.c: Likewise.
22537         * tests/unictype/test-pr_iso_control.c: Likewise.
22538         * tests/unictype/test-pr_join_control.c: Likewise.
22539         * tests/unictype/test-pr_left_of_pair.c: Likewise.
22540         * tests/unictype/test-pr_line_separator.c: Likewise.
22541         * tests/unictype/test-pr_logical_order_exception.c: Likewise.
22542         * tests/unictype/test-pr_lowercase.c: Likewise.
22543         * tests/unictype/test-pr_math.c: Likewise.
22544         * tests/unictype/test-pr_non_break.c: Likewise.
22545         * tests/unictype/test-pr_not_a_character.c: Likewise.
22546         * tests/unictype/test-pr_numeric.c: Likewise.
22547         * tests/unictype/test-pr_other_alphabetic.c: Likewise.
22548         * tests/unictype/test-pr_other_default_ignorable_code_point.c: Likewise.
22549         * tests/unictype/test-pr_other_grapheme_extend.c: Likewise.
22550         * tests/unictype/test-pr_other_id_continue.c: Likewise.
22551         * tests/unictype/test-pr_other_id_start.c: Likewise.
22552         * tests/unictype/test-pr_other_lowercase.c: Likewise.
22553         * tests/unictype/test-pr_other_math.c: Likewise.
22554         * tests/unictype/test-pr_other_uppercase.c: Likewise.
22555         * tests/unictype/test-pr_paired_punctuation.c: Likewise.
22556         * tests/unictype/test-pr_paragraph_separator.c: Likewise.
22557         * tests/unictype/test-pr_pattern_syntax.c: Likewise.
22558         * tests/unictype/test-pr_pattern_white_space.c: Likewise.
22559         * tests/unictype/test-pr_private_use.c: Likewise.
22560         * tests/unictype/test-pr_punctuation.c: Likewise.
22561         * tests/unictype/test-pr_quotation_mark.c: Likewise.
22562         * tests/unictype/test-pr_radical.c: Likewise.
22563         * tests/unictype/test-pr_sentence_terminal.c: Likewise.
22564         * tests/unictype/test-pr_soft_dotted.c: Likewise.
22565         * tests/unictype/test-pr_space.c: Likewise.
22566         * tests/unictype/test-pr_terminal_punctuation.c: Likewise.
22567         * tests/unictype/test-pr_titlecase.c: Likewise.
22568         * tests/unictype/test-pr_unassigned_code_value.c: Likewise.
22569         * tests/unictype/test-pr_unified_ideograph.c: Likewise.
22570         * tests/unictype/test-pr_uppercase.c: Likewise.
22571         * tests/unictype/test-pr_variation_selector.c: Likewise.
22572         * tests/unictype/test-pr_white_space.c: Likewise.
22573         * tests/unictype/test-pr_xid_continue.c: Likewise.
22574         * tests/unictype/test-pr_xid_start.c: Likewise.
22575         * tests/unictype/test-pr_zero_width.c: Likewise.
22576         * tests/unictype/test-sy_c_whitespace.c: Likewise.
22577         * tests/unictype/test-sy_java_whitespace.c: Likewise.
22578
22579 2007-11-12  Bruno Haible  <bruno@clisp.org>
22580
22581         Unicode character classification functions.
22582         * lib/unictype.h: New file.
22583         * modules/unictype/base: New file.
22584         * modules/unictype/category-L: New file.
22585         * modules/unictype/category-Lu: New file.
22586         * modules/unictype/category-Ll: New file.
22587         * modules/unictype/category-Lt: New file.
22588         * modules/unictype/category-Lm: New file.
22589         * modules/unictype/category-Lo: New file.
22590         * modules/unictype/category-M: New file.
22591         * modules/unictype/category-Mn: New file.
22592         * modules/unictype/category-Mc: New file.
22593         * modules/unictype/category-Me: New file.
22594         * modules/unictype/category-N: New file.
22595         * modules/unictype/category-Nd: New file.
22596         * modules/unictype/category-Nl: New file.
22597         * modules/unictype/category-No: New file.
22598         * modules/unictype/category-P: New file.
22599         * modules/unictype/category-Pc: New file.
22600         * modules/unictype/category-Pd: New file.
22601         * modules/unictype/category-Ps: New file.
22602         * modules/unictype/category-Pe: New file.
22603         * modules/unictype/category-Pi: New file.
22604         * modules/unictype/category-Pf: New file.
22605         * modules/unictype/category-Po: New file.
22606         * modules/unictype/category-S: New file.
22607         * modules/unictype/category-Sm: New file.
22608         * modules/unictype/category-Sc: New file.
22609         * modules/unictype/category-Sk: New file.
22610         * modules/unictype/category-So: New file.
22611         * modules/unictype/category-Z: New file.
22612         * modules/unictype/category-Zs: New file.
22613         * modules/unictype/category-Zl: New file.
22614         * modules/unictype/category-Zp: New file.
22615         * modules/unictype/category-C: New file.
22616         * modules/unictype/category-Cc: New file.
22617         * modules/unictype/category-Cf: New file.
22618         * modules/unictype/category-Cs: New file.
22619         * modules/unictype/category-Co: New file.
22620         * modules/unictype/category-Cn: New file.
22621         * modules/unictype/category-or: New file.
22622         * modules/unictype/category-of: New file.
22623         * modules/unictype/category-test: New file.
22624         * modules/unictype/category-test-withtable: New file.
22625         * modules/unictype/category-byname: New file.
22626         * modules/unictype/category-none: New file.
22627         * modules/unictype/category-and: New file.
22628         * modules/unictype/category-and-not: New file.
22629         * modules/unictype/category-name: New file.
22630         * modules/unictype/combining-class: New file.
22631         * modules/unictype/category-all: New file.
22632         * modules/unictype/bidicategory-all: New file.
22633         * modules/unictype/bidicategory-byname: New file.
22634         * modules/unictype/bidicategory-name: New file.
22635         * modules/unictype/bidicategory-of: New file.
22636         * modules/unictype/bidicategory-test: New file.
22637         * modules/unictype/decimal-digit: New file.
22638         * modules/unictype/digit: New file.
22639         * modules/unictype/numeric: New file.
22640         * modules/unictype/mirror: New file.
22641         * modules/unictype/property-white-space: New file.
22642         * modules/unictype/property-alphabetic: New file.
22643         * modules/unictype/property-other-alphabetic: New file.
22644         * modules/unictype/property-not-a-character: New file.
22645         * modules/unictype/property-default-ignorable-code-point: New file.
22646         * modules/unictype/property-other-default-ignorable-code-point: New
22647         file.
22648         * modules/unictype/property-deprecated: New file.
22649         * modules/unictype/property-logical-order-exception: New file.
22650         * modules/unictype/property-variation-selector: New file.
22651         * modules/unictype/property-private-use: New file.
22652         * modules/unictype/property-unassigned-code-value: New file.
22653         * modules/unictype/property-uppercase: New file.
22654         * modules/unictype/property-other-uppercase: New file.
22655         * modules/unictype/property-lowercase: New file.
22656         * modules/unictype/property-other-lowercase: New file.
22657         * modules/unictype/property-titlecase: New file.
22658         * modules/unictype/property-soft-dotted: New file.
22659         * modules/unictype/property-id-start: New file.
22660         * modules/unictype/property-other-id-start: New file.
22661         * modules/unictype/property-id-continue: New file.
22662         * modules/unictype/property-other-id-continue: New file.
22663         * modules/unictype/property-xid-start: New file.
22664         * modules/unictype/property-xid-continue: New file.
22665         * modules/unictype/property-pattern-white-space: New file.
22666         * modules/unictype/property-pattern-syntax: New file.
22667         * modules/unictype/property-join-control: New file.
22668         * modules/unictype/property-grapheme-base: New file.
22669         * modules/unictype/property-grapheme-extend: New file.
22670         * modules/unictype/property-other-grapheme-extend: New file.
22671         * modules/unictype/property-grapheme-link: New file.
22672         * modules/unictype/property-bidi-control: New file.
22673         * modules/unictype/property-bidi-left-to-right: New file.
22674         * modules/unictype/property-bidi-hebrew-right-to-left: New file.
22675         * modules/unictype/property-bidi-arabic-right-to-left: New file.
22676         * modules/unictype/property-bidi-european-digit: New file.
22677         * modules/unictype/property-bidi-eur-num-separator: New file.
22678         * modules/unictype/property-bidi-eur-num-terminator: New file.
22679         * modules/unictype/property-bidi-arabic-digit: New file.
22680         * modules/unictype/property-bidi-common-separator: New file.
22681         * modules/unictype/property-bidi-block-separator: New file.
22682         * modules/unictype/property-bidi-segment-separator: New file.
22683         * modules/unictype/property-bidi-whitespace: New file.
22684         * modules/unictype/property-bidi-non-spacing-mark: New file.
22685         * modules/unictype/property-bidi-boundary-neutral: New file.
22686         * modules/unictype/property-bidi-pdf: New file.
22687         * modules/unictype/property-bidi-embedding-or-override: New file.
22688         * modules/unictype/property-bidi-other-neutral: New file.
22689         * modules/unictype/property-hex-digit: New file.
22690         * modules/unictype/property-ascii-hex-digit: New file.
22691         * modules/unictype/property-ideographic: New file.
22692         * modules/unictype/property-unified-ideograph: New file.
22693         * modules/unictype/property-radical: New file.
22694         * modules/unictype/property-ids-binary-operator: New file.
22695         * modules/unictype/property-ids-trinary-operator: New file.
22696         * modules/unictype/property-zero-width: New file.
22697         * modules/unictype/property-space: New file.
22698         * modules/unictype/property-non-break: New file.
22699         * modules/unictype/property-iso-control: New file.
22700         * modules/unictype/property-format-control: New file.
22701         * modules/unictype/property-dash: New file.
22702         * modules/unictype/property-hyphen: New file.
22703         * modules/unictype/property-punctuation: New file.
22704         * modules/unictype/property-line-separator: New file.
22705         * modules/unictype/property-paragraph-separator: New file.
22706         * modules/unictype/property-quotation-mark: New file.
22707         * modules/unictype/property-sentence-terminal: New file.
22708         * modules/unictype/property-terminal-punctuation: New file.
22709         * modules/unictype/property-currency-symbol: New file.
22710         * modules/unictype/property-math: New file.
22711         * modules/unictype/property-other-math: New file.
22712         * modules/unictype/property-paired-punctuation: New file.
22713         * modules/unictype/property-left-of-pair: New file.
22714         * modules/unictype/property-combining: New file.
22715         * modules/unictype/property-composite: New file.
22716         * modules/unictype/property-decimal-digit: New file.
22717         * modules/unictype/property-numeric: New file.
22718         * modules/unictype/property-diacritic: New file.
22719         * modules/unictype/property-extender: New file.
22720         * modules/unictype/property-ignorable-control: New file.
22721         * modules/unictype/property-test: New file.
22722         * modules/unictype/property-byname: New file.
22723         * modules/unictype/property-all: New file.
22724         * modules/unictype/scripts: New file.
22725         * modules/unictype/scripts-all: New file.
22726         * modules/unictype/block-of: New file.
22727         * modules/unictype/block-test: New file.
22728         * modules/unictype/block-list: New file.
22729         * modules/unictype/block-all: New file.
22730         * modules/unictype/syntax-c-whitespace: New file.
22731         * modules/unictype/syntax-java-whitespace: New file.
22732         * modules/unictype/syntax-c-ident: New file.
22733         * modules/unictype/syntax-java-ident: New file.
22734         * modules/unictype/ctype-alnum: New file.
22735         * modules/unictype/ctype-alpha: New file.
22736         * modules/unictype/ctype-cntrl: New file.
22737         * modules/unictype/ctype-digit: New file.
22738         * modules/unictype/ctype-graph: New file.
22739         * modules/unictype/ctype-lower: New file.
22740         * modules/unictype/ctype-print: New file.
22741         * modules/unictype/ctype-punct: New file.
22742         * modules/unictype/ctype-space: New file.
22743         * modules/unictype/ctype-upper: New file.
22744         * modules/unictype/ctype-xdigit: New file.
22745         * modules/unictype/ctype-blank: New file.
22746         * lib/unictype/bidi_byname.c: New file.
22747         * lib/unictype/bidi_name.c: New file.
22748         * lib/unictype/bidi_of.c: New file.
22749         * lib/unictype/bidi_test.c: New file.
22750         * lib/unictype/bitmap.h: New file.
22751         * lib/unictype/block_test.c: New file.
22752         * lib/unictype/blocks.c: New file.
22753         * lib/unictype/categ_C.c: New file.
22754         * lib/unictype/categ_Cc.c: New file.
22755         * lib/unictype/categ_Cf.c: New file.
22756         * lib/unictype/categ_Cn.c: New file.
22757         * lib/unictype/categ_Co.c: New file.
22758         * lib/unictype/categ_Cs.c: New file.
22759         * lib/unictype/categ_L.c: New file.
22760         * lib/unictype/categ_Ll.c: New file.
22761         * lib/unictype/categ_Lm.c: New file.
22762         * lib/unictype/categ_Lo.c: New file.
22763         * lib/unictype/categ_Lt.c: New file.
22764         * lib/unictype/categ_Lu.c: New file.
22765         * lib/unictype/categ_M.c: New file.
22766         * lib/unictype/categ_Mc.c: New file.
22767         * lib/unictype/categ_Me.c: New file.
22768         * lib/unictype/categ_Mn.c: New file.
22769         * lib/unictype/categ_N.c: New file.
22770         * lib/unictype/categ_Nd.c: New file.
22771         * lib/unictype/categ_Nl.c: New file.
22772         * lib/unictype/categ_No.c: New file.
22773         * lib/unictype/categ_P.c: New file.
22774         * lib/unictype/categ_Pc.c: New file.
22775         * lib/unictype/categ_Pd.c: New file.
22776         * lib/unictype/categ_Pe.c: New file.
22777         * lib/unictype/categ_Pf.c: New file.
22778         * lib/unictype/categ_Pi.c: New file.
22779         * lib/unictype/categ_Po.c: New file.
22780         * lib/unictype/categ_Ps.c: New file.
22781         * lib/unictype/categ_S.c: New file.
22782         * lib/unictype/categ_Sc.c: New file.
22783         * lib/unictype/categ_Sk.c: New file.
22784         * lib/unictype/categ_Sm.c: New file.
22785         * lib/unictype/categ_So.c: New file.
22786         * lib/unictype/categ_Z.c: New file.
22787         * lib/unictype/categ_Zl.c: New file.
22788         * lib/unictype/categ_Zp.c: New file.
22789         * lib/unictype/categ_Zs.c: New file.
22790         * lib/unictype/categ_and.c: New file.
22791         * lib/unictype/categ_and_not.c: New file.
22792         * lib/unictype/categ_byname.c: New file.
22793         * lib/unictype/categ_name.c: New file.
22794         * lib/unictype/categ_none.c: New file.
22795         * lib/unictype/categ_of.c: New file.
22796         * lib/unictype/categ_or.c: New file.
22797         * lib/unictype/categ_test.c: New file.
22798         * lib/unictype/combining.c: New file.
22799         * lib/unictype/ctype_alnum.c: New file.
22800         * lib/unictype/ctype_alpha.c: New file.
22801         * lib/unictype/ctype_blank.c: New file.
22802         * lib/unictype/ctype_cntrl.c: New file.
22803         * lib/unictype/ctype_digit.c: New file.
22804         * lib/unictype/ctype_graph.c: New file.
22805         * lib/unictype/ctype_lower.c: New file.
22806         * lib/unictype/ctype_print.c: New file.
22807         * lib/unictype/ctype_punct.c: New file.
22808         * lib/unictype/ctype_space.c: New file.
22809         * lib/unictype/ctype_upper.c: New file.
22810         * lib/unictype/ctype_xdigit.c: New file.
22811         * lib/unictype/decdigit.c: New file.
22812         * lib/unictype/digit.c: New file.
22813         * lib/unictype/identsyntaxmap.h: New file.
22814         * lib/unictype/mirror.c: New file.
22815         * lib/unictype/numeric.c: New file.
22816         * lib/unictype/pr_alphabetic.c: New file.
22817         * lib/unictype/pr_ascii_hex_digit.c: New file.
22818         * lib/unictype/pr_bidi_arabic_digit.c: New file.
22819         * lib/unictype/pr_bidi_arabic_right_to_left.c: New file.
22820         * lib/unictype/pr_bidi_block_separator.c: New file.
22821         * lib/unictype/pr_bidi_boundary_neutral.c: New file.
22822         * lib/unictype/pr_bidi_common_separator.c: New file.
22823         * lib/unictype/pr_bidi_control.c: New file.
22824         * lib/unictype/pr_bidi_embedding_or_override.c: New file.
22825         * lib/unictype/pr_bidi_eur_num_separator.c: New file.
22826         * lib/unictype/pr_bidi_eur_num_terminator.c: New file.
22827         * lib/unictype/pr_bidi_european_digit.c: New file.
22828         * lib/unictype/pr_bidi_hebrew_right_to_left.c: New file.
22829         * lib/unictype/pr_bidi_left_to_right.c: New file.
22830         * lib/unictype/pr_bidi_non_spacing_mark.c: New file.
22831         * lib/unictype/pr_bidi_other_neutral.c: New file.
22832         * lib/unictype/pr_bidi_pdf.c: New file.
22833         * lib/unictype/pr_bidi_segment_separator.c: New file.
22834         * lib/unictype/pr_bidi_whitespace.c: New file.
22835         * lib/unictype/pr_byname.c: New file.
22836         * lib/unictype/pr_byname.gperf: New file.
22837         * lib/unictype/pr_combining.c: New file.
22838         * lib/unictype/pr_composite.c: New file.
22839         * lib/unictype/pr_currency_symbol.c: New file.
22840         * lib/unictype/pr_dash.c: New file.
22841         * lib/unictype/pr_decimal_digit.c: New file.
22842         * lib/unictype/pr_default_ignorable_code_point.c: New file.
22843         * lib/unictype/pr_deprecated.c: New file.
22844         * lib/unictype/pr_diacritic.c: New file.
22845         * lib/unictype/pr_extender.c: New file.
22846         * lib/unictype/pr_format_control.c: New file.
22847         * lib/unictype/pr_grapheme_base.c: New file.
22848         * lib/unictype/pr_grapheme_extend.c: New file.
22849         * lib/unictype/pr_grapheme_link.c: New file.
22850         * lib/unictype/pr_hex_digit.c: New file.
22851         * lib/unictype/pr_hyphen.c: New file.
22852         * lib/unictype/pr_id_continue.c: New file.
22853         * lib/unictype/pr_id_start.c: New file.
22854         * lib/unictype/pr_ideographic.c: New file.
22855         * lib/unictype/pr_ids_binary_operator.c: New file.
22856         * lib/unictype/pr_ids_trinary_operator.c: New file.
22857         * lib/unictype/pr_ignorable_control.c: New file.
22858         * lib/unictype/pr_iso_control.c: New file.
22859         * lib/unictype/pr_join_control.c: New file.
22860         * lib/unictype/pr_left_of_pair.c: New file.
22861         * lib/unictype/pr_line_separator.c: New file.
22862         * lib/unictype/pr_logical_order_exception.c: New file.
22863         * lib/unictype/pr_lowercase.c: New file.
22864         * lib/unictype/pr_math.c: New file.
22865         * lib/unictype/pr_non_break.c: New file.
22866         * lib/unictype/pr_not_a_character.c: New file.
22867         * lib/unictype/pr_numeric.c: New file.
22868         * lib/unictype/pr_other_alphabetic.c: New file.
22869         * lib/unictype/pr_other_default_ignorable_code_point.c: New file.
22870         * lib/unictype/pr_other_grapheme_extend.c: New file.
22871         * lib/unictype/pr_other_id_continue.c: New file.
22872         * lib/unictype/pr_other_id_start.c: New file.
22873         * lib/unictype/pr_other_lowercase.c: New file.
22874         * lib/unictype/pr_other_math.c: New file.
22875         * lib/unictype/pr_other_uppercase.c: New file.
22876         * lib/unictype/pr_paired_punctuation.c: New file.
22877         * lib/unictype/pr_paragraph_separator.c: New file.
22878         * lib/unictype/pr_pattern_syntax.c: New file.
22879         * lib/unictype/pr_pattern_white_space.c: New file.
22880         * lib/unictype/pr_private_use.c: New file.
22881         * lib/unictype/pr_punctuation.c: New file.
22882         * lib/unictype/pr_quotation_mark.c: New file.
22883         * lib/unictype/pr_radical.c: New file.
22884         * lib/unictype/pr_sentence_terminal.c: New file.
22885         * lib/unictype/pr_soft_dotted.c: New file.
22886         * lib/unictype/pr_space.c: New file.
22887         * lib/unictype/pr_terminal_punctuation.c: New file.
22888         * lib/unictype/pr_test.c: New file.
22889         * lib/unictype/pr_titlecase.c: New file.
22890         * lib/unictype/pr_unassigned_code_value.c: New file.
22891         * lib/unictype/pr_unified_ideograph.c: New file.
22892         * lib/unictype/pr_uppercase.c: New file.
22893         * lib/unictype/pr_variation_selector.c: New file.
22894         * lib/unictype/pr_white_space.c: New file.
22895         * lib/unictype/pr_xid_continue.c: New file.
22896         * lib/unictype/pr_xid_start.c: New file.
22897         * lib/unictype/pr_zero_width.c: New file.
22898         * lib/unictype/scripts.c: New file.
22899         * lib/unictype/sy_c_ident.c: New file.
22900         * lib/unictype/sy_c_whitespace.c: New file.
22901         * lib/unictype/sy_java_ident.c: New file.
22902         * lib/unictype/sy_java_whitespace.c: New file.
22903
22904         * lib/unictype/bidi_of.h: New file, generated by gen-ctype.c for
22905         Unicode 5.0.0.
22906         * lib/unictype/blocks.h: Likewise.
22907         * lib/unictype/categ_C.h: Likewise.
22908         * lib/unictype/categ_Cc.h: Likewise.
22909         * lib/unictype/categ_Cf.h: Likewise.
22910         * lib/unictype/categ_Cn.h: Likewise.
22911         * lib/unictype/categ_Co.h: Likewise.
22912         * lib/unictype/categ_Cs.h: Likewise.
22913         * lib/unictype/categ_L.h: Likewise.
22914         * lib/unictype/categ_Ll.h: Likewise.
22915         * lib/unictype/categ_Lm.h: Likewise.
22916         * lib/unictype/categ_Lo.h: Likewise.
22917         * lib/unictype/categ_Lt.h: Likewise.
22918         * lib/unictype/categ_Lu.h: Likewise.
22919         * lib/unictype/categ_M.h: Likewise.
22920         * lib/unictype/categ_Mc.h: Likewise.
22921         * lib/unictype/categ_Me.h: Likewise.
22922         * lib/unictype/categ_Mn.h: Likewise.
22923         * lib/unictype/categ_N.h: Likewise.
22924         * lib/unictype/categ_Nd.h: Likewise.
22925         * lib/unictype/categ_Nl.h: Likewise.
22926         * lib/unictype/categ_No.h: Likewise.
22927         * lib/unictype/categ_P.h: Likewise.
22928         * lib/unictype/categ_Pc.h: Likewise.
22929         * lib/unictype/categ_Pd.h: Likewise.
22930         * lib/unictype/categ_Pe.h: Likewise.
22931         * lib/unictype/categ_Pf.h: Likewise.
22932         * lib/unictype/categ_Pi.h: Likewise.
22933         * lib/unictype/categ_Po.h: Likewise.
22934         * lib/unictype/categ_Ps.h: Likewise.
22935         * lib/unictype/categ_S.h: Likewise.
22936         * lib/unictype/categ_Sc.h: Likewise.
22937         * lib/unictype/categ_Sk.h: Likewise.
22938         * lib/unictype/categ_Sm.h: Likewise.
22939         * lib/unictype/categ_So.h: Likewise.
22940         * lib/unictype/categ_Z.h: Likewise.
22941         * lib/unictype/categ_Zl.h: Likewise.
22942         * lib/unictype/categ_Zp.h: Likewise.
22943         * lib/unictype/categ_Zs.h: Likewise.
22944         * lib/unictype/categ_of.h: Likewise.
22945         * lib/unictype/combining.h: Likewise.
22946         * lib/unictype/ctype_alnum.h: Likewise.
22947         * lib/unictype/ctype_alpha.h: Likewise.
22948         * lib/unictype/ctype_blank.h: Likewise.
22949         * lib/unictype/ctype_cntrl.h: Likewise.
22950         * lib/unictype/ctype_digit.h: Likewise.
22951         * lib/unictype/ctype_graph.h: Likewise.
22952         * lib/unictype/ctype_lower.h: Likewise.
22953         * lib/unictype/ctype_print.h: Likewise.
22954         * lib/unictype/ctype_punct.h: Likewise.
22955         * lib/unictype/ctype_space.h: Likewise.
22956         * lib/unictype/ctype_upper.h: Likewise.
22957         * lib/unictype/ctype_xdigit.h: Likewise.
22958         * lib/unictype/decdigit.h: Likewise.
22959         * lib/unictype/digit.h: Likewise.
22960         * lib/unictype/mirror.h: Likewise.
22961         * lib/unictype/numeric.h: Likewise.
22962         * lib/unictype/pr_alphabetic.h: Likewise.
22963         * lib/unictype/pr_ascii_hex_digit.h: Likewise.
22964         * lib/unictype/pr_bidi_arabic_digit.h: Likewise.
22965         * lib/unictype/pr_bidi_arabic_right_to_left.h: Likewise.
22966         * lib/unictype/pr_bidi_block_separator.h: Likewise.
22967         * lib/unictype/pr_bidi_boundary_neutral.h: Likewise.
22968         * lib/unictype/pr_bidi_common_separator.h: Likewise.
22969         * lib/unictype/pr_bidi_control.h: Likewise.
22970         * lib/unictype/pr_bidi_embedding_or_override.h: Likewise.
22971         * lib/unictype/pr_bidi_eur_num_separator.h: Likewise.
22972         * lib/unictype/pr_bidi_eur_num_terminator.h: Likewise.
22973         * lib/unictype/pr_bidi_european_digit.h: Likewise.
22974         * lib/unictype/pr_bidi_hebrew_right_to_left.h: Likewise.
22975         * lib/unictype/pr_bidi_left_to_right.h: Likewise.
22976         * lib/unictype/pr_bidi_non_spacing_mark.h: Likewise.
22977         * lib/unictype/pr_bidi_other_neutral.h: Likewise.
22978         * lib/unictype/pr_bidi_pdf.h: Likewise.
22979         * lib/unictype/pr_bidi_segment_separator.h: Likewise.
22980         * lib/unictype/pr_bidi_whitespace.h: Likewise.
22981         * lib/unictype/pr_combining.h: Likewise.
22982         * lib/unictype/pr_composite.h: Likewise.
22983         * lib/unictype/pr_currency_symbol.h: Likewise.
22984         * lib/unictype/pr_dash.h: Likewise.
22985         * lib/unictype/pr_decimal_digit.h: Likewise.
22986         * lib/unictype/pr_default_ignorable_code_point.h: Likewise.
22987         * lib/unictype/pr_deprecated.h: Likewise.
22988         * lib/unictype/pr_diacritic.h: Likewise.
22989         * lib/unictype/pr_extender.h: Likewise.
22990         * lib/unictype/pr_format_control.h: Likewise.
22991         * lib/unictype/pr_grapheme_base.h: Likewise.
22992         * lib/unictype/pr_grapheme_extend.h: Likewise.
22993         * lib/unictype/pr_grapheme_link.h: Likewise.
22994         * lib/unictype/pr_hex_digit.h: Likewise.
22995         * lib/unictype/pr_hyphen.h: Likewise.
22996         * lib/unictype/pr_id_continue.h: Likewise.
22997         * lib/unictype/pr_id_start.h: Likewise.
22998         * lib/unictype/pr_ideographic.h: Likewise.
22999         * lib/unictype/pr_ids_binary_operator.h: Likewise.
23000         * lib/unictype/pr_ids_trinary_operator.h: Likewise.
23001         * lib/unictype/pr_ignorable_control.h: Likewise.
23002         * lib/unictype/pr_iso_control.h: Likewise.
23003         * lib/unictype/pr_join_control.h: Likewise.
23004         * lib/unictype/pr_left_of_pair.h: Likewise.
23005         * lib/unictype/pr_line_separator.h: Likewise.
23006         * lib/unictype/pr_logical_order_exception.h: Likewise.
23007         * lib/unictype/pr_lowercase.h: Likewise.
23008         * lib/unictype/pr_math.h: Likewise.
23009         * lib/unictype/pr_non_break.h: Likewise.
23010         * lib/unictype/pr_not_a_character.h: Likewise.
23011         * lib/unictype/pr_numeric.h: Likewise.
23012         * lib/unictype/pr_other_alphabetic.h: Likewise.
23013         * lib/unictype/pr_other_default_ignorable_code_point.h: Likewise.
23014         * lib/unictype/pr_other_grapheme_extend.h: Likewise.
23015         * lib/unictype/pr_other_id_continue.h: Likewise.
23016         * lib/unictype/pr_other_id_start.h: Likewise.
23017         * lib/unictype/pr_other_lowercase.h: Likewise.
23018         * lib/unictype/pr_other_math.h: Likewise.
23019         * lib/unictype/pr_other_uppercase.h: Likewise.
23020         * lib/unictype/pr_paired_punctuation.h: Likewise.
23021         * lib/unictype/pr_paragraph_separator.h: Likewise.
23022         * lib/unictype/pr_pattern_syntax.h: Likewise.
23023         * lib/unictype/pr_pattern_white_space.h: Likewise.
23024         * lib/unictype/pr_private_use.h: Likewise.
23025         * lib/unictype/pr_punctuation.h: Likewise.
23026         * lib/unictype/pr_quotation_mark.h: Likewise.
23027         * lib/unictype/pr_radical.h: Likewise.
23028         * lib/unictype/pr_sentence_terminal.h: Likewise.
23029         * lib/unictype/pr_soft_dotted.h: Likewise.
23030         * lib/unictype/pr_space.h: Likewise.
23031         * lib/unictype/pr_terminal_punctuation.h: Likewise.
23032         * lib/unictype/pr_titlecase.h: Likewise.
23033         * lib/unictype/pr_unassigned_code_value.h: Likewise.
23034         * lib/unictype/pr_unified_ideograph.h: Likewise.
23035         * lib/unictype/pr_uppercase.h: Likewise.
23036         * lib/unictype/pr_variation_selector.h: Likewise.
23037         * lib/unictype/pr_white_space.h: Likewise.
23038         * lib/unictype/pr_xid_continue.h: Likewise.
23039         * lib/unictype/pr_xid_start.h: Likewise.
23040         * lib/unictype/pr_zero_width.h: Likewise.
23041         * lib/unictype/scripts.h: Likewise.
23042         * lib/unictype/scripts_byname.gperf: Likewise.
23043         * lib/unictype/sy_c_ident.h: Likewise.
23044         * lib/unictype/sy_c_whitespace.h: Likewise.
23045         * lib/unictype/sy_java_ident.h: Likewise.
23046         * lib/unictype/sy_java_whitespace.h: Likewise.
23047
23048         * lib/unictype/Makefile: New file.
23049         * lib/unictype/gen-ctype.c: New file, based on gen-unicode-ctype.c in
23050         glibc.
23051         * lib/unictype/3level.h: New file, copied from glibc.
23052         * lib/unictype/3levelbit.h: New file.
23053
23054 2007-11-11  Bruno Haible  <bruno@clisp.org>
23055
23056         * modules/gperf: New file.
23057         * modules/iconv_open (Depends-on): Add it.
23058         (Makefile.am): Remove the GPERF definition.
23059
23060 2007-11-11  Bruno Haible  <bruno@clisp.org>
23061
23062         * m4/round.m4 (gl_FUNC_ROUND): Test against NetBSD 3.0 bug.
23063         * doc/functions/round.texi: Mention the NetBSD 3.0 bug.
23064
23065 2007-11-11  Bruno Haible  <bruno@clisp.org>
23066
23067         * tests/test-argmatch.c (ARGMATCH_DIE): Undefine.
23068         (usage): Remove function.
23069
23070 2007-11-11  Bruno Haible  <bruno@clisp.org>
23071
23072         * m4/roundf.m4 (gl_FUNC_ROUNDF): Use gl_FUNC_FLOORF_LIBS and
23073         gl_FUNC_CEILF_LIBS.
23074         * m4/round.m4 (gl_FUNC_ROUND): Use gl_FUNC_FLOOR_LIBS and
23075         gl_FUNC_CEIL_LIBS.
23076         * m4/roundl.m4 (gl_FUNC_ROUNDL): Use gl_FUNC_FLOORL_LIBS and
23077         gl_FUNC_CEILL_LIBS.
23078         * modules/roundf (Files): Add m4/floorf.m4, m4/ceilf.m4.
23079         * modules/round (Files): Add m4/floor.m4, m4/ceil.m4.
23080         * modules/roundl (Files): Add m4/floorl.m4, m4/ceill.m4.
23081
23082 2007-11-11  Bruno Haible  <bruno@clisp.org>
23083
23084         * m4/roundf.m4 (gl_FUNC_ROUNDF): Handle the case that floorf and
23085         roundf were declared but do not exist on functions.
23086         * m4/roundl.m4 (gl_FUNC_ROUNDL): Handle the case that floorl and
23087         roundl were declared but do not exist on functions.
23088         * lib/round.c (HAVE_FLOOR_AND_CEIL): Use HAVE_FLOORF_AND_CEILF and
23089         HAVE_FLOORL_AND_CEILL, respectively.
23090         Needed for Sun C on Solaris 10.
23091
23092 2007-11-11  Bruno Haible  <bruno@clisp.org>
23093
23094         * m4/roundf.m4 (gl_FUNC_ROUNDF): Set REPLACE_ROUNDF instead of
23095         HAVE_DECL_ROUNDF. Remove redundant AC_SUBST.
23096         * m4/round.m4 (gl_FUNC_ROUND): Set REPLACE_ROUND instead of
23097         HAVE_DECL_ROUND. Remove redundant AC_SUBST.
23098         * m4/roundl.m4 (gl_FUNC_ROUNDL): Set REPLACE_ROUNDL instead of
23099         HAVE_DECL_ROUNDL. Remove redundant AC_SUBST.
23100         * lib/math.in.h (roundf): Use REPLACE_ROUNDF instead of
23101         HAVE_DECL_ROUNDF.
23102         (round): Use REPLACE_ROUND instead of HAVE_DECL_ROUND.
23103         (roundl): Use REPLACE_ROUNDL instead of HAVE_DECL_ROUNDL.
23104         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_ROUND* instead
23105         of HAVE_DECL_ROUND*.
23106         * modules/math (Makefile.am): Update.
23107
23108 2007-11-10  Bruno Haible  <bruno@clisp.org>
23109
23110         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Use same check for
23111         ptrdiff_t as m4/intl.m4.
23112
23113 2007-11-10  Jim Meyering  <meyering@redhat.com>
23114
23115         Avoid link failure for the argmatch test.
23116         * tests/test-argmatch.c (usage): Define function to avoid a link
23117         failure: argmatch_die requires a usage function.
23118
23119 2007-11-09  Bruno Haible  <bruno@clisp.org>
23120
23121         * doc/functions/snprintf.texi: Mention BeOS deficiency.
23122         * doc/functions/vsnprintf.texi: Likewise.
23123         * lib/vasnprintf.c (VASNPRINTF): Ensure that we never call snprintf
23124         with a size argument < 2.
23125
23126 2007-11-09  Bruno Haible  <bruno@clisp.org>
23127
23128         * lib/vasnprintf.c (VASNPRINTF): Increase reallocation of snprintf
23129         buffer. Fixes an inefficiency introduced on 2007-11-03.
23130
23131 2007-11-09  Bruno Haible  <bruno@clisp.org>
23132
23133         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8) [BeOS]: Make this test return
23134         none instead of tr_TR. Fixes a failure of test-c-strcasecmp.c.
23135
23136 2007-11-08  Jim Meyering  <meyering@redhat.com>
23137
23138         Change cache variable name prefix "jm_" to "gl_" everywhere.
23139         * m4/d-type.m4, m4/jm-winsz1.m4, m4/jm-winsz2.m4, m4/link-follow.m4:
23140         * m4/putenv.m4, m4/strtoimax.m4, m4/strtoumax.m4, m4/unlink-busy.m4:
23141         * m4/uptime.m4: s/gl_/jm_/
23142
23143 2007-11-07  Bruno Haible  <bruno@clisp.org>
23144
23145         Update to GNU gettext 0.17.
23146         * m4/intl.m4: Update to GNU gettext 0.17.
23147         * m4/po.m4: Likewise.
23148         * modules/gettext (Files): Remove m4/ulonglong.m4.
23149         (configure.ac): Require gettext infrastructure from version 0.17.
23150
23151 2007-11-06  Bruno Haible  <bruno@clisp.org>
23152
23153         * lib/fbufmode.c (fbufmode) [QNX]: Use numerical values for flags; the
23154         symbolic values are not defined in a public header.
23155         * lib/freadable.c (freadable) [QNX]: Likewise.
23156         * lib/freadahead.c (freadahead) [QNX]: Likewise.
23157         * lib/freading.c (freading) [QNX]: Likewise.
23158         * lib/fseterr.c (fseterr) [QNX]: Likewise.
23159         * lib/fwritable.c (fwritable) [QNX]: Likewise.
23160         * lib/fwriting.c (fwriting) [QNX]: Likewise.
23161         * lib/fpurge.c (fpurge) [QNX]: Likewise. Add a return statement.
23162         Reported by Alain Magloire.
23163
23164         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for QNX.
23165
23166 2007-11-05  Bruno Haible  <bruno@clisp.org>
23167
23168         * lib/vasnprintf.c (VASNPRINTF): Expand the NEED_PRINTF_DIRECTIVE_A
23169         code when NEED_PRINTF_LONG_DOUBLE or NEED_PRINTF_DOUBLE is set.
23170         Needed on Cygwin, where !NEED_PRINTF_DIRECTIVE_A && NEED_PRINTF_DOUBLE.
23171         Reported by Eric Blake.
23172
23173 2007-10-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23174             Bruno Haible  <bruno@clisp.org>
23175
23176         * modules/malloc (configure.ac): Define GNULIB_MALLOC_GNU always.
23177         * modules/realloc (configure.ac): Define GNULIB_REALLOC_GNU always.
23178         * lib/realloc.c (SYSTEM_MALLOC_GLIBC_COMPATIBLE): New macro.
23179         (malloc): Undefine also before including <stdlib.h>.
23180         (rpl_realloc): Turn malloc(0) into malloc(1) if necessary.
23181         Needed on OSF/1 4.0.
23182
23183 2007-11-05  Jim Meyering  <meyering@redhat.com>
23184
23185         git-version-gen: sync from coreutils.
23186         * build-aux/git-version-gen: Add comments.
23187         Change the first '-' to '.' in the snapshot version string,
23188         e.g., 6.9-377-08144 -> 6.9.377-08144
23189         Remove first parameter.
23190         Don't declare a version "-dirty" merely because a time
23191         stamp has changed.
23192
23193 2007-11-04  Bruno Haible  <bruno@clisp.org>
23194
23195         * lib/lock.h: Protect all macro definitions containing an 'if'
23196         statement through a "do { ... } while (0)".
23197         * lib/tls.h: Likewise.
23198
23199 2007-11-04  Bruno Haible  <bruno@clisp.org>
23200
23201         * lib/vasnprintf.c (DCHAR_IS_TCHAR, DCHAR_CPY): Undefine at the end.
23202
23203 2007-11-04  Bruno Haible  <bruno@clisp.org>
23204
23205         * m4/printf.m4 (gl_PRINTF_ENOMEM): Use GL_NOCRASH.
23206         * modules/fprintf-posix (Depends-on): Add nocrash.
23207         * modules/snprintf-posix (Depends-on): Likewise.
23208         * modules/sprintf-posix (Depends-on): Likewise.
23209         * modules/vasnprintf-posix (Depends-on): Likewise.
23210         * modules/vasprintf-posix (Depends-on): Likewise.
23211         * modules/vfprintf-posix (Depends-on): Likewise.
23212         * modules/vsnprintf-posix (Depends-on): Likewise.
23213         * modules/vsprintf-posix (Depends-on): Likewise.
23214         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
23215         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
23216         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
23217         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
23218         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
23219         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
23220         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
23221
23222 2007-11-04  Bruno Haible  <bruno@clisp.org>
23223
23224         * modules/nocrash: New file.
23225         * m4/nocrash.m4: New file, taken from GNU clisp. Code taken from
23226         GNU libsigsegv, with permission of GNU libsigsegv's copyright holders.
23227
23228 2007-11-04  Bruno Haible  <bruno@clisp.org>
23229
23230         * tests/test-vasnprintf-posix.c (test_function): Add some tests of
23231         precision handling.
23232         * tests/test-vasprintf-posix.c (test_function): Likewise.
23233         * tests/test-snprintf-posix.h (test_function): Likewise.
23234         * tests/test-sprintf-posix.h (test_function): Likewise.
23235
23236         Fix *printf behaviour for large precisions on mingw and BeOS.
23237         * m4/printf.m4 (gl_PRINTF_PRECISION): New macro.
23238         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_UNBOUNDED_PRECISION.
23239         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_PRECISION): New macro.
23240         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
23241         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
23242         gl_PRINTF_PRECISION and test its result. Invoke
23243         gl_PREREQ_VASNPRINTF_PRECISION.
23244         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
23245         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
23246         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
23247         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
23248         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
23249         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
23250         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
23251         * doc/functions/fprintf.texi: Update.
23252         * doc/functions/printf.texi: Update.
23253         * doc/functions/snprintf.texi: Update.
23254         * doc/functions/sprintf.texi: Update.
23255         * doc/functions/vfprintf.texi: Update.
23256         * doc/functions/vprintf.texi: Update.
23257         * doc/functions/vsnprintf.texi: Update.
23258         * doc/functions/vsprintf.texi: Update.
23259
23260 2007-11-04  Bruno Haible  <bruno@clisp.org>
23261
23262         * lib/vasnprintf.c (scale10_round_decimal_decoded): Fix shift loop.
23263
23264 2007-11-04  Bruno Haible  <bruno@clisp.org>
23265
23266         * modules/relocatable-prog (Files): Add m4/lib-ld.m4.
23267         Reported by Sylvain Beucler <beuc@gnu.org>.
23268
23269 2007-11-03  Bruno Haible  <bruno@clisp.org>
23270
23271         * tests/test-fprintf-posix2.sh: New file.
23272         * tests/test-fprintf-posix2.c: New file.
23273         * modules/fprintf-posix-tests (Files): Add them.
23274         (TESTS): Add test-fprintf-posix2.sh.
23275         (configure.ac): Check for getrlimit and setrlimit.
23276         (check_PROGRAMS): Add test-fprintf-posix2.
23277
23278         * tests/test-printf-posix2.sh: New file.
23279         * tests/test-printf-posix2.c: New file.
23280         * modules/printf-posix-tests (Files): Add them.
23281         (TESTS): Add test-printf-posix2.sh.
23282         (configure.ac): Check for getrlimit and setrlimit.
23283         (check_PROGRAMS): Add test-printf-posix2.
23284
23285         Fix *printf behaviour in out-of-memory situations on MacOS X and *BSD.
23286         * m4/printf.m4 (gl_PRINTF_ENOMEM): New macro.
23287         * lib/vasnprintf.c: Implement NEED_PRINTF_DOUBLE.
23288         (decode_double): New function, copied from decode_long_double.
23289         (scale10_round_decimal_decoded): New function, extracted from
23290         scale10_round_decimal_long_double.
23291         (scale10_round_decimal_long_double): Use it.
23292         (scale10_round_decimal_double): New function.
23293         (floorlog10): New function.
23294         (VASNPRINTF): Handle NEED_PRINTF_DOUBLE case.
23295         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_ENOMEM): New macro.
23296         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
23297         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
23298         gl_PRINTF_ENOMEM and test its result. Invoke
23299         gl_PREREQ_VASNPRINTF_ENOMEM.
23300         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
23301         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
23302         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
23303         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
23304         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
23305         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
23306         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
23307         * modules/fprintf-posix (Depends-on): Add frexp-nolibm.
23308         * modules/snprintf-posix (Depends-on): Likewise.
23309         * modules/sprintf-posix (Depends-on): Likewise.
23310         * modules/vasnprintf-posix (Depends-on): Likewise.
23311         * modules/vasprintf-posix (Depends-on): Likewise.
23312         * modules/vfprintf-posix (Depends-on): Likewise.
23313         * modules/vsnprintf-posix (Depends-on): Likewise.
23314         * modules/vsprintf-posix (Depends-on): Likewise.
23315         * doc/functions/fprintf.texi: Update.
23316         * doc/functions/printf.texi: Update.
23317         * doc/functions/snprintf.texi: Update.
23318         * doc/functions/sprintf.texi: Update.
23319         * doc/functions/vfprintf.texi: Update.
23320         * doc/functions/vprintf.texi: Update.
23321         * doc/functions/vsnprintf.texi: Update.
23322         * doc/functions/vsprintf.texi: Update.
23323
23324 2007-11-03  Bruno Haible  <bruno@clisp.org>
23325
23326         * modules/frexp-nolibm-tests: New file.
23327
23328         * modules/frexp-nolibm: New file.
23329         * m4/frexp.m4 (gl_FUNC_FREXP_NO_LIBM): New macro.
23330
23331 2007-11-03  Bruno Haible  <bruno@clisp.org>
23332
23333         * lib/vasnprintf.c (VASNPRINTF): Don't assume that snprintf's return
23334         value is C99 compliant.
23335         Needed for OSF/1 5.1.
23336
23337 2007-11-03  Bruno Haible  <bruno@clisp.org>
23338
23339         Fix out-of-memory handling of vasnprintf.
23340         * lib/printf-parse.c: Include <errno.h>.
23341         (PRINTF_PARSE): When failing, set errno to EINVAL or ENOMEM.
23342         * lib/vasnprintf.c (VASNPRINTF): When PRINTF_PARSE fails, assume errno
23343         is already set.
23344
23345 2007-11-02  Eric Blake  <ebb9@byu.net>
23346
23347         Fix tests on cygwin.
23348         * modules/xprintf-posix-tests (Makefile.am): Link against -lintl.
23349
23350 2007-11-01  Bruno Haible  <bruno@clisp.org>
23351
23352         * lib/stdlib.in.h (putenv): Remove the "not POSIX compliant everywhere"
23353         warning.
23354         * doc/functions/putenv.texi: Clarify that the 'putenv' module is not
23355         needed for POSIX compatibility.
23356
23357 2007-11-01  Paul Eggert  <eggert@cs.ucla.edu>
23358
23359         * m4/putenv.m4 (gl_FUNC_PUTENV): Also mention that we're checking
23360         for compatibility with GNU.
23361
23362 2007-11-01  Bruno Haible  <bruno@clisp.org>
23363
23364         * lib/putenv.c: Include <stdlib.h>. Remove rpl_putenv declaration.
23365         (putenv): Renamed from rpl_putenv. Change argument type from
23366         'const char *' to 'char *'.
23367         * m4/putenv.m4 (gl_FUNC_PUTENV): Require gl_STDLIB_H_DEFAULTS. Instead
23368         of defining putenv in config.h, just set REPLACE_PUTENV.
23369         * modules/putenv (Depends-on): Add stdlib.
23370         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
23371         (Include): Use <stdlib.h>.
23372         * lib/stdlib.in.h (putenv): New declaration.
23373         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_PUTENV and
23374         REPLACE_PUTENV.
23375         * modules/stdlib (Makefile.am): Substitute GNULIB_PUTENV and
23376         REPLACE_PUTENV.
23377         Needed for MacOS X 10.5.0.
23378         Reported by Peter O'Gorman <peter@pogma.com>.
23379
23380 2007-11-01  Jim Meyering  <meyering@redhat.com>
23381
23382         Treat an empty date string exactly like "0".
23383         * lib/getdate.y (get_date): Once any isspace or TZ= prefix is consumed,
23384         if the remaining date string (to be parsed) is empty, use "0".
23385         Reported by Mischa Molhoek and discussed in this thread:
23386         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/11726>.
23387
23388 2007-10-31  Bruno Haible  <bruno@clisp.org>
23389
23390         * m4/intmax_t.m4 (gl_AC_TYPE_INTMAX_T, gt_AC_TYPE_INTMAX_T): Use
23391         AC_TYPE_LONG_LONG_INT instead of gl_AC_TYPE_LONG_LONG.
23392         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Use
23393         AC_TYPE_UNSIGNED_LONG_LONG_INT instead of gl_AC_TYPE_UNSIGNED_LONG_LONG.
23394         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Remove macro.
23395         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG): Remove macro.
23396
23397 2007-10-31  Bruno Haible  <bruno@clisp.org>
23398
23399         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): New macro, extracted
23400         from AC_TYPE_LONG_LONG_INT and AC_TYPE_UNSIGNED_LONG_LONG_INT.
23401         (AC_TYPE_LONG_LONG_INT): Use it.
23402         (AC_TYPE_UNSIGNED_LONG_LONG_INT): Moved here from m4/ulonglong.m4. Use
23403         it as well.
23404         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Remove macro; moved
23405         to m4/longlong.m4.
23406         * modules/stdint (Files): Remove m4/ulonglong.m4.
23407         * modules/strtoull (Files): Use m4/longlong.m4 instead of
23408         m4/ulonglong.m4.
23409         * modules/strtoumax (Files): Likewise.
23410
23411 2007-10-30  Bruno Haible  <bruno@clisp.org>
23412
23413         * modules/xvasprintf-posix: New file.
23414         Suggested by Eric Blake.
23415
23416 2007-10-30  Bruno Haible  <bruno@clisp.org>
23417
23418         * modules/xprintf-posix-tests: New file.
23419         * tests/test-xprintf-posix.sh: New file.
23420         * tests/test-xprintf-posix.c: New file.
23421         * tests/test-xfprintf-posix.c: New file.
23422
23423         * modules/xprintf-posix: New file.
23424
23425 2007-10-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23426
23427         * modules/fbufmode-tests (MOSTLYCLEANFILES): Remove temp files.
23428         * modules/freadable-tests (MOSTLYCLEANFILES): Likewise.
23429         * modules/fwritable-tests (MOSTLYCLEANFILES): Likewise.
23430
23431 2007-10-29  Bruno Haible  <bruno@clisp.org>
23432
23433         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Rename the cache variable to
23434         contain the special marker '_cv_'.
23435         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
23436         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
23437         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
23438         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Likewise.
23439         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
23440         Reported by Ralf Wildenhues.
23441
23442 2007-10-29  Bruno Haible  <bruno@clisp.org>
23443
23444         * gnulib-tool (func_import): When --lgpl is not specified, set
23445         sed_transform_lib_file to convert LGPL and GPLv2+ copyright headers to
23446         GPLv3.
23447         Reported by Simon Josefsson.
23448
23449 2007-10-28  Bruno Haible  <bruno@clisp.org>
23450
23451         * lib/math.in.h: Test REPLACE_ISFINITE instead of HAVE_DECL_ISFINITE.
23452         * m4/isfinite.m4 (gl_ISFINITE): Initialize REPLACE_ISFINITE instead of
23453         HAVE_DECL_ISFINITE.
23454         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
23455         * modules/math (Makefile.am): Substitute REPLACE_ISFINITE instead of
23456         HAVE_DECL_ISFINITE.
23457
23458 2007-10-28  Bruno Haible  <bruno@clisp.org>
23459
23460         * lib/stdint.in.h (_STDINT_MAX): Subtract 1 from an unused signed
23461         integer shift in the signed case. Fixes warnings with OSF/1 5.1 cc.
23462
23463 2007-10-28  Bruno Haible  <bruno@clisp.org>
23464
23465         Fix link errors with Sun C 5.0 on Solaris 10.
23466         * m4/floorf.m4 (gl_FUNC_FLOORF): Consider also the case that the
23467         function is declared but not present in the compiler's libm.
23468         * m4/floorl.m4 (gl_FUNC_FLOORL): Likewise.
23469         * m4/ceilf.m4 (gl_FUNC_CEILF): Likewise.
23470         * m4/ceill.m4 (gl_FUNC_CEILL: Likewise.
23471         * lib/math.in.h: Test REPLACE_CEILF instead of HAVE_DECL_CEILF.
23472         Test REPLACE_CEILL instead of HAVE_DECL_CEILL.
23473         Test REPLACE_FLOORF instead of HAVE_DECL_FLOORF.
23474         Test REPLACE_FLOORL instead of HAVE_DECL_FLOORL.
23475         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
23476         * modules/math (Makefile.am): Substitute REPLACE_CEILF instead of
23477         HAVE_DECL_CEILF, REPLACE_CEILL instead of HAVE_DECL_CEILL,
23478         REPLACE_FLOORF instead of HAVE_DECL_FLOORF, REPLACE_FLOORL instead of
23479         HAVE_DECL_FLOORL.
23480
23481 2007-10-28  Bruno Haible  <bruno@clisp.org>
23482
23483         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): New macro, extracted from
23484         gl_FUNC_FLOORL. Cache the result.
23485         (gl_FUNC_FLOORL): Use it.
23486         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): New macro, extracted from
23487         gl_FUNC_CEILL. Cache the result.
23488         (gl_FUNC_CEILL): Use it.
23489
23490         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): New macro, extracted from
23491         gl_FUNC_FLOOR. Cache the result.
23492         (gl_FUNC_FLOOR): Use it.
23493         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): New macro, extracted from
23494         gl_FUNC_CEIL. Cache the result.
23495         (gl_FUNC_CEIL): Use it.
23496
23497         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): New macro, extracted from
23498         gl_FUNC_FLOORF. Cache the result.
23499         (gl_FUNC_FLOORF): Use it.
23500         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): New macro, extracted from
23501         gl_FUNC_CEILF. Cache the result.
23502         (gl_FUNC_CEILF): Use it.
23503
23504 2007-10-28  Bruno Haible  <bruno@clisp.org>
23505
23506         * gnulib-tool: Allow specifying the LGPL version number through
23507         --lgpl=2 or --lgpl=3.
23508         (func_usage): Document --lgpl with argument.
23509         Handle --lgpl=... arguments.
23510         (func_import): Recognize also gl_LGPL calls with an argument. When
23511         --lgpl=2 is used and the module's license is just LGPL, report an
23512         error. Set sed_transform_lib_file according to the lgpl variable. In
23513         the generated files, use --lgpl or gl_LGPL invocations with argument,
23514         if necessary.
23515         * doc/gnulib-intro.texi (Copyright): Explain how to get modules under
23516         an LGPv2+ license.
23517         * doc/gnulib-tool.texi (Modified imports): Update explanation of
23518         gl_LGPL macro.
23519
23520 2007-10-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23521             Bruno Haible  <bruno@clisp.org>
23522
23523         * lib/unistr.h (u8_uctomb_aux): Declare also if !HAVE_INLINE.
23524         (u16_uctomb_aux): Likewise.
23525         * lib/unistr/u8-uctomb-aux.c (u8_uctomb_aux): Define also if
23526         !HAVE_INLINE.
23527         * lib/unistr/u16-uctomb-aux.c (u16_uctomb_aux): Likewise
23528
23529 2007-10-28  Bruno Haible  <bruno@clisp.org>
23530
23531         * modules/error: Add a notice recommending to change XGETTEXT_OPTIONS.
23532         Invoke AM_GETTEXT_OPTION if it exists.
23533         * modules/vasprintf: Likewise.
23534         * modules/verror: Likewise.
23535         * modules/xprintf: Likewise.
23536         * modules/xvasprintf: Likewise.
23537
23538 2007-10-27  Ben Pfaff  <blp@gnu.org>
23539
23540         * lib/math.in.h: Define isfinite macro and prototypes for
23541         gl_isfinitef, gl_isfinited, gl_isfinitel if we are providing
23542         implementations.
23543         * m4/math_h.m4: New substitutions for isfinite module.
23544         * lib/isfinite.c: New file.
23545         * m4/isfinite.m4: New file.
23546         * modules/math: Replace isfinite-related @VARS@ in math.in.h.
23547         * modules/isfinite: New file.
23548         * modules/isfinite-tests: New file.
23549         * tests/tests-isfinite.c: New file.
23550         * doc/functions/isfinite.texi: Mention isfinite module.
23551         * MODULES.html.sh: Mention new module.
23552
23553 2007-10-27  Ben Pfaff  <blp@gnu.org>
23554
23555         Ralf Wildenhues reported that Tru64 4.0D declares the round
23556         functions but does not have definitions.
23557         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): If the target function
23558         cannot be found in any library, set the output variable to
23559         "missing" instead of "".
23560         * m4/round.m4: Also use our substitute if we cannot find round in
23561         any library, even if it is declared.
23562         * m4/roundf.m4: Likewise for roundf.
23563         * m4/roundl.m4: Likewise for roundl.
23564         * lib/math.in.h: Undefine roundf, round, roundl before defining
23565         their replacements, to allow for hypothetical systems where these
23566         may be defined as macros but not available in libraries.
23567
23568 2007-10-27  Bruno Haible  <bruno@clisp.org>
23569
23570         * doc/gnulib.texi: Invoke @firstparagraphindent.
23571         * doc/gnulib-tool.texi (Simple update): Mention possible incompatible
23572         changes in gnulib.
23573         (Source changes): New section.
23574
23575 2007-10-26  Bruno Haible  <bruno@clisp.org>
23576
23577         * m4/gnulib-common.m4 (AC_C_RESTRICT): New overriding definition,
23578         borrowed from autoconf.
23579
23580 2007-10-26  Bruno Haible  <bruno@clisp.org>
23581
23582         * lib/strerror.c (rpl_strerror): Return "Unknown error ..." also if
23583         strerror returned the empty string. Needed on HP-UX 11.00.
23584
23585 2007-10-24  Micah Cowan  <micah@cowan.name>
23586
23587         Remove vestiges of cvs-gnulib-checkout process.  Now we use git.
23588         * build-aux/bootstrap: Remove support for now-unnecessary option,
23589         --cvs-user, and envvars CVS_USER, CVS_RSH.
23590
23591 2007-10-24  Jim Meyering  <meyering@redhat.com>
23592
23593         Avoid diagnostics from sha1sum when there is no cached checksum.
23594         * build-aux/bootstrap (update_po_files): Skip the sha1sum check
23595         if the po.s1 file hasn't been created yet.
23596
23597         * build-aux/bootstrap: Sync from coreutils:
23598         2007-10-24  Jim Meyering  <meyering@redhat.com>
23599         Get gnulib from the git repository, not from an obsolete cvs one.
23600         * build-aux/bootstrap: Suggestion from Micah Cowan.
23601         2007-10-04  Jim Meyering  <jim@meyering.net>
23602         * build-aux/bootstrap (slurp): Adapt to _.h -> .in.h name change.
23603         (update_po_files): Work also when there are no .po files in po/.
23604
23605 2007-10-24  Paul Eggert  <eggert@cs.ucla.edu>
23606
23607         * README: Append ".git" to git and cg examples.
23608         Problem reported by Benoit Sigoure.
23609
23610 2007-10-23  Micah Cowan  <micah@cowan.name>
23611
23612         * users.txt: Add wget.
23613
23614 2007-10-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23615
23616         Fix linking of some unistdio tests on FreeBSD.
23617         * modules/unistdio/u16-vsnprintf-tests
23618         (test_u16_vsprintf1_LDADD): Add @LIBINTL@.
23619         * modules/unistdio/u16-vsprintf-tests
23620         (test_u16_vsnprintf1_LDADD): Likewise.
23621         * modules/unistdio/u32-vsnprintf-tests
23622         (test_u32_vsnprintf1_LDADD): Likewise.
23623         * modules/unistdio/u32-vsprintf-tests
23624         (test_u32_vsprintf1_LDADD): Likewise.
23625         * modules/unistdio/u8-vsnprintf-tests
23626         (test_u8_vsnprintf1_LDADD): Likewise.
23627         * modules/unistdio/u8-vsprintf-tests
23628         (test_u8_vsprintf1_LDADD): Likewise.
23629         * modules/unistdio/ulc-vsnprintf-tests
23630         (test_ulc_vsnprintf1_LDADD): Likewise.
23631         * modules/unistdio/ulc-vsprintf-tests
23632         (test_ulc_vsprintf1_LDADD): Likewise.
23633
23634         Fix linking of some uniconv tests on FreeBSD.
23635         * modules/uniconv/u16-conv-from-enc-tests
23636         (test_u16_conv_from_enc_LDADD): Link $(LDADD) before @LIBICONV@.
23637         * modules/uniconv/u16-conv-to-enc-tests
23638         (test_u16_conv_to_enc_LDADD): Likewise.
23639         * modules/uniconv/u16-strconv-from-enc-tests
23640         (test_u16_strconv_from_enc_LDADD): Likewise.
23641         * modules/uniconv/u16-strconv-to-enc-tests
23642         (test_u16_strconv_to_enc_LDADD): Likewise.
23643         * modules/uniconv/u32-conv-from-enc-tests
23644         (test_u32_conv_from_enc_LDADD): Likewise.
23645         * modules/uniconv/u32-conv-to-enc-tests
23646         (test_u32_conv_to_enc_LDADD): Likewise.
23647         * modules/uniconv/u32-strconv-from-enc-tests
23648         (test_u32_strconv_from_enc_LDADD): Likewise.
23649         * modules/uniconv/u32-strconv-to-enc-tests
23650         (test_u32_strconv_to_enc_LDADD): Likewise.
23651         * modules/uniconv/u8-conv-from-enc-tests
23652         (test_u8_conv_from_enc_LDADD): Likewise.
23653         * modules/uniconv/u8-conv-to-enc-tests
23654         (test_u8_conv_to_enc_LDADD): Likewise.
23655         * modules/uniconv/u8-strconv-from-enc-tests
23656         (test_u8_strconv_from_enc_LDADD): Likewise.
23657         * modules/uniconv/u8-strconv-to-enc-tests
23658         (test_u8_strconv_to_enc_LDADD): Likewise.
23659
23660 2007-10-22  Bruno Haible  <bruno@clisp.org>
23661
23662         * lib/stdint.in.h: Add check that intmax_t and uintmax_t have the same
23663         size.
23664
23665 2007-10-22  Eric Blake  <ebb9@byu.net>
23666
23667         Tweak x*printf documentation.
23668         * lib/xprintf.c (xprintf, xvprintf, xfprintf, xvfprintf): Adjust
23669         variable name and comments.
23670         Suggested by Bruno Haible.
23671
23672 2007-10-22  Bruno Haible  <bruno@clisp.org>
23673
23674         * lib/acl.c (copy_acl): Fix file name in comment.
23675
23676 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
23677
23678         Fix Tru64 problem with stdbool.h.
23679         * lib/stdbool.in.h (false, true):
23680         [! (defined __cplusplus || defined __BEOS__) && !defined __GNUC__]:
23681         Don't declare as an enum in this situation; it runs afoul of Tru64.
23682         Problem reported by Steven M. Schweda in
23683         <http://lists.gnu.org/archive/html/bug-autoconf/2007-10/msg00019.html>.
23684
23685 2007-10-22  Eric Blake  <ebb9@byu.net>
23686
23687         Also wrap vf?printf.
23688         * lib/xprintf.h (xvprintf, xvfprintf): New declarations.
23689         * lib/xprintf.c (xprintf, xfprintf): Work for C89.
23690         (xvprintf, xvfprintf): New functions.
23691
23692 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23693
23694         * modules/fstrcmp-tests (test_fstrcmp_LDADD): New, add
23695         @LIBINTL@ for FreeBSD 6.2, $(LIBTHREAD) for AIX 4.3.3.
23696
23697         * lib/uniconv/u16-conv-to-enc.c (U_MBLEN): Define.
23698         * lib/uniconv/u32-conv-to-enc.c (U_MBLEN): Likewise.
23699
23700 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
23701
23702         * lib/acl.c (copy_acl): Adjust to IRIX 6.5.  Problem reported
23703         by Bruno Haible.
23704
23705 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23706
23707         * lib/getloadavg.c
23708         [defined (__osf__) && (defined (__alpha) || defined (__alpha__)]:
23709         Undef `sys' after including sys/table.h, for Tru64 4.0D.
23710
23711         * tests/test-i-ring.c: Work for C89.
23712
23713 2007-10-22  Bruno Haible  <bruno@clisp.org>
23714
23715         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Use -1ull, not
23716         -1u, in preprocessor expression, so that we don't test for the bug
23717         in HP-UX 11.00 cpp.  Testing for this bug caused problems; see
23718         <http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00329.html>.
23719
23720 2007-10-22  Eric Blake  <ebb9@byu.net>
23721
23722         * tests/test-yesno.sh: Silence stderr during test.
23723
23724 2007-10-22  Simon Josefsson  <simon@josefsson.org>
23725
23726         * modules/crypto/gc-camellia: New file.
23727
23728         * m4/gc-camellia.m4: New file.
23729
23730         * lib/gc-libgcrypt.c (gc_cipher_open): Support Camellia.
23731
23732         * lib/gc.h (enum Gc_cipher): Add GC_CAMELLIA128, GC_CAMELLIA256.
23733
23734 2007-10-22  Simon Josefsson  <simon@josefsson.org>
23735
23736         * build-aux/maint.mk (gzip_rsyncable): Don't fail if gzip sends
23737         --help to stdout.  Reported by sms@antinode.org (Steven
23738         M. Schweda).
23739
23740 2007-10-22  Simon Josefsson  <simon@josefsson.org>
23741
23742         * users.txt: Fix link to libksba.
23743
23744 2007-10-21  Ben Pfaff  <blp@gnu.org>
23745
23746         * modules/roundf-tests: Add dependency on floorf, ceilf to allow
23747         round.c roundf implementation that depends on floorf and ceilf to
23748         be tested unconditionally.
23749
23750 2007-10-21  Ben Pfaff  <blp@gnu.org>
23751
23752         * m4/check-libm-func.m4: Removed.
23753         * m4/check-math-lib.m4: New file.
23754         * m4/round.m4: Rewrite to use gl_CHECK_MATH_LIB.
23755         * m4/roundf.m4: Ditto, and fix lack of HAVE_DECL_ROUNDF
23756         definition and lack of AC_LIBOBJ([roundf]).
23757         * m4/roundl.m4: Ditto, and similarly for roundl.
23758         * modules/round: Reference new m4 file.
23759         * modules/roundf: Ditto.
23760         * modules/roundl: Ditto.
23761         * tests/test-round2.c (main): Use ROUND instead of round.
23762         Bug report from Bruno Haible.
23763
23764 2007-10-21  Bruno Haible  <bruno@clisp.org>
23765
23766         * lib/printf-parse.c: Don't assume <stdint.h> exists in IN_LIBASPRINTF
23767         context.
23768
23769 2007-10-21  Bruno Haible  <bruno@clisp.org>
23770
23771         * tests/test-wcwidth.c (main): Allow negative result for some control
23772         characters.
23773
23774         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Check also the width of U+200B.
23775         Needed on OSF/1 5.1.
23776
23777 2007-10-21  Bruno Haible  <bruno@clisp.org>
23778
23779         * tests/test-floorf1.c: Include isnanf.h.
23780         (main): Use isnanf() instead of isnan().
23781         * tests/test-ceilf1.c: Include isnanf.h.
23782         (main): Use isnanf() instead of isnan().
23783         * tests/test-truncf1.c: Include isnanf.h.
23784         (main): Use isnanf() instead of isnan().
23785         * tests/test-roundf1.c: Include isnanf.h.
23786         (main): Use isnanf() instead of isnan().
23787
23788 2007-10-21  Eric Blake  <ebb9@byu.net>
23789
23790         * users.txt: Update URL for m4.
23791
23792 2007-10-21  Bruno Haible  <bruno@clisp.org>
23793
23794         * users.txt: Add clisp. Update URLs to Simon Josefsson's projects.
23795
23796 2007-10-21  Bruno Haible  <bruno@clisp.org>
23797
23798         * gnulib-tool (func_create_megatestdir): Determine the cvsdate from
23799         Git's management files if the CVS files are not present.
23800
23801 2007-10-20  Bruno Haible  <bruno@clisp.org>
23802
23803         * lib/count-one-bits.h (COUNT_ONE_BITS): Use the builtin also for
23804         gcc-3.4.x.
23805
23806 2007-10-20  Ben Pfaff  <blp@gnu.org>
23807
23808         * lib/math.in.h: Declare round, roundf, roundl if we are providing
23809         implementations.
23810         * m4/math_h.m4: New substitutions for round, roundf, roundl modules.
23811         * lib/round.c: New file.
23812         * lib/roundf.c: New file.
23813         * lib/roundl.c: New file.
23814         * m4/round.m4: New file.
23815         * m4/roundf.m4: New file.
23816         * m4/roundl.m4: New file.
23817         * m4/check-libm-func-m4: New file.
23818         * modules/math: Replace round, roundf, roundl related @VARS@ in
23819         math.in.h.
23820         * modules/round: New file.
23821         * modules/round-tests: New file.
23822         * modules/roundf: New file.
23823         * modules/roundf-tests: New file.
23824         * modules/roundl: New file.
23825         * modules/roundl-tests: New file.
23826         * tests/test-round1.c: New file.
23827         * tests/test-round2.c: New file.
23828         * tests/test-roundf1.c: New file.
23829         * tests/test-roundf2.c: New file.
23830         * tests/test-roundl.c: New file.
23831         * doc/functions/round.texi: Mention round module.
23832         * doc/functions/roundf.texi: Mention roundf module.
23833         * doc/functions/roundl.texi: Mention roundl module.
23834         * MODULES.html.sh: Mention new modules.
23835         Thanks to Bruno Haible for suggestions.
23836
23837 2007-10-20  Jim Meyering  <meyering@redhat.com>
23838
23839         * lib/xprintf.c: Include <config.h> unconditionally.
23840
23841         Change xprintf's license to GPL.
23842         * modules/xprintf (License): s/LGPL/GPL/, since this module
23843         depends on modules (exit and exitfail) which are GPL.
23844         Suggestion from Bruno Haible.
23845
23846         xprintf fixes.
23847         * lib/xprintf.c (xprintf, xfprintf): Use va_end.
23848         Use a clearer diagnostic.
23849         Patch from Bruno Haible.
23850
23851 2007-10-20  Bruno Haible  <bruno@clisp.org>
23852
23853         * lib/vasnprintf.c (VASNPRINTF): Don't report overflow if the available
23854         length is INT_MAX and sizeof (DCHAR_T) > sizeof (TCHAR_T).
23855         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
23856
23857 2007-10-20  Bruno Haible  <bruno@clisp.org>
23858
23859         * tests/test-floorf2.c (correct_result_p): Don't rely on excess
23860         precision in the comparison result > x - 1 or similar.
23861         * tests/test-ceilf2.c (correct_result_p): Likewise.
23862         * tests/test-truncf2.c (correct_result_p): Likewise.
23863         * tests/test-trunc2.c (correct_result_p): Likewise.
23864         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
23865
23866 2007-10-20  Bruno Haible  <bruno@clisp.org>
23867
23868         * modules/ceil: New file.
23869         * m4/ceil.m4: New file.
23870         * doc/functions/ceil.texi: Mention the 'ceil' module.
23871
23872 2007-10-20  Bruno Haible  <bruno@clisp.org>
23873
23874         * modules/floor: New file.
23875         * m4/floor.m4: New file.
23876         * doc/functions/floor.texi: Mention the 'floor' module.
23877
23878 2007-10-20  Bruno Haible  <bruno@clisp.org>
23879
23880         * modules/ceilf-tests (Depends-on): Add fprintf-posix. Needed for use
23881         of %a.
23882         * modules/floorf-tests (Depends-on): Likewise.
23883         * modules/truncf-tests (Depends-on): Likewise.
23884         * modules/trunc-tests (Depends-on): Likewise.
23885         Reported by Ben Pfaff.
23886
23887 2007-10-19  Jim Meyering  <meyering@redhat.com>
23888
23889         * lib/xprintf.c (xprintf, xfprintf): Test err < 0, not just "err".
23890         Don't bother testing specific errno values.  Just test ferror.
23891
23892         New module: xprintf
23893         * modules/xprintf, lib/xprintf.c, lib/xprintf.h: New files.
23894
23895 2007-10-19  Bruno Haible  <bruno@clisp.org>
23896
23897         * modules/csharpexec (Makefile.am): Use @FOO@ syntax instead of $(FOO)
23898         syntax.
23899         * modules/javaexec (Makefile.am): Likewise.
23900         * modules/relocatable-prog (Makefile.am): Likewise.
23901         Suggested by Jim Meyering.
23902
23903 2007-10-18  Bruno Haible  <bruno@clisp.org>
23904
23905         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on glibc >= 2.3 systems.
23906         Reported by Jim Meyering.
23907
23908 2007-10-18  Eric Blake  <ebb9@byu.net>
23909
23910         * modules/filenamecat-tests (Makefile.am): Link against -lintl.
23911
23912 2007-10-18  Bruno Haible  <bruno@clisp.org>
23913
23914         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_N, gl_SNPRINTF_DIRECTIVE_N): Put
23915         the format string into writable memory. Needed in Fortify conditions.
23916
23917 2007-10-18  Colin Watson <cjwatson@debian.org>  (tiny change)
23918             Bruno Haible  <bruno@clisp.org>
23919
23920         * lib/trim.c: Include config.h unconditionally. Include trim.h always.
23921         Include ctype.h always. Include stdlib.h, not mbuiter.h, for MB_CUR_MAX.
23922         * modules/trim (Depends-on): Add mbchar.
23923         (configure.ac): Add gl_FUNC_MBRTOWC.
23924         (Makefile.am): Augment lib_SOURCES.
23925
23926 2007-10-17  Paul Eggert  <eggert@cs.ucla.edu>
23927
23928         Modify glob.c to use fstatat and dirfd, to simplify it.
23929         Suggested by Eric Blake.
23930         * lib/glob.c (__fxstatat64) [!_LIBC]: New macro.
23931         Don't include <stdbool.h>; not used.
23932         (link_exists2_p, glob_in_dir) [!_LIBC]: No longer a special case.
23933         (link_exists_p): Simplify implementation, since we can now assume
23934         dirfd and fstatat.
23935         * modules/glob (Depends-on): Add dirfd, openat.  Remove stdbool.
23936
23937 2007-10-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23938
23939         * gnulib-tool (func_get_dependencies): Fix sed script to
23940         match only tests.
23941
23942 2007-10-17  Bruno Haible  <bruno@clisp.org>
23943
23944         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): On Cygwin, don't
23945         allow locale names without encoding suffix.
23946         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
23947         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
23948
23949 2007-10-16  Bruno Haible  <bruno@clisp.org>
23950
23951         * lib/getcwd.c (__getcwd): Define with explicit rpl_ prefix.
23952         * lib/getgroups.c (getgroups): Likewise.
23953         * lib/gettimeofday.c (localtime, gmtime, tzset): Likewise.
23954
23955 2007-10-16  Bruno Haible  <bruno@clisp.org>
23956
23957         * modules/absolute-header (License): Change from LGPL to LGPLv2+.
23958         * modules/malloc-posix (License): Likewise.
23959         * modules/realloc-posix (License): Likewise.
23960         * modules/calloc-posix (License): Likewise.
23961         * modules/intprops (License): Change from GPL to LGPL, with
23962         Paul Eggert's approval.
23963
23964 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
23965
23966         Merge glibc changes into lib/glob.c.
23967
23968         * lib/glob.c (glob_in_dir): Sync with glibc/posix/glob.c, dated
23969         2007-10-15 04:59:03 UTC.  Here are the changes:
23970
23971         2007-10-14  Ulrich Drepper  <drepper@redhat.com>
23972
23973         * lib/glob.c: Reimplement link_exists_p to use fstatat64.
23974
23975         * lib/glob.c: Add some branch prediction throughout.
23976
23977         2007-10-07  Ulrich Drepper  <drepper@redhat.com>
23978
23979         [BZ #5103]
23980         * lib/glob.c (glob): Recognize patterns starting \/.
23981
23982         2007-02-14  Jakub Jelinek  <jakub@redhat.com>
23983
23984         [BZ #3996]
23985         * lib/glob.c (attribute_hidden): Define if not defined.
23986         (glob): Unescape dirname, filename or username when needed and not
23987         GLOB_NOESCAPE.  Handle \/ correctly.  Handle GLOB_MARK if filename
23988         is NULL.  Handle unescaped [ in pattern without closing ].
23989         Don't pass GLOB_CHECK down to recursive glob for directories.
23990         (__glob_pattern_type): New function.
23991         (__glob_pattern_p): Implement using __glob_pattern_type.
23992         (glob_in_dir): Handle GLOB_NOCHECK patterns containing no meta
23993         characters and backslashes if not GLOB_NOESCAPE or unterminated [.
23994         Remove unreachable code.
23995
23996         2006-09-30  Ulrich Drepper  <drepper@redhat.com>
23997
23998         * lib/glob.c (glob_in_dir): Add some comments and asserts to
23999         explain why there are no leaks.
24000
24001         2006-09-25  Jakub Jelinek  <jakub@redhat.com>
24002
24003         [BZ #3253]
24004         * lib/glob.c (glob_in_dir): Don't alloca one struct globlink at a
24005         time, rather allocate increasingly bigger arrays of pointers, if
24006         possible with alloca, if too large with malloc.
24007
24008 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
24009
24010         Check for 64-bit int errors in HP-UX 10.20 preprocessor.
24011         Problem reported by H.Merijn Brand in
24012         <http://lists.gnu.org/archive/html/bug-tar/2007-10/msg00018.html>.
24013         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Check preprocessor too.
24014         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
24015
24016 2007-10-15  Bruno Haible  <bruno@clisp.org>
24017
24018         * lib/fchdir.c (close, open, closedir, opendir, dup, dup2): Define
24019         with explicit rpl_ prefix.
24020         * lib/fopen.c (fopen): Likewise.
24021         * lib/freopen.c (freopen): Likewise.
24022         * lib/iconv.c (iconv): Likewise.
24023         * lib/iconv_close.c (iconv_close): Likewise.
24024
24025 2007-10-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
24026
24027         * m4/iconv_open (gl_FUNC_ICONV_OPEN_UTF): Fix cache variable name.
24028
24029 2007-10-15  Bruno Haible  <bruno@clisp.org>
24030
24031         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Use
24032         <stddef.h> instead of <stdlib.h> since we only need NULL.
24033         Reported by Ben Pfaff <blp@cs.stanford.edu>.
24034
24035 2007-10-15  Bruno Haible  <bruno@clisp.org>
24036
24037         * doc/gnulib-tool.texi (Initial import): Swap order of -I directives.
24038         Replace paragraph talking about LIBOBJS.
24039         Reported by Colin Watson <cjwatson@debian.org>.
24040
24041 2007-10-15  Bruno Haible  <bruno@clisp.org>
24042
24043         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Include
24044         <stdlib.h> before using NULL.
24045
24046 2007-10-15  Simon Josefsson  <simon@josefsson.org>
24047
24048         * m4/getaddrinfo.m4: Use NULL rather than 0 for pointers.
24049         Reported by Albert Chin <china@thewrittenword.com>.
24050
24051 2007-10-14  Bruno Haible  <bruno@clisp.org>
24052
24053         * modules/iconv_open-utf-tests: New file.
24054         * tests/test-iconv-utf.c: New file.
24055
24056         Enhance iconv_open to support UTF-16BE, UTF-16LE, UTF-32BE, UTF-32LE.
24057         * modules/iconv_open-utf: New file.
24058         * lib/iconv.in.h (_ICONV_UTF8_UTF*, _ICONV_UTF*_UTF8): New macros.
24059         (iconv, iconv_close): New declarations.
24060         * lib/iconv_open.c: Include c-strcase.h. Don't require ICONV_FLAVOR to
24061         be defined.
24062         (iconv_open): Add special handling of conversion between UTF-8 and
24063         UTF-{16,32}{BE,LE}.
24064         * lib/iconv.c: New file, incorporating code from GNU libiconv 1.11.
24065         * lib/iconv_close.c: New file.
24066         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): New macro, extracted from
24067         gl_FUNC_ICONV_OPEN.
24068         (gl_FUNC_ICONV_OPEN): Use it.
24069         (gl_FUNC_ICONV_OPEN_UTF): New macro.
24070         * m4/iconv_h.m4 (gl_ICONV_H_DEFAULTS): Initialize also REPLACE_ICONV
24071         and REPLACE_ICONV_UTF.
24072         * modules/iconv_open (Depends-on): Add c-strcase.
24073         (Makefile.am): Substitute also REPLACE_ICONV, REPLACE_ICONV_UTF,
24074         ICONV_CONST.
24075         * doc/functions/iconv_open.texi: Mention the iconv_open-utf module.
24076
24077 2007-10-13  Albert Chin  <china@thewrittenword.com>
24078             Bruno Haible  <bruno@clisp.org>
24079
24080         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Perform the test for getaddrinfo
24081         through a link check that includes <netdb.h>. Needed for OSF/1 5.1.
24082
24083 2007-10-13  Bruno Haible  <bruno@clisp.org>
24084
24085         * lib/argp-fmtstream.h (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is
24086         defined, use the ISO C99 inline semantics.
24087         * lib/argp.h (ARGP_EI): Likewise.
24088
24089 2007-10-13  Bruno Haible  <bruno@clisp.org>
24090
24091         Handle 'inline' change in gcc 4.3.0.
24092         * lib/argp-fmtstream.h (argp_fmtstream_putc, argp_fmtstream_puts,
24093         argp_fmtstream_write, argp_fmtstream_set_lmargin,
24094         argp_fmtstream_set_rmargin, argp_fmtstream_set_wmargin,
24095         argp_fmtstream_point): Disable 'extern' declaration if the function
24096         definition is going to be provided inline.
24097         (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is defined, use the GNU C inline
24098         semantics, not the ISO C99 inline semantics.
24099         * lib/argp.h (argp_usage, _option_is_short, _option_is_end): Disable
24100         'extern' declaration if the function definition is going to be provided
24101         inline.
24102         (ARGP_EI): Don't assume GNU C. If __GNUC_STDC_INLINE__ is defined, use
24103         the GNU C inline semantics, not the ISO C99 inline semantics. With
24104         GCC 4.2, avoid a warning.
24105
24106 2007-10-13  Bruno Haible  <bruno@clisp.org>
24107
24108         * lib/freading.h (freading): Enable the use of __freading for
24109         glibc >= 2.7.
24110         * lib/freading.c (freading): Likewise.
24111
24112 2007-10-12  Paul Eggert  <eggert@cs.ucla.edu>
24113
24114         * lib/argp-fmtstream.h (ARGP_FS_EI): Work around GCC 4.2.1 diagnostic
24115         "warning: C99 inline functions are not supported; using GNU89".
24116
24117 2007-10-12  Bruno Haible  <bruno@clisp.org>
24118
24119         * lib/ceil.c (FUNC): Avoid rounding errors for values near a power
24120         of 2.
24121         * tests/test-ceilf2.c: New file.
24122         * modules/ceilf-tests: (Files, Depends-on, Makefile.am): Add new test.
24123
24124         * tests/test-ceilf1.c: Renamed from tests/test-ceilf.c.
24125         * modules/ceilf-tests: Update.
24126
24127 2007-10-12  Bruno Haible  <bruno@clisp.org>
24128
24129         * lib/floor.c (FUNC): Avoid rounding errors for values near a power
24130         of 2.
24131         * tests/test-floorf2.c: New file.
24132         * modules/floorf-tests: (Files, Depends-on, Makefile.am): Add new test.
24133
24134         * tests/test-floorf1.c: Renamed from tests/test-floorf.c.
24135         * modules/floorf-tests: Update.
24136
24137 2007-10-12  Bruno Haible  <bruno@clisp.org>
24138
24139         * tests/test-trunc2.c: New file.
24140         * modules/trunc-tests: (Files, Depends-on, Makefile.am): Add new test.
24141
24142         * tests/test-trunc1.c: Renamed from tests/test-trunc.c.
24143         * modules/trunc-tests: Update.
24144
24145 2007-10-12  Bruno Haible  <bruno@clisp.org>
24146
24147         * lib/trunc.c (FUNC): Avoid rounding errors for values near a power
24148         of 2.
24149         * tests/test-truncf2.c: New file.
24150         * modules/truncf-tests: (Files, Depends-on, Makefile.am): Add new test.
24151
24152         * tests/test-truncf1.c: Renamed from tests/test-truncf.c.
24153         * modules/truncf-tests: Update.
24154
24155 2007-10-11  Eric Blake  <ebb9@byu.net>
24156
24157         Don't claim strerror is broken on Interix.
24158         * doc/functions/strerror.texi (strerror): Known broken systems are
24159         now Solaris 8, and not Interix.
24160         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): No longer filter out
24161         Interix on cross-compile.
24162         Reported by Martin Koeppe in
24163         http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00005.html.
24164
24165 2007-10-11  Bruno Haible  <bruno@clisp.org>
24166
24167         * modules/i-ring-tests: New file.
24168         * tests/test-i-ring.c: Renamed from lib/i-ring-test.c. Use ASSERT
24169         instead of assert.
24170
24171 2007-10-11  Bruno Haible  <bruno@clisp.org>
24172
24173         * modules/filenamecat-tests: New file.
24174         * tests/test-filenamecat.c: New file, extracted from lib/filenamecat.c.
24175         * lib/filenamecat.c: Remove test code.
24176
24177 2007-10-11  Paul Eggert  <eggert@cs.ucla.edu>
24178
24179         Simplify and modernize strerror substitute, partly to fix Solaris 8 bug.
24180
24181         * lib/strerror.c: Include <string.h> always, to test interface,
24182         and to remove the need for the dummy.
24183         Include intprops.h to compute width instead of doing it ourselves
24184         and missing a CHAR_BIT declaration, which broke tar 1.19 on Solaris 8.
24185         (strerror): Define it to return NULL if there's no system strerror.
24186         (rpl_strerror): Use INT_STRLEN_BOUND to compute bound.
24187         Omit !HAVE_STRERROR code.  We don't need to worry about supporting
24188         ancient pre-strerror Unix systems well any more.  Saying "unknown
24189         system error" is enough.
24190         * lib/string.in.h (strerror): Simplify the ifdef to reflect the
24191         simpler strerror.c implementation.
24192         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE, gl_PREREQ_STDERROR):
24193         Simplify the tests to reflect the simpler strerror implementation.
24194         * modules/strerror (Depends-on): Add intprops.
24195
24196 2007-10-09  Eric Blake  <ebb9@byu.net>
24197
24198         Silence test-fpending.
24199         * modules/fpending-tests (Files): Add wrapper script.
24200         * tests/test-fpending.sh: New file.
24201
24202 2007-10-09  Bruno Haible  <bruno@clisp.org>
24203
24204         * MODULES.html.sh (func_module): Don't create a hyperlink for
24205         function names like 'printf_frexp'.
24206         (Misc): Add crc, memxor.
24207         (Characteristics of floating types): New section.
24208         (Mathematics): Add ceilf, ceill, floorf, floorl, frexpl-nolibm,
24209         isnanf-nolibm, signbit, trunc, truncf, truncl.
24210         (Enhancements for ISO C 99 functions): New subsection Input/output.
24211         (Support for systems lacking POSIX:2001): Add arpa_inet, calloc-posix,
24212         fcntl, fopen, freopen, fseek, fseeko, ftell, ftello, iconv_open,
24213         locale, malloc-posix, netinet_in, open, realloc-posix, signal, sleep.
24214         (Compatibility checks for POSIX:2001 functions): Add clock-time.
24215         (Enhancements for POSIX:2001 functions): Add chdir-long.
24216         (File system functions): Add areadlink, chdir-safer, read-file.
24217         Remove cycle-check.
24218         (File system as inode set): New section.
24219         (Date and time): Add gethrxtime.
24220         (Multithreading): Add openmp.
24221         (Internationalization functions): Add localename.
24222         (Unicode string functions): Add unistr/u*-mbsnlen.
24223         (Support for maintaining and releasing projects): Add git-version-gen.
24224         (Lone files): Remove directories.
24225
24226 2007-10-08  Ben Pfaff  <blp@gnu.org>
24227
24228         * lib/xmalloca.h: Fix typo in comment.
24229
24230 2007-10-08  Paul Eggert  <eggert@cs.ucla.edu>
24231
24232         * lib/xnanosleep.c (xnanosleep): Don't assume GCC 4.3.0 behavior
24233         when avoiding problems with integer overflow.  Use a portable test
24234         instead.
24235
24236 2007-10-08  Simon Josefsson  <simon@josefsson.org>
24237
24238         * modules/dummy (License): Change to LGPLv2+.
24239         * modules/float (License): Likewise
24240         * modules/realloc (License): Likewise
24241         * modules/stdlib (License): Likewise
24242
24243 2007-10-07  Bruno Haible  <bruno@clisp.org>
24244
24245         * trunc.c (TWO_MANT_DIG): Change type to DOUBLE.
24246         * floor.c (TWO_MANT_DIG): Likewise.
24247         * ceil.c (TWO_MANT_DIG): Likewise.
24248         Reported by Ben Pfaff.
24249
24250 2007-10-07  Bruno Haible  <bruno@clisp.org>
24251
24252         Avoid gcc warnings "declaration of 'exp' shadows a global declaration".
24253         * lib/math.in.h (frexp, frexpl): Change parameter name to 'expptr'.
24254         * lib/frexp.c (FUNC): Likewise.
24255         * lib/printf-frexp.h (printf_frexp): Likewise.
24256         * lib/printf-frexpl.h (printf_frexpl): Likewise.
24257         * lib/printf-frexp.c (FUNC): Likewise.
24258         Suggested by Jim Meyering.
24259
24260 2007-10-07  Jim Meyering  <meyering@redhat.com>
24261
24262         Make xnanosleep's integer overflow test more robust.
24263         * lib/xnanosleep.c (xnanosleep): Declare a temporary to be "volatile",
24264         so that gcc-4.3.0 doesn't optimize away this test for overflow.
24265
24266 2007-10-07  Bruno Haible  <bruno@clisp.org>
24267
24268         * NEWS: Mention the license change.
24269
24270         * doc/gnulib-intro.texi (Copyright): Update the meaning of the license
24271         abbreviations in the modules files.
24272
24273         Change copyright notice from GPLv2+ to GPLv3+.
24274         * README: Change copyright notice.
24275         * MODULES.html.sh: Likewise.
24276         * build-aux/bootstrap.conf: Likewise.
24277         * build-aux/config.libpath: Likewise.
24278         * build-aux/csharpcomp.sh.in: Likewise.
24279         * build-aux/csharpexec.sh.in: Likewise.
24280         * build-aux/install-reloc: Likewise.
24281         * build-aux/javacomp.sh.in: Likewise.
24282         * build-aux/javaexec.sh.in: Likewise.
24283         * build-aux/ldd.sh.in: Likewise.
24284         * build-aux/reloc-ldflags: Likewise.
24285         * build-aux/relocatable.sh.in: Likewise.
24286         * build-aux/x-to-1.in: Likewise.
24287         * check-module: Likewise.
24288         * config/srclistvars.sh: Likewise.
24289         * gnulib-tool: Likewise.
24290         * lib/acl-internal.h: Likewise.
24291         * lib/acl.c: Likewise.
24292         * lib/acl.h: Likewise.
24293         * lib/acl_entries.c: Likewise.
24294         * lib/areadlink-with-size.c: Likewise.
24295         * lib/areadlink.c: Likewise.
24296         * lib/areadlink.h: Likewise.
24297         * lib/argmatch.c: Likewise.
24298         * lib/argmatch.h: Likewise.
24299         * lib/argp-ba.c: Likewise.
24300         * lib/argp-eexst.c: Likewise.
24301         * lib/argp-fmtstream.c: Likewise.
24302         * lib/argp-fmtstream.h: Likewise.
24303         * lib/argp-fs-xinl.c: Likewise.
24304         * lib/argp-help.c: Likewise.
24305         * lib/argp-namefrob.h: Likewise.
24306         * lib/argp-parse.c: Likewise.
24307         * lib/argp-pin.c: Likewise.
24308         * lib/argp-pv.c: Likewise.
24309         * lib/argp-pvh.c: Likewise.
24310         * lib/argp-xinl.c: Likewise.
24311         * lib/argp.h: Likewise.
24312         * lib/at-func.c: Likewise.
24313         * lib/atanl.c: Likewise.
24314         * lib/backupfile.c: Likewise.
24315         * lib/backupfile.h: Likewise.
24316         * lib/basename.c: Likewise.
24317         * lib/binary-io.h: Likewise.
24318         * lib/byteswap.in.h: Likewise.
24319         * lib/c-stack.c: Likewise.
24320         * lib/c-stack.h: Likewise.
24321         * lib/c-strcasestr.c: Likewise.
24322         * lib/c-strcasestr.h: Likewise.
24323         * lib/c-strstr.c: Likewise.
24324         * lib/c-strstr.h: Likewise.
24325         * lib/c-strtod.c: Likewise.
24326         * lib/calloc.c: Likewise.
24327         * lib/canon-host.c: Likewise.
24328         * lib/canon-host.h: Likewise.
24329         * lib/canonicalize-lgpl.c: Likewise.
24330         * lib/canonicalize.c: Likewise.
24331         * lib/canonicalize.h: Likewise.
24332         * lib/ceil.c: Likewise.
24333         * lib/ceilf.c: Likewise.
24334         * lib/ceill.c: Likewise.
24335         * lib/chdir-long.c: Likewise.
24336         * lib/chdir-long.h: Likewise.
24337         * lib/chdir-safer.c: Likewise.
24338         * lib/chdir-safer.h: Likewise.
24339         * lib/chown.c: Likewise.
24340         * lib/classpath.c: Likewise.
24341         * lib/classpath.h: Likewise.
24342         * lib/clean-temp.c: Likewise.
24343         * lib/clean-temp.h: Likewise.
24344         * lib/cloexec.c: Likewise.
24345         * lib/close-stream.c: Likewise.
24346         * lib/closein.c: Likewise.
24347         * lib/closein.h: Likewise.
24348         * lib/closeout.c: Likewise.
24349         * lib/closeout.h: Likewise.
24350         * lib/concat-filename.c: Likewise.
24351         * lib/copy-file.c: Likewise.
24352         * lib/copy-file.h: Likewise.
24353         * lib/count-one-bits.h: Likewise.
24354         * lib/crc.c: Likewise.
24355         * lib/crc.h: Likewise.
24356         * lib/creat-safer.c: Likewise.
24357         * lib/csharpcomp.c: Likewise.
24358         * lib/csharpcomp.h: Likewise.
24359         * lib/csharpexec.c: Likewise.
24360         * lib/csharpexec.h: Likewise.
24361         * lib/cycle-check.c: Likewise.
24362         * lib/cycle-check.h: Likewise.
24363         * lib/diacrit.c: Likewise.
24364         * lib/diacrit.h: Likewise.
24365         * lib/diffseq.h: Likewise.
24366         * lib/dirchownmod.c: Likewise.
24367         * lib/dirent.in.h: Likewise.
24368         * lib/dirfd.c: Likewise.
24369         * lib/dirfd.h: Likewise.
24370         * lib/dirname.c: Likewise.
24371         * lib/dirname.h: Likewise.
24372         * lib/dummy.c: Likewise.
24373         * lib/dup-safer.c: Likewise.
24374         * lib/dup2.c: Likewise.
24375         * lib/eealloc.h: Likewise.
24376         * lib/error.c: Likewise.
24377         * lib/error.h: Likewise.
24378         * lib/euidaccess.c: Likewise.
24379         * lib/exclude.c: Likewise.
24380         * lib/exclude.h: Likewise.
24381         * lib/execute.c: Likewise.
24382         * lib/execute.h: Likewise.
24383         * lib/exitfail.c: Likewise.
24384         * lib/exitfail.h: Likewise.
24385         * lib/expl.c: Likewise.
24386         * lib/fatal-signal.c: Likewise.
24387         * lib/fatal-signal.h: Likewise.
24388         * lib/fbufmode.c: Likewise.
24389         * lib/fbufmode.h: Likewise.
24390         * lib/fchdir.c: Likewise.
24391         * lib/fchmodat.c: Likewise.
24392         * lib/fchownat.c: Likewise.
24393         * lib/fcntl--.h: Likewise.
24394         * lib/fcntl-safer.h: Likewise.
24395         * lib/fcntl.in.h: Likewise.
24396         * lib/fd-safer.c: Likewise.
24397         * lib/fflush.c: Likewise.
24398         * lib/file-has-acl.c: Likewise.
24399         * lib/file-set.c: Likewise.
24400         * lib/file-type.c: Likewise.
24401         * lib/file-type.h: Likewise.
24402         * lib/fileblocks.c: Likewise.
24403         * lib/filemode.c: Likewise.
24404         * lib/filemode.h: Likewise.
24405         * lib/filename.h: Likewise.
24406         * lib/filenamecat.c: Likewise.
24407         * lib/filenamecat.h: Likewise.
24408         * lib/findprog.c: Likewise.
24409         * lib/findprog.h: Likewise.
24410         * lib/float.in.h: Likewise.
24411         * lib/floor.c: Likewise.
24412         * lib/floorf.c: Likewise.
24413         * lib/floorl.c: Likewise.
24414         * lib/fopen-safer.c: Likewise.
24415         * lib/fopen.c: Likewise.
24416         * lib/fpending.c: Likewise.
24417         * lib/fpending.h: Likewise.
24418         * lib/fprintf.c: Likewise.
24419         * lib/fprintftime.h: Likewise.
24420         * lib/fpucw.h: Likewise.
24421         * lib/fpurge.c: Likewise.
24422         * lib/fpurge.h: Likewise.
24423         * lib/freadable.c: Likewise.
24424         * lib/freadable.h: Likewise.
24425         * lib/freadahead.c: Likewise.
24426         * lib/freadahead.h: Likewise.
24427         * lib/freading.c: Likewise.
24428         * lib/freading.h: Likewise.
24429         * lib/free.c: Likewise.
24430         * lib/freopen.c: Likewise.
24431         * lib/frexp.c: Likewise.
24432         * lib/frexpl.c: Likewise.
24433         * lib/fseek.c: Likewise.
24434         * lib/fseterr.c: Likewise.
24435         * lib/fseterr.h: Likewise.
24436         * lib/fstatat.c: Likewise.
24437         * lib/fstrcmp.c: Likewise.
24438         * lib/fstrcmp.h: Likewise.
24439         * lib/fsusage.c: Likewise.
24440         * lib/fsusage.h: Likewise.
24441         * lib/ftell.c: Likewise.
24442         * lib/ftello.c: Likewise.
24443         * lib/fts-cycle.c: Likewise.
24444         * lib/fts.c: Likewise.
24445         * lib/fts_.h: Likewise.
24446         * lib/full-read.c: Likewise.
24447         * lib/full-read.h: Likewise.
24448         * lib/full-write.c: Likewise.
24449         * lib/full-write.h: Likewise.
24450         * lib/fwritable.c: Likewise.
24451         * lib/fwritable.h: Likewise.
24452         * lib/fwriteerror.c: Likewise.
24453         * lib/fwriteerror.h: Likewise.
24454         * lib/fwriting.c: Likewise.
24455         * lib/fwriting.h: Likewise.
24456         * lib/gcd.c: Likewise.
24457         * lib/gcd.h: Likewise.
24458         * lib/getcwd.c: Likewise.
24459         * lib/getdate.h: Likewise.
24460         * lib/getdate.y: Likewise.
24461         * lib/getdomainname.c: Likewise.
24462         * lib/getdomainname.h: Likewise.
24463         * lib/getgroups.c: Likewise.
24464         * lib/gethostname.c: Likewise.
24465         * lib/gethrxtime.c: Likewise.
24466         * lib/gethrxtime.h: Likewise.
24467         * lib/getloadavg.c: Likewise.
24468         * lib/getndelim2.c: Likewise.
24469         * lib/getndelim2.h: Likewise.
24470         * lib/getnline.c: Likewise.
24471         * lib/getnline.h: Likewise.
24472         * lib/getopt.c: Likewise.
24473         * lib/getopt.in.h: Likewise.
24474         * lib/getopt1.c: Likewise.
24475         * lib/getopt_int.h: Likewise.
24476         * lib/getpagesize.h: Likewise.
24477         * lib/getsubopt.c: Likewise.
24478         * lib/gettime.c: Likewise.
24479         * lib/getugroups.c: Likewise.
24480         * lib/getugroups.h: Likewise.
24481         * lib/getusershell.c: Likewise.
24482         * lib/gl_anyavltree_list1.h: Likewise.
24483         * lib/gl_anyavltree_list2.h: Likewise.
24484         * lib/gl_anyhash_list1.h: Likewise.
24485         * lib/gl_anyhash_list2.h: Likewise.
24486         * lib/gl_anylinked_list1.h: Likewise.
24487         * lib/gl_anylinked_list2.h: Likewise.
24488         * lib/gl_anyrbtree_list1.h: Likewise.
24489         * lib/gl_anyrbtree_list2.h: Likewise.
24490         * lib/gl_anytree_list1.h: Likewise.
24491         * lib/gl_anytree_list2.h: Likewise.
24492         * lib/gl_anytree_oset.h: Likewise.
24493         * lib/gl_anytreehash_list1.h: Likewise.
24494         * lib/gl_anytreehash_list2.h: Likewise.
24495         * lib/gl_array_list.c: Likewise.
24496         * lib/gl_array_list.h: Likewise.
24497         * lib/gl_array_oset.c: Likewise.
24498         * lib/gl_array_oset.h: Likewise.
24499         * lib/gl_avltree_list.c: Likewise.
24500         * lib/gl_avltree_list.h: Likewise.
24501         * lib/gl_avltree_oset.c: Likewise.
24502         * lib/gl_avltree_oset.h: Likewise.
24503         * lib/gl_avltreehash_list.c: Likewise.
24504         * lib/gl_avltreehash_list.h: Likewise.
24505         * lib/gl_carray_list.c: Likewise.
24506         * lib/gl_carray_list.h: Likewise.
24507         * lib/gl_linked_list.c: Likewise.
24508         * lib/gl_linked_list.h: Likewise.
24509         * lib/gl_linkedhash_list.c: Likewise.
24510         * lib/gl_linkedhash_list.h: Likewise.
24511         * lib/gl_list.c: Likewise.
24512         * lib/gl_list.h: Likewise.
24513         * lib/gl_oset.c: Likewise.
24514         * lib/gl_oset.h: Likewise.
24515         * lib/gl_rbtree_list.c: Likewise.
24516         * lib/gl_rbtree_list.h: Likewise.
24517         * lib/gl_rbtree_oset.c: Likewise.
24518         * lib/gl_rbtree_oset.h: Likewise.
24519         * lib/gl_rbtreehash_list.c: Likewise.
24520         * lib/gl_rbtreehash_list.h: Likewise.
24521         * lib/gl_sublist.c: Likewise.
24522         * lib/gl_sublist.h: Likewise.
24523         * lib/group-member.c: Likewise.
24524         * lib/group-member.h: Likewise.
24525         * lib/hard-locale.c: Likewise.
24526         * lib/hard-locale.h: Likewise.
24527         * lib/hash-pjw.c: Likewise.
24528         * lib/hash-pjw.h: Likewise.
24529         * lib/hash-triple.c: Likewise.
24530         * lib/hash.c: Likewise.
24531         * lib/hash.h: Likewise.
24532         * lib/human.c: Likewise.
24533         * lib/human.h: Likewise.
24534         * lib/i-ring.c: Likewise.
24535         * lib/i-ring.h: Likewise.
24536         * lib/idcache.c: Likewise.
24537         * lib/imaxabs.c: Likewise.
24538         * lib/imaxdiv.c: Likewise.
24539         * lib/inet_pton.c: Likewise.
24540         * lib/inet_pton.h: Likewise.
24541         * lib/intprops.h: Likewise.
24542         * lib/inttostr.c: Likewise.
24543         * lib/inttostr.h: Likewise.
24544         * lib/inttypes.in.h: Likewise.
24545         * lib/isapipe.c: Likewise.
24546         * lib/isdir.c: Likewise.
24547         * lib/isnan.c: Likewise.
24548         * lib/isnan.h: Likewise.
24549         * lib/isnanf.c: Likewise.
24550         * lib/isnanf.h: Likewise.
24551         * lib/isnanl-nolibm.h: Likewise.
24552         * lib/isnanl.c: Likewise.
24553         * lib/isnanl.h: Likewise.
24554         * lib/javacomp.c: Likewise.
24555         * lib/javacomp.h: Likewise.
24556         * lib/javaexec.c: Likewise.
24557         * lib/javaexec.h: Likewise.
24558         * lib/javaversion.c: Likewise.
24559         * lib/javaversion.h: Likewise.
24560         * lib/javaversion.java: Likewise.
24561         * lib/lbrkprop.h: Likewise.
24562         * lib/lchmod.h: Likewise.
24563         * lib/lchown.c: Likewise.
24564         * lib/ldexpl.c: Likewise.
24565         * lib/linebreak.c: Likewise.
24566         * lib/linebreak.h: Likewise.
24567         * lib/linebuffer.c: Likewise.
24568         * lib/linebuffer.h: Likewise.
24569         * lib/locale.in.h: Likewise.
24570         * lib/logl.c: Likewise.
24571         * lib/long-options.c: Likewise.
24572         * lib/long-options.h: Likewise.
24573         * lib/lstat.c: Likewise.
24574         * lib/lstat.h: Likewise.
24575         * lib/math.in.h: Likewise.
24576         * lib/mbchar.c: Likewise.
24577         * lib/mbchar.h: Likewise.
24578         * lib/mbfile.h: Likewise.
24579         * lib/mbiter.h: Likewise.
24580         * lib/mbscasecmp.c: Likewise.
24581         * lib/mbscasestr.c: Likewise.
24582         * lib/mbschr.c: Likewise.
24583         * lib/mbscspn.c: Likewise.
24584         * lib/mbslen.c: Likewise.
24585         * lib/mbsncasecmp.c: Likewise.
24586         * lib/mbsnlen.c: Likewise.
24587         * lib/mbspbrk.c: Likewise.
24588         * lib/mbspcasecmp.c: Likewise.
24589         * lib/mbsrchr.c: Likewise.
24590         * lib/mbssep.c: Likewise.
24591         * lib/mbsspn.c: Likewise.
24592         * lib/mbsstr.c: Likewise.
24593         * lib/mbstok_r.c: Likewise.
24594         * lib/mbswidth.c: Likewise.
24595         * lib/mbswidth.h: Likewise.
24596         * lib/mbuiter.h: Likewise.
24597         * lib/memcasecmp.c: Likewise.
24598         * lib/memcasecmp.h: Likewise.
24599         * lib/memchr.c: Likewise.
24600         * lib/memcmp.c: Likewise.
24601         * lib/memcoll.c: Likewise.
24602         * lib/memcoll.h: Likewise.
24603         * lib/memcpy.c: Likewise.
24604         * lib/memrchr.c: Likewise.
24605         * lib/mkancesdirs.c: Likewise.
24606         * lib/mkdir-p.c: Likewise.
24607         * lib/mkdir-p.h: Likewise.
24608         * lib/mkdir.c: Likewise.
24609         * lib/mkdirat.c: Likewise.
24610         * lib/mkdtemp.c: Likewise.
24611         * lib/mkstemp-safer.c: Likewise.
24612         * lib/mkstemp.c: Likewise.
24613         * lib/modechange.c: Likewise.
24614         * lib/modechange.h: Likewise.
24615         * lib/mountlist.c: Likewise.
24616         * lib/mountlist.h: Likewise.
24617         * lib/mpsort.c: Likewise.
24618         * lib/nanosleep.c: Likewise.
24619         * lib/obstack.c: Likewise.
24620         * lib/obstack.h: Likewise.
24621         * lib/open-safer.c: Likewise.
24622         * lib/open.c: Likewise.
24623         * lib/openat-die.c: Likewise.
24624         * lib/openat-priv.h: Likewise.
24625         * lib/openat-proc.c: Likewise.
24626         * lib/openat.c: Likewise.
24627         * lib/openat.h: Likewise.
24628         * lib/pagealign_alloc.c: Likewise.
24629         * lib/pagealign_alloc.h: Likewise.
24630         * lib/physmem.c: Likewise.
24631         * lib/physmem.h: Likewise.
24632         * lib/pipe-safer.c: Likewise.
24633         * lib/pipe.c: Likewise.
24634         * lib/pipe.h: Likewise.
24635         * lib/posixtm.c: Likewise.
24636         * lib/posixtm.h: Likewise.
24637         * lib/posixver.c: Likewise.
24638         * lib/printf-frexp.c: Likewise.
24639         * lib/printf-frexp.h: Likewise.
24640         * lib/printf-frexpl.c: Likewise.
24641         * lib/printf-frexpl.h: Likewise.
24642         * lib/printf.c: Likewise.
24643         * lib/progname.c: Likewise.
24644         * lib/progname.h: Likewise.
24645         * lib/progreloc.c: Likewise.
24646         * lib/putenv.c: Likewise.
24647         * lib/quote.c: Likewise.
24648         * lib/quote.h: Likewise.
24649         * lib/quotearg.c: Likewise.
24650         * lib/quotearg.h: Likewise.
24651         * lib/raise.c: Likewise.
24652         * lib/readline.c: Likewise.
24653         * lib/readline.h: Likewise.
24654         * lib/readlink.c: Likewise.
24655         * lib/readtokens.c: Likewise.
24656         * lib/readtokens.h: Likewise.
24657         * lib/readtokens0.c: Likewise.
24658         * lib/readtokens0.h: Likewise.
24659         * lib/readutmp.c: Likewise.
24660         * lib/readutmp.h: Likewise.
24661         * lib/realloc.c: Likewise.
24662         * lib/relocwrapper.c: Likewise.
24663         * lib/rename-dest-slash.c: Likewise.
24664         * lib/rename.c: Likewise.
24665         * lib/rmdir.c: Likewise.
24666         * lib/rpmatch.c: Likewise.
24667         * lib/safe-read.c: Likewise.
24668         * lib/safe-read.h: Likewise.
24669         * lib/safe-write.c: Likewise.
24670         * lib/safe-write.h: Likewise.
24671         * lib/same-inode.h: Likewise.
24672         * lib/same.c: Likewise.
24673         * lib/same.h: Likewise.
24674         * lib/save-cwd.c: Likewise.
24675         * lib/save-cwd.h: Likewise.
24676         * lib/savedir.c: Likewise.
24677         * lib/savedir.h: Likewise.
24678         * lib/savewd.c: Likewise.
24679         * lib/savewd.h: Likewise.
24680         * lib/search.in.h: Likewise.
24681         * lib/setenv.c: Likewise.
24682         * lib/setenv.h: Likewise.
24683         * lib/settime.c: Likewise.
24684         * lib/sh-quote.c: Likewise.
24685         * lib/sh-quote.h: Likewise.
24686         * lib/sig2str.c: Likewise.
24687         * lib/sig2str.h: Likewise.
24688         * lib/signal.in.h: Likewise.
24689         * lib/signbitd.c: Likewise.
24690         * lib/signbitf.c: Likewise.
24691         * lib/signbitl.c: Likewise.
24692         * lib/sigprocmask.c: Likewise.
24693         * lib/sincosl.c: Likewise.
24694         * lib/sleep.c: Likewise.
24695         * lib/sprintf.c: Likewise.
24696         * lib/sqrtl.c: Likewise.
24697         * lib/stat-time.h: Likewise.
24698         * lib/stdio--.h: Likewise.
24699         * lib/stdio-safer.h: Likewise.
24700         * lib/stdlib--.h: Likewise.
24701         * lib/stdlib-safer.h: Likewise.
24702         * lib/stdlib.in.h: Likewise.
24703         * lib/stpcpy.c: Likewise.
24704         * lib/stpncpy.c: Likewise.
24705         * lib/strchrnul.c: Likewise.
24706         * lib/strcspn.c: Likewise.
24707         * lib/strerror.c: Likewise.
24708         * lib/strftime.c: Likewise.
24709         * lib/strftime.h: Likewise.
24710         * lib/striconveh.c: Likewise.
24711         * lib/striconveh.h: Likewise.
24712         * lib/striconveha.c: Likewise.
24713         * lib/striconveha.h: Likewise.
24714         * lib/stripslash.c: Likewise.
24715         * lib/strnlen1.c: Likewise.
24716         * lib/strnlen1.h: Likewise.
24717         * lib/strtod.c: Likewise.
24718         * lib/strtoimax.c: Likewise.
24719         * lib/strtok_r.c: Likewise.
24720         * lib/strtol.c: Likewise.
24721         * lib/strtoll.c: Likewise.
24722         * lib/strtoul.c: Likewise.
24723         * lib/strtoull.c: Likewise.
24724         * lib/sysexits.in.h: Likewise.
24725         * lib/tempname.c: Likewise.
24726         * lib/tempname.h: Likewise.
24727         * lib/timespec.h: Likewise.
24728         * lib/tls.c: Likewise.
24729         * lib/tls.h: Likewise.
24730         * lib/tmpdir.c: Likewise.
24731         * lib/tmpdir.h: Likewise.
24732         * lib/tmpfile-safer.c: Likewise.
24733         * lib/tmpfile.c: Likewise.
24734         * lib/trigl.c: Likewise.
24735         * lib/trigl.h: Likewise.
24736         * lib/trim.c: Likewise.
24737         * lib/trim.h: Likewise.
24738         * lib/trunc.c: Likewise.
24739         * lib/truncf.c: Likewise.
24740         * lib/truncl.c: Likewise.
24741         * lib/tsearch.c: Likewise.
24742         * lib/unicodeio.c: Likewise.
24743         * lib/unicodeio.h: Likewise.
24744         * lib/unistd--.h: Likewise.
24745         * lib/unistd-safer.h: Likewise.
24746         * lib/unistdio/ulc-fprintf.c: Likewise.
24747         * lib/unistdio/ulc-vfprintf.c: Likewise.
24748         * lib/unlinkdir.c: Likewise.
24749         * lib/unlinkdir.h: Likewise.
24750         * lib/unlocked-io.h: Likewise.
24751         * lib/unsetenv.c: Likewise.
24752         * lib/userspec.c: Likewise.
24753         * lib/utime.c: Likewise.
24754         * lib/utimecmp.c: Likewise.
24755         * lib/utimecmp.h: Likewise.
24756         * lib/utimens.c: Likewise.
24757         * lib/verify.h: Likewise.
24758         * lib/verror.c: Likewise.
24759         * lib/verror.h: Likewise.
24760         * lib/version-etc-fsf.c: Likewise.
24761         * lib/version-etc.c: Likewise.
24762         * lib/version-etc.h: Likewise.
24763         * lib/vfprintf.c: Likewise.
24764         * lib/vprintf.c: Likewise.
24765         * lib/vsprintf.c: Likewise.
24766         * lib/w32spawn.h: Likewise.
24767         * lib/wait-process.c: Likewise.
24768         * lib/wait-process.h: Likewise.
24769         * lib/wcwidth.c: Likewise.
24770         * lib/write-any-file.c: Likewise.
24771         * lib/xalloc-die.c: Likewise.
24772         * lib/xalloc.h: Likewise.
24773         * lib/xasprintf.c: Likewise.
24774         * lib/xgetcwd.c: Likewise.
24775         * lib/xgetcwd.h: Likewise.
24776         * lib/xgetdomainname.c: Likewise.
24777         * lib/xgetdomainname.h: Likewise.
24778         * lib/xgethostname.c: Likewise.
24779         * lib/xmalloc.c: Likewise.
24780         * lib/xmalloca.c: Likewise.
24781         * lib/xmalloca.h: Likewise.
24782         * lib/xmemcoll.c: Likewise.
24783         * lib/xnanosleep.c: Likewise.
24784         * lib/xreadlink.c: Likewise.
24785         * lib/xreadlink.h: Likewise.
24786         * lib/xsetenv.c: Likewise.
24787         * lib/xsetenv.h: Likewise.
24788         * lib/xstriconv.c: Likewise.
24789         * lib/xstriconv.h: Likewise.
24790         * lib/xstrndup.c: Likewise.
24791         * lib/xstrndup.h: Likewise.
24792         * lib/xstrtod.c: Likewise.
24793         * lib/xstrtod.h: Likewise.
24794         * lib/xstrtol-error.c: Likewise.
24795         * lib/xstrtol.c: Likewise.
24796         * lib/xstrtol.h: Likewise.
24797         * lib/xtime.h: Likewise.
24798         * lib/xvasprintf.c: Likewise.
24799         * lib/xvasprintf.h: Likewise.
24800         * lib/yesno.c: Likewise.
24801         * lib/yesno.h: Likewise.
24802         * posix-modules: Likewise.
24803         * tests/test-alloca-opt.c: Likewise.
24804         * tests/test-arcfour.c: Likewise.
24805         * tests/test-arctwo.c: Likewise.
24806         * tests/test-argmatch.c: Likewise.
24807         * tests/test-argp-2.sh: Likewise.
24808         * tests/test-argp.c: Likewise.
24809         * tests/test-arpa_inet.c: Likewise.
24810         * tests/test-array_list.c: Likewise.
24811         * tests/test-array_oset.c: Likewise.
24812         * tests/test-atexit.c: Likewise.
24813         * tests/test-avltree_list.c: Likewise.
24814         * tests/test-avltree_oset.c: Likewise.
24815         * tests/test-avltreehash_list.c: Likewise.
24816         * tests/test-base64.c: Likewise.
24817         * tests/test-binary-io.c: Likewise.
24818         * tests/test-byteswap.c: Likewise.
24819         * tests/test-c-ctype.c: Likewise.
24820         * tests/test-c-strcasecmp.c: Likewise.
24821         * tests/test-c-strcasestr.c: Likewise.
24822         * tests/test-c-strncasecmp.c: Likewise.
24823         * tests/test-c-strstr.c: Likewise.
24824         * tests/test-canonicalize-lgpl.c: Likewise.
24825         * tests/test-canonicalize.c: Likewise.
24826         * tests/test-carray_list.c: Likewise.
24827         * tests/test-ceilf.c: Likewise.
24828         * tests/test-ceill.c: Likewise.
24829         * tests/test-count-one-bits.c: Likewise.
24830         * tests/test-crc.c: Likewise.
24831         * tests/test-dirname.c: Likewise.
24832         * tests/test-fbufmode.c: Likewise.
24833         * tests/test-fcntl.c: Likewise.
24834         * tests/test-fflush.c: Likewise.
24835         * tests/test-floorf.c: Likewise.
24836         * tests/test-floorl.c: Likewise.
24837         * tests/test-fopen.c: Likewise.
24838         * tests/test-fprintf-posix.c: Likewise.
24839         * tests/test-fprintf-posix.h: Likewise.
24840         * tests/test-fpurge.c: Likewise.
24841         * tests/test-freadable.c: Likewise.
24842         * tests/test-freadahead.c: Likewise.
24843         * tests/test-freading.c: Likewise.
24844         * tests/test-freopen.c: Likewise.
24845         * tests/test-frexp.c: Likewise.
24846         * tests/test-frexpl.c: Likewise.
24847         * tests/test-fseek.c: Likewise.
24848         * tests/test-fseeko.c: Likewise.
24849         * tests/test-fseterr.c: Likewise.
24850         * tests/test-fstrcmp.c: Likewise.
24851         * tests/test-ftell.c: Likewise.
24852         * tests/test-ftello.c: Likewise.
24853         * tests/test-fwritable.c: Likewise.
24854         * tests/test-fwriting.c: Likewise.
24855         * tests/test-getaddrinfo.c: Likewise.
24856         * tests/test-getpass.c: Likewise.
24857         * tests/test-gettimeofday.c: Likewise.
24858         * tests/test-hmac-md5.c: Likewise.
24859         * tests/test-hmac-sha1.c: Likewise.
24860         * tests/test-iconv.c: Likewise.
24861         * tests/test-iconvme.c: Likewise.
24862         * tests/test-inttypes.c: Likewise.
24863         * tests/test-isnan.c: Likewise.
24864         * tests/test-isnanf.c: Likewise.
24865         * tests/test-isnanl-nolibm.c: Likewise.
24866         * tests/test-isnanl.c: Likewise.
24867         * tests/test-isnanl.h: Likewise.
24868         * tests/test-ldexpl.c: Likewise.
24869         * tests/test-linked_list.c: Likewise.
24870         * tests/test-linkedhash_list.c: Likewise.
24871         * tests/test-locale.c: Likewise.
24872         * tests/test-localename.c: Likewise.
24873         * tests/test-lock.c: Likewise.
24874         * tests/test-lseek.c: Likewise.
24875         * tests/test-malloca.c: Likewise.
24876         * tests/test-math.c: Likewise.
24877         * tests/test-mbscasecmp.c: Likewise.
24878         * tests/test-mbscasestr1.c: Likewise.
24879         * tests/test-mbscasestr2.c: Likewise.
24880         * tests/test-mbscasestr3.c: Likewise.
24881         * tests/test-mbscasestr4.c: Likewise.
24882         * tests/test-mbschr.c: Likewise.
24883         * tests/test-mbscspn.c: Likewise.
24884         * tests/test-mbsncasecmp.c: Likewise.
24885         * tests/test-mbspbrk.c: Likewise.
24886         * tests/test-mbspcasecmp.c: Likewise.
24887         * tests/test-mbsrchr.c: Likewise.
24888         * tests/test-mbsspn.c: Likewise.
24889         * tests/test-mbsstr1.c: Likewise.
24890         * tests/test-mbsstr2.c: Likewise.
24891         * tests/test-mbsstr3.c: Likewise.
24892         * tests/test-md5.c: Likewise.
24893         * tests/test-memmem.c: Likewise.
24894         * tests/test-netinet_in.c: Likewise.
24895         * tests/test-open.c: Likewise.
24896         * tests/test-printf-frexp.c: Likewise.
24897         * tests/test-printf-frexpl.c: Likewise.
24898         * tests/test-printf-posix.c: Likewise.
24899         * tests/test-printf-posix.h: Likewise.
24900         * tests/test-rbtree_list.c: Likewise.
24901         * tests/test-rbtree_oset.c: Likewise.
24902         * tests/test-rbtreehash_list.c: Likewise.
24903         * tests/test-read-file.c: Likewise.
24904         * tests/test-rijndael.c: Likewise.
24905         * tests/test-search.c: Likewise.
24906         * tests/test-signbit.c: Likewise.
24907         * tests/test-sleep.c: Likewise.
24908         * tests/test-snprintf-posix.c: Likewise.
24909         * tests/test-snprintf-posix.h: Likewise.
24910         * tests/test-snprintf.c: Likewise.
24911         * tests/test-sprintf-posix.c: Likewise.
24912         * tests/test-sprintf-posix.h: Likewise.
24913         * tests/test-stat-time.c: Likewise.
24914         * tests/test-stdbool.c: Likewise.
24915         * tests/test-stdint.c: Likewise.
24916         * tests/test-stdio.c: Likewise.
24917         * tests/test-stdlib.c: Likewise.
24918         * tests/test-stpncpy.c: Likewise.
24919         * tests/test-strcasestr.c: Likewise.
24920         * tests/test-striconv.c: Likewise.
24921         * tests/test-striconveh.c: Likewise.
24922         * tests/test-striconveha.c: Likewise.
24923         * tests/test-string.c: Likewise.
24924         * tests/test-sys_select.c: Likewise.
24925         * tests/test-sys_socket.c: Likewise.
24926         * tests/test-sys_stat.c: Likewise.
24927         * tests/test-sys_time.c: Likewise.
24928         * tests/test-sysexits.c: Likewise.
24929         * tests/test-time.c: Likewise.
24930         * tests/test-tls.c: Likewise.
24931         * tests/test-trunc.c: Likewise.
24932         * tests/test-truncf.c: Likewise.
24933         * tests/test-truncl.c: Likewise.
24934         * tests/test-unistd.c: Likewise.
24935         * tests/test-vasnprintf-posix.c: Likewise.
24936         * tests/test-vasnprintf-posix2.c: Likewise.
24937         * tests/test-vasnprintf.c: Likewise.
24938         * tests/test-vasprintf-posix.c: Likewise.
24939         * tests/test-vasprintf.c: Likewise.
24940         * tests/test-verify.c: Likewise.
24941         * tests/test-vfprintf-posix.c: Likewise.
24942         * tests/test-vprintf-posix.c: Likewise.
24943         * tests/test-vsnprintf-posix.c: Likewise.
24944         * tests/test-vsnprintf.c: Likewise.
24945         * tests/test-vsprintf-posix.c: Likewise.
24946         * tests/test-wchar.c: Likewise.
24947         * tests/test-wctype.c: Likewise.
24948         * tests/test-wcwidth.c: Likewise.
24949         * tests/test-xstrtol.c: Likewise.
24950         * tests/test-xvasprintf.c: Likewise.
24951         * tests/uniconv/test-u16-conv-from-enc.c: Likewise.
24952         * tests/uniconv/test-u16-conv-to-enc.c: Likewise.
24953         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
24954         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
24955         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
24956         * tests/uniconv/test-u32-conv-to-enc.c: Likewise.
24957         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
24958         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
24959         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
24960         * tests/uniconv/test-u8-conv-to-enc.c: Likewise.
24961         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
24962         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
24963         * tests/uniname/test-uninames.c: Likewise.
24964         * tests/unistdio/test-u16-asnprintf1.c: Likewise.
24965         * tests/unistdio/test-u16-asnprintf1.h: Likewise.
24966         * tests/unistdio/test-u16-printf1.h: Likewise.
24967         * tests/unistdio/test-u16-vasnprintf1.c: Likewise.
24968         * tests/unistdio/test-u16-vasnprintf2.c: Likewise.
24969         * tests/unistdio/test-u16-vasnprintf3.c: Likewise.
24970         * tests/unistdio/test-u16-vasprintf1.c: Likewise.
24971         * tests/unistdio/test-u16-vsnprintf1.c: Likewise.
24972         * tests/unistdio/test-u16-vsprintf1.c: Likewise.
24973         * tests/unistdio/test-u32-asnprintf1.c: Likewise.
24974         * tests/unistdio/test-u32-asnprintf1.h: Likewise.
24975         * tests/unistdio/test-u32-printf1.h: Likewise.
24976         * tests/unistdio/test-u32-vasnprintf1.c: Likewise.
24977         * tests/unistdio/test-u32-vasnprintf2.c: Likewise.
24978         * tests/unistdio/test-u32-vasnprintf3.c: Likewise.
24979         * tests/unistdio/test-u32-vasprintf1.c: Likewise.
24980         * tests/unistdio/test-u32-vsnprintf1.c: Likewise.
24981         * tests/unistdio/test-u32-vsprintf1.c: Likewise.
24982         * tests/unistdio/test-u8-asnprintf1.c: Likewise.
24983         * tests/unistdio/test-u8-asnprintf1.h: Likewise.
24984         * tests/unistdio/test-u8-printf1.h: Likewise.
24985         * tests/unistdio/test-u8-vasnprintf1.c: Likewise.
24986         * tests/unistdio/test-u8-vasnprintf2.c: Likewise.
24987         * tests/unistdio/test-u8-vasnprintf3.c: Likewise.
24988         * tests/unistdio/test-u8-vasprintf1.c: Likewise.
24989         * tests/unistdio/test-u8-vsnprintf1.c: Likewise.
24990         * tests/unistdio/test-u8-vsprintf1.c: Likewise.
24991         * tests/unistdio/test-ulc-asnprintf1.c: Likewise.
24992         * tests/unistdio/test-ulc-asnprintf1.h: Likewise.
24993         * tests/unistdio/test-ulc-printf1.h: Likewise.
24994         * tests/unistdio/test-ulc-vasnprintf1.c: Likewise.
24995         * tests/unistdio/test-ulc-vasnprintf2.c: Likewise.
24996         * tests/unistdio/test-ulc-vasnprintf3.c: Likewise.
24997         * tests/unistdio/test-ulc-vasprintf1.c: Likewise.
24998         * tests/unistdio/test-ulc-vsnprintf1.c: Likewise.
24999         * tests/unistdio/test-ulc-vsprintf1.c: Likewise.
25000         * tests/uniwidth/test-u16-strwidth.c: Likewise.
25001         * tests/uniwidth/test-u16-width.c: Likewise.
25002         * tests/uniwidth/test-u32-strwidth.c: Likewise.
25003         * tests/uniwidth/test-u32-width.c: Likewise.
25004         * tests/uniwidth/test-u8-strwidth.c: Likewise.
25005         * tests/uniwidth/test-u8-width.c: Likewise.
25006         * tests/uniwidth/test-uc_width.c: Likewise.
25007         * config/srclist-update: Likewise.
25008         (fixlicense): Update to GPLv3+.
25009
25010         Change copyright notice from LGPLv2.1+ to LGPLv3+.
25011         * tests/test-tsearch.c: Change copyright notice.
25012
25013         Change copyright notice from LGPLv2.0+ to LGPLv3+.
25014         * lib/c-strcaseeq.h: Change copyright notice.
25015         * lib/streq.h: Likewise.
25016         * lib/uniconv.h: Likewise.
25017         * lib/uniconv/u-conv-from-enc.h: Likewise.
25018         * lib/uniconv/u-conv-to-enc.h: Likewise.
25019         * lib/uniconv/u-strconv-from-enc.h: Likewise.
25020         * lib/uniconv/u-strconv-to-enc.h: Likewise.
25021         * lib/uniconv/u16-conv-from-enc.c: Likewise.
25022         * lib/uniconv/u16-conv-to-enc.c: Likewise.
25023         * lib/uniconv/u16-strconv-from-enc.c: Likewise.
25024         * lib/uniconv/u16-strconv-from-locale.c: Likewise.
25025         * lib/uniconv/u16-strconv-to-enc.c: Likewise.
25026         * lib/uniconv/u16-strconv-to-locale.c: Likewise.
25027         * lib/uniconv/u32-conv-from-enc.c: Likewise.
25028         * lib/uniconv/u32-conv-to-enc.c: Likewise.
25029         * lib/uniconv/u32-strconv-from-enc.c: Likewise.
25030         * lib/uniconv/u32-strconv-from-locale.c: Likewise.
25031         * lib/uniconv/u32-strconv-to-enc.c: Likewise.
25032         * lib/uniconv/u32-strconv-to-locale.c: Likewise.
25033         * lib/uniconv/u8-conv-from-enc.c: Likewise.
25034         * lib/uniconv/u8-conv-to-enc.c: Likewise.
25035         * lib/uniconv/u8-strconv-from-enc.c: Likewise.
25036         * lib/uniconv/u8-strconv-from-locale.c: Likewise.
25037         * lib/uniconv/u8-strconv-to-enc.c: Likewise.
25038         * lib/uniconv/u8-strconv-to-locale.c: Likewise.
25039         * lib/uniname.h: Likewise.
25040         * lib/uniname/uniname.c: Likewise.
25041         * lib/unistdio.h: Likewise.
25042         * lib/unistdio/u-asnprintf.h: Likewise.
25043         * lib/unistdio/u-asprintf.h: Likewise.
25044         * lib/unistdio/u-printf-args.c: Likewise.
25045         * lib/unistdio/u-printf-args.h: Likewise.
25046         * lib/unistdio/u-printf-parse.h: Likewise.
25047         * lib/unistdio/u-snprintf.h: Likewise.
25048         * lib/unistdio/u-sprintf.h: Likewise.
25049         * lib/unistdio/u-vasprintf.h: Likewise.
25050         * lib/unistdio/u-vsnprintf.h: Likewise.
25051         * lib/unistdio/u-vsprintf.h: Likewise.
25052         * lib/unistdio/u16-asnprintf.c: Likewise.
25053         * lib/unistdio/u16-asprintf.c: Likewise.
25054         * lib/unistdio/u16-printf-parse.c: Likewise.
25055         * lib/unistdio/u16-snprintf.c: Likewise.
25056         * lib/unistdio/u16-sprintf.c: Likewise.
25057         * lib/unistdio/u16-u16-asnprintf.c: Likewise.
25058         * lib/unistdio/u16-u16-asprintf.c: Likewise.
25059         * lib/unistdio/u16-u16-snprintf.c: Likewise.
25060         * lib/unistdio/u16-u16-sprintf.c: Likewise.
25061         * lib/unistdio/u16-u16-vasnprintf.c: Likewise.
25062         * lib/unistdio/u16-u16-vasprintf.c: Likewise.
25063         * lib/unistdio/u16-u16-vsnprintf.c: Likewise.
25064         * lib/unistdio/u16-u16-vsprintf.c: Likewise.
25065         * lib/unistdio/u16-vasnprintf.c: Likewise.
25066         * lib/unistdio/u16-vasprintf.c: Likewise.
25067         * lib/unistdio/u16-vsnprintf.c: Likewise.
25068         * lib/unistdio/u16-vsprintf.c: Likewise.
25069         * lib/unistdio/u32-asnprintf.c: Likewise.
25070         * lib/unistdio/u32-asprintf.c: Likewise.
25071         * lib/unistdio/u32-printf-parse.c: Likewise.
25072         * lib/unistdio/u32-snprintf.c: Likewise.
25073         * lib/unistdio/u32-sprintf.c: Likewise.
25074         * lib/unistdio/u32-u32-asnprintf.c: Likewise.
25075         * lib/unistdio/u32-u32-asprintf.c: Likewise.
25076         * lib/unistdio/u32-u32-snprintf.c: Likewise.
25077         * lib/unistdio/u32-u32-sprintf.c: Likewise.
25078         * lib/unistdio/u32-u32-vasnprintf.c: Likewise.
25079         * lib/unistdio/u32-u32-vasprintf.c: Likewise.
25080         * lib/unistdio/u32-u32-vsnprintf.c: Likewise.
25081         * lib/unistdio/u32-u32-vsprintf.c: Likewise.
25082         * lib/unistdio/u32-vasnprintf.c: Likewise.
25083         * lib/unistdio/u32-vasprintf.c: Likewise.
25084         * lib/unistdio/u32-vsnprintf.c: Likewise.
25085         * lib/unistdio/u32-vsprintf.c: Likewise.
25086         * lib/unistdio/u8-asnprintf.c: Likewise.
25087         * lib/unistdio/u8-asprintf.c: Likewise.
25088         * lib/unistdio/u8-printf-parse.c: Likewise.
25089         * lib/unistdio/u8-snprintf.c: Likewise.
25090         * lib/unistdio/u8-sprintf.c: Likewise.
25091         * lib/unistdio/u8-u8-asnprintf.c: Likewise.
25092         * lib/unistdio/u8-u8-asprintf.c: Likewise.
25093         * lib/unistdio/u8-u8-snprintf.c: Likewise.
25094         * lib/unistdio/u8-u8-sprintf.c: Likewise.
25095         * lib/unistdio/u8-u8-vasnprintf.c: Likewise.
25096         * lib/unistdio/u8-u8-vasprintf.c: Likewise.
25097         * lib/unistdio/u8-u8-vsnprintf.c: Likewise.
25098         * lib/unistdio/u8-u8-vsprintf.c: Likewise.
25099         * lib/unistdio/u8-vasnprintf.c: Likewise.
25100         * lib/unistdio/u8-vasprintf.c: Likewise.
25101         * lib/unistdio/u8-vsnprintf.c: Likewise.
25102         * lib/unistdio/u8-vsprintf.c: Likewise.
25103         * lib/unistdio/ulc-asnprintf.c: Likewise.
25104         * lib/unistdio/ulc-asprintf.c: Likewise.
25105         * lib/unistdio/ulc-printf-parse.c: Likewise.
25106         * lib/unistdio/ulc-snprintf.c: Likewise.
25107         * lib/unistdio/ulc-sprintf.c: Likewise.
25108         * lib/unistdio/ulc-vasnprintf.c: Likewise.
25109         * lib/unistdio/ulc-vasprintf.c: Likewise.
25110         * lib/unistdio/ulc-vsnprintf.c: Likewise.
25111         * lib/unistdio/ulc-vsprintf.c: Likewise.
25112         * lib/unistr.h: Likewise.
25113         * lib/unistr/u-cpy-alloc.h: Likewise.
25114         * lib/unistr/u-cpy.h: Likewise.
25115         * lib/unistr/u-endswith.h: Likewise.
25116         * lib/unistr/u-move.h: Likewise.
25117         * lib/unistr/u-set.h: Likewise.
25118         * lib/unistr/u-startswith.h: Likewise.
25119         * lib/unistr/u-stpcpy.h: Likewise.
25120         * lib/unistr/u-stpncpy.h: Likewise.
25121         * lib/unistr/u-strcat.h: Likewise.
25122         * lib/unistr/u-strcpy.h: Likewise.
25123         * lib/unistr/u-strcspn.h: Likewise.
25124         * lib/unistr/u-strdup.h: Likewise.
25125         * lib/unistr/u-strlen.h: Likewise.
25126         * lib/unistr/u-strncat.h: Likewise.
25127         * lib/unistr/u-strncpy.h: Likewise.
25128         * lib/unistr/u-strnlen.h: Likewise.
25129         * lib/unistr/u-strpbrk.h: Likewise.
25130         * lib/unistr/u-strspn.h: Likewise.
25131         * lib/unistr/u-strstr.h: Likewise.
25132         * lib/unistr/u-strtok.h: Likewise.
25133         * lib/unistr/u16-check.c: Likewise.
25134         * lib/unistr/u16-chr.c: Likewise.
25135         * lib/unistr/u16-cmp.c: Likewise.
25136         * lib/unistr/u16-cpy-alloc.c: Likewise.
25137         * lib/unistr/u16-cpy.c: Likewise.
25138         * lib/unistr/u16-endswith.c: Likewise.
25139         * lib/unistr/u16-mblen.c: Likewise.
25140         * lib/unistr/u16-mbsnlen.c: Likewise.
25141         * lib/unistr/u16-mbtouc-aux.c: Likewise.
25142         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
25143         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
25144         * lib/unistr/u16-mbtouc.c: Likewise.
25145         * lib/unistr/u16-mbtoucr.c: Likewise.
25146         * lib/unistr/u16-move.c: Likewise.
25147         * lib/unistr/u16-next.c: Likewise.
25148         * lib/unistr/u16-prev.c: Likewise.
25149         * lib/unistr/u16-set.c: Likewise.
25150         * lib/unistr/u16-startswith.c: Likewise.
25151         * lib/unistr/u16-stpcpy.c: Likewise.
25152         * lib/unistr/u16-stpncpy.c: Likewise.
25153         * lib/unistr/u16-strcat.c: Likewise.
25154         * lib/unistr/u16-strchr.c: Likewise.
25155         * lib/unistr/u16-strcmp.c: Likewise.
25156         * lib/unistr/u16-strcpy.c: Likewise.
25157         * lib/unistr/u16-strcspn.c: Likewise.
25158         * lib/unistr/u16-strdup.c: Likewise.
25159         * lib/unistr/u16-strlen.c: Likewise.
25160         * lib/unistr/u16-strmblen.c: Likewise.
25161         * lib/unistr/u16-strmbtouc.c: Likewise.
25162         * lib/unistr/u16-strncat.c: Likewise.
25163         * lib/unistr/u16-strncmp.c: Likewise.
25164         * lib/unistr/u16-strncpy.c: Likewise.
25165         * lib/unistr/u16-strnlen.c: Likewise.
25166         * lib/unistr/u16-strpbrk.c: Likewise.
25167         * lib/unistr/u16-strrchr.c: Likewise.
25168         * lib/unistr/u16-strspn.c: Likewise.
25169         * lib/unistr/u16-strstr.c: Likewise.
25170         * lib/unistr/u16-strtok.c: Likewise.
25171         * lib/unistr/u16-to-u32.c: Likewise.
25172         * lib/unistr/u16-to-u8.c: Likewise.
25173         * lib/unistr/u16-uctomb-aux.c: Likewise.
25174         * lib/unistr/u16-uctomb.c: Likewise.
25175         * lib/unistr/u32-check.c: Likewise.
25176         * lib/unistr/u32-chr.c: Likewise.
25177         * lib/unistr/u32-cmp.c: Likewise.
25178         * lib/unistr/u32-cpy-alloc.c: Likewise.
25179         * lib/unistr/u32-cpy.c: Likewise.
25180         * lib/unistr/u32-endswith.c: Likewise.
25181         * lib/unistr/u32-mblen.c: Likewise.
25182         * lib/unistr/u32-mbsnlen.c: Likewise.
25183         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
25184         * lib/unistr/u32-mbtouc.c: Likewise.
25185         * lib/unistr/u32-mbtoucr.c: Likewise.
25186         * lib/unistr/u32-move.c: Likewise.
25187         * lib/unistr/u32-next.c: Likewise.
25188         * lib/unistr/u32-prev.c: Likewise.
25189         * lib/unistr/u32-set.c: Likewise.
25190         * lib/unistr/u32-startswith.c: Likewise.
25191         * lib/unistr/u32-stpcpy.c: Likewise.
25192         * lib/unistr/u32-stpncpy.c: Likewise.
25193         * lib/unistr/u32-strcat.c: Likewise.
25194         * lib/unistr/u32-strchr.c: Likewise.
25195         * lib/unistr/u32-strcmp.c: Likewise.
25196         * lib/unistr/u32-strcpy.c: Likewise.
25197         * lib/unistr/u32-strcspn.c: Likewise.
25198         * lib/unistr/u32-strdup.c: Likewise.
25199         * lib/unistr/u32-strlen.c: Likewise.
25200         * lib/unistr/u32-strmblen.c: Likewise.
25201         * lib/unistr/u32-strmbtouc.c: Likewise.
25202         * lib/unistr/u32-strncat.c: Likewise.
25203         * lib/unistr/u32-strncmp.c: Likewise.
25204         * lib/unistr/u32-strncpy.c: Likewise.
25205         * lib/unistr/u32-strnlen.c: Likewise.
25206         * lib/unistr/u32-strpbrk.c: Likewise.
25207         * lib/unistr/u32-strrchr.c: Likewise.
25208         * lib/unistr/u32-strspn.c: Likewise.
25209         * lib/unistr/u32-strstr.c: Likewise.
25210         * lib/unistr/u32-strtok.c: Likewise.
25211         * lib/unistr/u32-to-u16.c: Likewise.
25212         * lib/unistr/u32-to-u8.c: Likewise.
25213         * lib/unistr/u32-uctomb.c: Likewise.
25214         * lib/unistr/u8-check.c: Likewise.
25215         * lib/unistr/u8-chr.c: Likewise.
25216         * lib/unistr/u8-cmp.c: Likewise.
25217         * lib/unistr/u8-cpy-alloc.c: Likewise.
25218         * lib/unistr/u8-cpy.c: Likewise.
25219         * lib/unistr/u8-endswith.c: Likewise.
25220         * lib/unistr/u8-mblen.c: Likewise.
25221         * lib/unistr/u8-mbsnlen.c: Likewise.
25222         * lib/unistr/u8-mbtouc-aux.c: Likewise.
25223         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
25224         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
25225         * lib/unistr/u8-mbtouc.c: Likewise.
25226         * lib/unistr/u8-mbtoucr.c: Likewise.
25227         * lib/unistr/u8-move.c: Likewise.
25228         * lib/unistr/u8-next.c: Likewise.
25229         * lib/unistr/u8-prev.c: Likewise.
25230         * lib/unistr/u8-set.c: Likewise.
25231         * lib/unistr/u8-startswith.c: Likewise.
25232         * lib/unistr/u8-stpcpy.c: Likewise.
25233         * lib/unistr/u8-stpncpy.c: Likewise.
25234         * lib/unistr/u8-strcat.c: Likewise.
25235         * lib/unistr/u8-strchr.c: Likewise.
25236         * lib/unistr/u8-strcmp.c: Likewise.
25237         * lib/unistr/u8-strcpy.c: Likewise.
25238         * lib/unistr/u8-strcspn.c: Likewise.
25239         * lib/unistr/u8-strdup.c: Likewise.
25240         * lib/unistr/u8-strlen.c: Likewise.
25241         * lib/unistr/u8-strmblen.c: Likewise.
25242         * lib/unistr/u8-strmbtouc.c: Likewise.
25243         * lib/unistr/u8-strncat.c: Likewise.
25244         * lib/unistr/u8-strncmp.c: Likewise.
25245         * lib/unistr/u8-strncpy.c: Likewise.
25246         * lib/unistr/u8-strnlen.c: Likewise.
25247         * lib/unistr/u8-strpbrk.c: Likewise.
25248         * lib/unistr/u8-strrchr.c: Likewise.
25249         * lib/unistr/u8-strspn.c: Likewise.
25250         * lib/unistr/u8-strstr.c: Likewise.
25251         * lib/unistr/u8-strtok.c: Likewise.
25252         * lib/unistr/u8-to-u16.c: Likewise.
25253         * lib/unistr/u8-to-u32.c: Likewise.
25254         * lib/unistr/u8-uctomb-aux.c: Likewise.
25255         * lib/unistr/u8-uctomb.c: Likewise.
25256         * lib/unitypes.h: Likewise.
25257         * lib/uniwidth.h: Likewise.
25258         * lib/uniwidth/cjk.h: Likewise.
25259         * lib/uniwidth/u16-strwidth.c: Likewise.
25260         * lib/uniwidth/u16-width.c: Likewise.
25261         * lib/uniwidth/u32-strwidth.c: Likewise.
25262         * lib/uniwidth/u32-width.c: Likewise.
25263         * lib/uniwidth/u8-strwidth.c: Likewise.
25264         * lib/uniwidth/u8-width.c: Likewise.
25265         * lib/uniwidth/width.c: Likewise.
25266
25267 2007-10-07  Bruno Haible  <bruno@clisp.org>
25268
25269         * lib/inttypes.in.h: Change copyright notice from LGPL to GPL.
25270         The file is still under LGPL (see modules/inttypes).
25271
25272 2007-10-06  Bruno Haible  <bruno@clisp.org>
25273
25274         * modules/trunc (Dependencies): Add 'extensions'.
25275         * m4/trunc.m4 (gl_FUNC_TRUNC): Require gl_USE_SYSTEM_EXTENSIONS.
25276         Reported by Ben Pfaff <blp@gnu.org>.
25277
25278 2007-10-06  Bruno Haible  <bruno@clisp.org>
25279
25280         * modules/freopen-tests: New file.
25281         * tests/test-freopen.c: New file.
25282
25283         * modules/fopen-tests: New file.
25284         * tests/test-fopen.c: New file.
25285
25286         * modules/fopen: New file.
25287         * lib/fopen.c: New file.
25288         * m4/fopen.m4: New file.
25289         * modules/freopen: New file.
25290         * lib/freopen.c: New file.
25291         * m4/freopen.m4: New file.
25292         * lib/stdio.in.h (fopen, freopen): New declarations.
25293         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize also GNULIB_FOPEN,
25294         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
25295         * modules/stdio (Makefile.am): Substitute also GNULIB_FOPEN,
25296         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
25297         * doc/functions/fopen.texi: Mention the 'fopen' module.
25298         * doc/functions/freopen.texi: Mention the 'freopen' module.
25299
25300 2007-10-06  Bruno Haible  <bruno@clisp.org>
25301
25302         * modules/open-tests: New file.
25303         * tests/test-open.c: New file.
25304
25305         * modules/open: New file.
25306         * lib/open.c: New file.
25307         * m4/open.m4: New file.
25308         * lib/fchdir.c (open): If the gnulib module 'open' is used, do what
25309         lib/open.c does.
25310         * lib/fcntl.in.h (open): Declare also if replaced by the 'open' module.
25311         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR, gl_FCNTL_H_DEFAULTS): New
25312         macros.
25313         (gl_FCNTL_H): Require gl_FCNTL_H_DEFAULTS.
25314         * modules/fcntl (Makefile.am): Also substitute GNULIB_OPEN and
25315         REPLACE_OPEN.
25316         * doc/functions/open.texi: Mention the 'open' module.
25317
25318 2007-10-04  Bruno Haible  <bruno@clisp.org>
25319
25320         * modules/ceill-tests: New file.
25321         * tests/test-ceill.c: New file.
25322
25323         * modules/ceill: New file.
25324         * lib/ceill.c: Replace entire file.
25325         * m4/ceill.m4: New file.
25326         * lib/math.in.h (ceill): Replace declaration.
25327         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILL.
25328         * modules/math (Makefile.am): Substitute also GNULIB_CEILL.
25329         * doc/functions/ceill.texi: Mention the 'ceill' module.
25330         * modules/mathl (Files): Remove lib/ceill.c.
25331         (Depends-on): Add ceill.
25332
25333 2007-10-04  Bruno Haible  <bruno@clisp.org>
25334
25335         * modules/ceilf-tests: New file.
25336         * tests/test-ceilf.c: New file.
25337
25338         * modules/ceilf: New file.
25339         * lib/ceil.c: New file.
25340         * lib/ceilf.c: New file.
25341         * m4/ceilf.m4: New file.
25342         * lib/math.in.h (ceilf): New declaration.
25343         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILF and
25344         HAVE_DECL_CEILF.
25345         * modules/math (Makefile.am): Substitute also GNULIB_CEILF and
25346         HAVE_DECL_CEILF.
25347         * doc/functions/ceilf.texi: Mention the 'ceilf' module.
25348
25349 2007-10-04  Bruno Haible  <bruno@clisp.org>
25350
25351         * modules/floorl-tests: New file.
25352         * tests/test-floorl.c: New file.
25353
25354         * modules/floorl: New file.
25355         * lib/floorl.c: Replace entire file.
25356         * m4/floorl.m4: New file.
25357         * lib/math.in.h (floorl): Replace declaration.
25358         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORL.
25359         * modules/math (Makefile.am): Substitute also GNULIB_FLOORL.
25360         * doc/functions/floorl.texi: Mention the 'floorl' module.
25361         * modules/mathl (Files): Remove lib/floorl.c.
25362         (Depends-on): Add floorl.
25363
25364 2007-10-04  Bruno Haible  <bruno@clisp.org>
25365
25366         * modules/floorf-tests: New file.
25367         * tests/test-floorf.c: New file.
25368
25369         * modules/floorf: New file.
25370         * lib/floor.c: New file.
25371         * lib/floorf.c: New file.
25372         * m4/floorf.m4: New file.
25373         * lib/math.in.h (floorf): New declaration.
25374         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORF and
25375         HAVE_DECL_FLOORF.
25376         * modules/math (Makefile.am): Substitute also GNULIB_FLOORF and
25377         HAVE_DECL_FLOORF.
25378         * doc/functions/floorf.texi: Mention the 'floorf' module.
25379
25380 2007-10-04  Benoit Sigoure  <tsuna@lrde.epita.fr>
25381             Bruno Haible  <bruno@clisp.org>
25382
25383         Advertise for the Git server instead of the CVS server.
25384         * doc/gnulib-intro.texi (Steady Development): Mention the Git
25385         repository instead of the CVS one.
25386         * doc/gnulib-tool.texi (VCS Issues): Renamed from "CVS Issues". Talk
25387         about all VCS systems generically.
25388         * doc/gnulib.texi (Introduction): Capitalize `Git'.
25389
25390 2007-10-04  Bruno Haible  <bruno@clisp.org>
25391
25392         * doc/gnulib.texi (Function Substitutes): Explain what an absent module
25393         means.
25394         Reported by Benoît Sigoure <tsuna@lrde.epita.fr>.
25395
25396 2007-10-04  Bruno Haible  <bruno@clisp.org>
25397
25398         * modules/truncl-tests: New file.
25399         * tests/test-truncl.c: New file.
25400
25401         * modules/truncl: New file.
25402         * lib/truncl.c: New file.
25403         * m4/truncl.m4: New file.
25404         * lib/math.in.h (truncl): New declaration.
25405         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCL and
25406         HAVE_DECL_TRUNCL.
25407         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCL and
25408         HAVE_DECL_TRUNCL.
25409         * doc/functions/truncl.texi: Mention the 'truncl' module.
25410
25411 2007-10-04  Bruno Haible  <bruno@clisp.org>
25412
25413         * modules/truncf-tests: New file.
25414         * tests/test-truncf.c: New file.
25415
25416         * modules/truncf: New file.
25417         * lib/trunc.c: Make paramerizable through USE_* macros.
25418         * lib/truncf.c: New file.
25419         * m4/truncf.m4: New file.
25420         * lib/math.in.h (truncf): New declaration.
25421         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCF and
25422         HAVE_DECL_TRUNCF.
25423         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCF and
25424         HAVE_DECL_TRUNCF.
25425         * doc/functions/truncf.texi: Mention the 'truncf' module.
25426
25427 2007-10-03  Bruno Haible  <bruno@clisp.org>
25428
25429         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
25430         augmentation also for tests modules.
25431         * modules/argp-tests (Makefile.am): Remove EXTRA_DIST augmentation.
25432         * modules/atexit-tests (Makefile.am): Likewise.
25433         * modules/binary-io-tests (Makefile.am): Likewise.
25434         * modules/c-strcase-tests (Makefile.am): Likewise.
25435         * modules/canonicalize-lgpl-tests (Makefile.am): Likewise.
25436         * modules/canonicalize-tests (Makefile.am): Likewise.
25437         * modules/closein-tests (Makefile.am): Likewise.
25438         * modules/fprintf-posix-tests (Makefile.am): Likewise.
25439         * modules/freadahead-tests (Makefile.am): Likewise.
25440         * modules/fseek-tests (Makefile.am): Likewise.
25441         * modules/fseeko-tests (Makefile.am): Likewise.
25442         * modules/ftell-tests (Makefile.am): Likewise.
25443         * modules/ftello-tests (Makefile.am): Likewise.
25444         * modules/isnanl-nolibm-tests (Makefile.am): Likewise.
25445         * modules/isnanl-tests (Makefile.am): Likewise.
25446         * modules/lseek-tests (Makefile.am): Likewise.
25447         * modules/mbscasecmp-tests (Makefile.am): Likewise.
25448         * modules/mbscasestr-tests (Makefile.am): Likewise.
25449         * modules/mbschr-tests (Makefile.am): Likewise.
25450         * modules/mbscspn-tests (Makefile.am): Likewise.
25451         * modules/mbsncasecmp-tests (Makefile.am): Likewise.
25452         * modules/mbspbrk-tests (Makefile.am): Likewise.
25453         * modules/mbspcasecmp-tests (Makefile.am): Likewise.
25454         * modules/mbsrchr-tests (Makefile.am): Likewise.
25455         * modules/mbsspn-tests (Makefile.am): Likewise.
25456         * modules/mbsstr-tests (Makefile.am): Likewise.
25457         * modules/printf-posix-tests (Makefile.am): Likewise.
25458         * modules/snprintf-posix-tests (Makefile.am): Likewise.
25459         * modules/sprintf-posix-tests (Makefile.am): Likewise.
25460         * modules/tsearch-tests (Makefile.am): Likewise.
25461         * modules/uniname/uniname-tests (Makefile.am): Likewise.
25462         * modules/unistdio/u16-vasnprintf-tests (Makefile.am): Likewise.
25463         * modules/unistdio/u32-vasnprintf-tests (Makefile.am): Likewise.
25464         * modules/unistdio/u8-vasnprintf-tests (Makefile.am): Likewise.
25465         * modules/unistdio/ulc-vasnprintf-tests (Makefile.am): Likewise.
25466         * modules/vasnprintf-posix-tests (Makefile.am): Likewise.
25467         * modules/vfprintf-posix-tests (Makefile.am): Likewise.
25468         * modules/vprintf-posix-tests (Makefile.am): Likewise.
25469         * modules/vsnprintf-posix-tests (Makefile.am): Likewise.
25470         * modules/vsprintf-posix-tests (Makefile.am): Likewise.
25471         * modules/xstrtoimax-tests (Makefile.am): Likewise.
25472         * modules/xstrtol-tests (Makefile.am): Likewise.
25473         * modules/xstrtoumax-tests (Makefile.am): Likewise.
25474         * modules/yesno-tests (Makefile.am): Likewise.
25475
25476 2007-10-03  Bruno Haible  <bruno@clisp.org>
25477
25478         * modules/trunc-tests: New file.
25479         * tests/test-trunc.c: New file.
25480
25481         * modules/trunc: New file.
25482         * lib/trunc.c: New file.
25483         * m4/trunc.m4: New file.
25484         * lib/math.in.h (trunc): New declaration.
25485         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNC and
25486         HAVE_DECL_TRUNC.
25487         * modules/math (Makefile.am): Substitute also GNULIB_TRUNC and
25488         HAVE_DECL_TRUNC.
25489         * doc/functions/trunc.texi: Mention the 'trunc' module.
25490
25491 2007-10-03  Bruno Haible  <bruno@clisp.org>
25492
25493         * tests/test-fpending.c: New file, mostly copied
25494         from coreutils/lib/t-fpending.c.
25495         * modules/fpending-tests: New file.
25496
25497 2007-10-03  Bruno Haible  <bruno@clisp.org>
25498
25499         Port the stdio extensions to QNX (untested).
25500         * lib/fseterr.c (fseterr): Add support for QNX.
25501         * lib/fbufmode.c (fbufmode): Likewise.
25502         * lib/freadable.c (freadable): Likewise.
25503         * lib/fwritable.c (fwritable): Likewise.
25504         * lib/freading.c (freading): Likewise.
25505         * lib/fwriting.c (fwriting): Likewise.
25506         * lib/freadahead.c (freadahed): Likewise.
25507         * lib/fpurge.c (fpurge): Likewise.
25508         * lib/fseeko.c (rpl_fseeko): Likewise.
25509
25510 2007-10-03  Bruno Haible  <bruno@clisp.org>
25511             Jim Meyering  <jim@meyering.net>
25512             Eric Blake  <ebb9@byu.net>
25513
25514         * doc/relocatable.texi: Use @command instead of @program.
25515
25516 2007-10-02  Jim Meyering  <jim@meyering.net>
25517
25518         Perform one more "_.h" -> ".in.h" substitution.
25519         * modules/unistd (Makefile.am) [unistd.h]: Use unistd.h.in
25520         instead of unistd_.h here, too.
25521
25522 2007-10-01  Bruno Haible  <bruno@clisp.org>
25523
25524         * gnulib-tool (func_emit_initmacro_done): Special case for alloca.c.
25525         Needed for the alloca-opt module.
25526
25527 2007-09-30  Bruno Haible  <bruno@clisp.org>
25528
25529         * lib/alloca.in.h: Renamed from lib/alloca_.h.
25530         * modules/alloca-opt (Files, Makefile.am): Use alloca.in.h instead of
25531         alloca_.h.
25532         * lib/argz.in.h: Renamed from lib/argz_.h.
25533         * modules/argz (Files, Makefile.am): Use argz.in.h instead of argz_.h.
25534         * lib/byteswap.in.h: Renamed from lib/byteswap_.h.
25535         * modules/byteswap (Files, Makefile.am): Use byteswap.in.h instead of
25536         byteswap_.h.
25537         * lib/dirent.in.h: Renamed from lib/dirent_.h.
25538         * modules/fchdir (Files, Makefile.am): Use dirent.in.h instead of
25539         dirent_.h.
25540         * lib/fcntl.in.h: Renamed from lib/fcntl_.h.
25541         * modules/fcntl (Files, Makefile.am): Use fcntl.in.h instead of
25542         fcntl_.h.
25543         * lib/float.in.h: Renamed from lib/float_.h.
25544         * modules/float (Files, Makefile.am): Use float.in.h instead of
25545         float_.h.
25546         * lib/fnmatch.in.h: Renamed from lib/fnmatch_.h.
25547         * modules/fnmatch (Files, Makefile.am): Use fnmatch.in.h instead of
25548         fnmatch_.h.
25549         * lib/getopt.in.h: Renamed from lib/getopt_.h.
25550         * modules/getopt (Files, Makefile.am): Use getopt.in.h instead of
25551         getopt_.h.
25552         * lib/glob.in.h: Renamed from lib/glob_.h.
25553         * modules/glob (Files, Makefile.am): Use glob.in.h instead of glob_.h.
25554         * lib/iconv.in.h: Renamed from lib/iconv_.h.
25555         * modules/iconv_open (Files, Makefile.am): Use iconv.in.h instead of
25556         iconv_.h.
25557         * lib/inttypes.in.h: Renamed from lib/inttypes_.h.
25558         * modules/inttypes (Files, Makefile.am): Use inttypes.in.h instead of
25559         inttypes_.h.
25560         * lib/locale.in.h: Renamed from lib/locale_.h.
25561         * modules/locale (Files, Makefile.am): Use locale.in.h instead of
25562         locale_.h.
25563         * lib/math.in.h: Renamed from lib/math_.h.
25564         * modules/math (Files, Makefile.am): Use math.in.h instead of math_.h.
25565         * lib/netinet_in.in.h: Renamed from lib/netinet_in_.h.
25566         * modules/netinet_in (Files, Makefile.am): Use netinet_in.in.h instead
25567         of netinet_in_.h. Add dependency.
25568         * lib/poll.in.h: Renamed from lib/poll_.h.
25569         * modules/poll (Files, Makefile.am): Use poll.in.h instead of poll_.h.
25570         * lib/search.in.h: Renamed from lib/search_.h.
25571         * modules/search (Files, Makefile.am): Use search.in.h instead of
25572         search_.h.
25573         * lib/signal.in.h: Renamed from lib/signal_.h.
25574         * modules/signal (Files, Makefile.am): Use signal.in.h instead of
25575         _signal.h.
25576         * lib/stdbool.in.h: Renamed from lib/stdbool_.h.
25577         * modules/stdbool (Files, Makefile.am): Use stdbool.in.h instead of
25578         stdbool_.h.
25579         * lib/stdint.in.h: Renamed from lib/stdint_.h.
25580         * modules/stdint (Files, Makefile.am): Use stdint.in.h instead of
25581         stdint_.h.
25582         * lib/stdio.in.h: Renamed from lib/stdio_.h.
25583         * modules/stdio (Files, Makefile.am): Use stdio.in.h instead of
25584         stdio_.h.
25585         * lib/stdlib.in.h: Renamed from lib/stdlib_.h.
25586         * modules/stdlib (Files, Makefile.am): Use stdlib.in.h instead of
25587         stdlib_.h.
25588         * lib/string.in.h: Renamed from lib/string_.h.
25589         * modules/string (Files, Makefile.am): Use string.in.h instead of
25590         string_.h.
25591         * doc/gnulib-tool.texi (Initial import): Update.
25592         * lib/sys_select.in.h: Renamed from lib/sys_select_.h.
25593         * modules/sys_select (Files, Makefile.am): Use sys_select.in.h instead
25594         of sys_select_.h. Add dependency.
25595         * lib/sys_socket.in.h: Renamed from lib/sys_socket_.h.
25596         * modules/sys_socket (Files, Makefile.am): Use sys_socket.in.h instead
25597         of sys_socket_.h.
25598         * lib/sys_stat.in.h: Renamed from lib/sys_stat_.h.
25599         * modules/sys_stat (Files, Makefile.am): Use sys_stat.in.h instead of
25600         sys_stat_.h.
25601         * lib/sys_time.in.h: Renamed from lib/sys_time_.h.
25602         * modules/sys_time (Files, Makefile.am): Use sys_time.in.h instead of
25603         sys_time_.h.
25604         * lib/sysexits.in.h: Renamed from lib/sysexits_.h.
25605         * modules/sysexits (Files, Makefile.am): Use sysexits.in.h instead of
25606         sysexits_.h.
25607         * lib/time.in.h: Renamed from lib/time_.h.
25608         * modules/time (Files, Makefile.am): Use time.in.h instead of time_.h.
25609         * lib/unistd.in.h: Renamed from lib/unistd_.h.
25610         * modules/unistd (Files, Makefile.am): Use unistd.in.h instead of
25611         unistd_.h.
25612         * lib/wchar.in.h: Renamed from lib/wchar_.h.
25613         * modules/wchar (Files, Makefile.am): Use wchar.in.h instead of
25614         wchar_.h.
25615         * lib/wctype.in.h: Renamed from lib/wctype_.h.
25616         * modules/wctype (Files, Makefile.am): Use wctype.in.h instead of
25617         wctype_.h.
25618         * build-aux/bootstrap (slurp): Update.
25619         * lib/.cppi-disable: Update.
25620
25621 2007-09-30  Bruno Haible  <bruno@clisp.org>
25622
25623         * tests/test-getaddrinfo.c (AF_UNSPEC): Provide a fallback definition.
25624         Needed on BeOS.
25625
25626 2007-09-30  Bruno Haible  <bruno@clisp.org>
25627
25628         * modules/dirname-tests (check_PROGRAMS): Renamed from noinst_PROGRAMS.
25629
25630 2007-09-29  Bruno Haible  <bruno@clisp.org>
25631
25632         * lib/stdio_.h (getdelim, getline): Add identifiers. Doc tweak.
25633
25634 2007-09-29  Bruno Haible  <bruno@clisp.org>
25635
25636         * lib/xreadlink.c (xreadlink): Simplify to a wrapper around areadlink.
25637         * modules/xreadlink (Depends-on): Add areadlink, remove readlink etc.
25638         * build-aux/install-reloc: Compile also areadlink.c.
25639         * modules/relocatable-prog-wrapper (Files): Add lib/areadlink.[hc].
25640
25641 2007-09-29  Bruno Haible  <bruno@clisp.org>
25642
25643         * gnulib-tool (func_emit_initmacro_done): Indentation.
25644
25645 2007-09-29  Bruno Haible  <bruno@clisp.org>
25646
25647         * README: Add CVS checkout update instructions.
25648         Info from Bob Proulx <bob@proulx.com>.
25649
25650 2007-09-28  Eric Blake  <ebb9@byu.net>
25651
25652         Provide move-if-change.
25653         * build-aux/move-if-change: New file, based on best practice
25654         rather than any canonical upstream location.
25655
25656 2007-09-28  Jim Meyering  <jim@meyering.net>
25657
25658         Fix canonicalize loop-detection corner case.
25659         Do not attempt to stat the symlink values stored via seen_triple.
25660         Without this, coreutils' tests/misc/readlink-fp-loop test would fail
25661         on linux-2.6.18, (but not 2.6.22).
25662         * lib/canonicalize.c (seen_triple): Use triple_compare_ino_str, not
25663         triple_compare.  The former compares dev,ino,filename, while the latter
25664         would actually stat dirname(filename) when dev and ino were equal.
25665         * lib/hash-triple.c: Install <string.h>.
25666         (STREQ): Define.
25667         (triple_compare_ino_str): New function.
25668         * lib/hash-triple.h (triple_compare_ino_str): Declare it.
25669
25670 2007-09-28  Eric Blake  <ebb9@byu.net>
25671
25672         Enforce that AC_REPLACE_FUNCS files exist.
25673         * gnulib-tool (func_emit_initmacro_done): Make AC_LIBSOURCES
25674         override check for typos.
25675
25676         Fix test-closein on Solaris 10.
25677         * tests/test-closein.c (main): Don't assume stdin can be inherited
25678         closed on all systems.
25679         * tests/test-closein.sh: Likewise.
25680         Reported by Piotr Tarnowski.
25681
25682 2007-09-28  Jim Meyering  <jim@meyering.net>
25683
25684         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Fix typo in comment.
25685
25686 2007-09-27  Jim Meyering  <jim@meyering.net>
25687
25688         canonicalize: Avoid a false-positive cycle failure.
25689         * modules/canonicalize (Depends-on): Add file-set and hash-triple.
25690         Sort.  Remove cycle-check.
25691         * lib/canonicalize.c: Include file-set.h and hash-triple.h,
25692         not cycle-check.h.
25693         (seen_triple): New function.
25694         (canonicalize_filename_mode): Use it instead of cycle-check.
25695         * tests/test-canonicalize.c: Add a test for this bug.
25696         * tests/test-canonicalize.sh: Set up and run the test.
25697
25698         New module, file-set, from coreutils.
25699         * modules/file-set: Define it.
25700         * lib/file-set.c, lib/file-set.h: Implement.
25701
25702         New module, hash-triple, from coreutils.
25703         * modules/hash-triple: Define it.
25704         * lib/hash-triple.c, lib/hash-triple.h: Implement.
25705
25706 2007-09-25  Eric Blake  <ebb9@byu.net>
25707
25708         Fix strerror on Interix.
25709         * lib/string_.h (strerror): Declare replacement.
25710         * doc/functions/strerror.texi (strerror): Document the Interix
25711         shortcoming.
25712         * modules/string (Makefile.am): Support new hooks.
25713         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Add new hooks.
25714         * m4/strerror.m4 (gl_FUNC_STRERROR): Defer to
25715         gl_FUNC_STRERROR_SEPARATE.
25716         (gl_FUNC_STRERROR_SEPARATE): Check for Interix bug.
25717         * lib/strerror.c (rpl_strerror): Provide replacement.
25718         * modules/strerror (Depends-on): Add string.
25719         (configure.ac): Detect use of module.
25720         * tests/test-strerror.c: New file.
25721         * modules/strerror-tests: New test module.
25722         * modules/argp (Depends-on): Add strerror.
25723         * modules/error (Depends-on): Likewise.
25724         Reported by Martin Koeppe.
25725
25726 2007-09-24  Bruno Haible  <bruno@clisp.org>
25727
25728         * README: Update git instructions.
25729
25730 2007-09-24  Eric Blake  <ebb9@byu.net>
25731
25732         Revert fpending breakage from 2007-09-08.
25733         * m4/fpending.m4 (gl_FUNC_FPENDING): Don't require existence of
25734         __fpending.c.
25735
25736 2007-09-24  Jim Meyering  <jim@meyering.net>
25737
25738         filenamecat.c: Add a test.
25739         * lib/filenamecat.c (main) [TEST_FILE_NAME_CONCAT]: Add a test
25740         showing how the function works when DIR is the empty string.
25741
25742 2007-09-21  Simon Josefsson  <simon@josefsson.org>
25743
25744         * tests/test-canonicalize.sh: Turn on executable bit.
25745
25746 2007-09-19  Eric Blake  <ebb9@byu.net>
25747
25748         * README: Update CVS instructions.
25749
25750 2007-09-18  Bruno Haible  <bruno@clisp.org>
25751
25752         * modules/areadlink: New file.
25753         * lib/areadlink.h (areadlink): New declaration.
25754         * lib/areadlink.c: New file, based on lib/xreadlink.c.
25755
25756 2007-09-17  Jim Meyering  <jim@meyering.net>
25757
25758         * lib/savewd.c (ESTALE) [!defined]: Define.
25759         Reported to be required on Interix by Martin Koeppe.
25760
25761 2007-09-17  Bruno Haible  <bruno@clisp.org>
25762
25763         * gnulib-tool (func_version): Use $version.
25764
25765 2007-09-16  Bruno Haible  <bruno@clisp.org>
25766
25767         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE, gl_PRINTF_INFINITE,
25768         gl_PRINTF_INFINITE_LONG_DOUBLE): Increase buf's size from 100 to 10000.
25769         Needed on glibc-2.6.1 with -fstack-protector -D_FORTIFY_SOURCE=2.
25770         Reported by Greg Schafer <gschafer@zip.com.au>.
25771
25772 2007-09-15  Bruno Haible  <bruno@clisp.org>
25773
25774         * gnulib-tool (sed): Try a little harder to make bash understand the
25775         alias.
25776         Reported by Bruce Korb <bruce.korb@gmail.com>.
25777
25778 2007-09-13  Eric Blake  <ebb9@byu.net>
25779
25780         * ChangeLog: Remove conflict markers.
25781
25782 2007-09-13  Simon Josefsson  <simon@josefsson.org>
25783
25784         * lib/gc-gnulib.c (gc_hash_open): Catch NULL calloc return value.
25785         Reported by Bruno Haible <bruno@clisp.org>.
25786
25787 2007-09-12  Bruno Haible  <bruno@clisp.org>
25788
25789         * m4/lock.m4: Don't provide an AC_USE_SYSTEM_EXTENSIONS definition.
25790         (gl_LOCK_EARLY_BODY): Use AC_GNU_SOURCE when AC_USE_SYSTEM_EXTENSIONS
25791         is not defined.
25792
25793 2007-09-12  Eric Blake  <ebb9@byu.net>
25794
25795         Track CVS Autoconf on AC_USE_SYSTEM_EXTENSIONS.
25796         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Update to CVS
25797         Autoconf definition.
25798         * modules/euidaccess (Depends-on): Add extensions, for
25799         AC_USE_SYSTEM_EXTENSIONS with autoconf <= 2.59.
25800         * modules/fnmatch (Depends-on): Likewise.
25801         * modules/getaddrinfo (Depends-on): Likewise.
25802         * modules/getdelim (Depends-on): Likewise.
25803         * modules/getline (Depends-on): Likewise.
25804         * modules/getsubopt (Depends-on): Likewise.
25805         * modules/gettext (Depends-on): Likewise.
25806         * modules/group-member (Depends-on): Likewise.
25807         * modules/mbchar (Depends-on): Likewise.
25808         * modules/memmem (Depends-on): Likewise.
25809         * modules/mempcpy (Depends-on): Likewise.
25810         * modules/memrchr (Depends-on): Likewise.
25811         * modules/pagealign_alloc (Depends-on): Likewise.
25812         * modules/readutmp (Depends-on): Likewise.
25813         * modules/stpcpy (Depends-on): Likewise.
25814         * modules/stpncpy (Depends-on): Likewise.
25815         * modules/strchrnul (Depends-on): Likewise.
25816         * modules/strndup (Depends-on): Likewise.
25817         * modules/strsep (Depends-on): Likewise.
25818         * modules/strverscmp (Depends-on): Likewise.
25819         * modules/vasprintf (Depends-on): Likewise.
25820         * modules/wcwidth (Depends-on): Likewise.
25821         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): AC_GNU_SOURCE will be
25822         obsolete in Autoconf 2.62; use AC_USE_SYSTEM_EXTENSIONS instead.
25823         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_GNU): Likewise.
25824         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDR_INFO): Likewise.
25825         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
25826         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
25827         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Likewise.
25828         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
25829         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER): Likewise.
25830         * m4/mbchar.m4 (gl_MBCHAR): Likewise.
25831         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
25832         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
25833         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
25834         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Likewise.
25835         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC): Likewise.
25836         * m4/readutmp.m4 (gl_READUTMP): Likewise.
25837         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
25838         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
25839         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
25840         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
25841         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
25842         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
25843         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
25844         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Likewise.
25845         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): Likewise.
25846         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
25847         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Likewise, but provide fallback,
25848         so that lock.m4 can be used in gettext without extensions module.
25849
25850 2007-09-11  Bruno Haible  <bruno@clisp.org>
25851
25852         * m4/isc-posix.m4: Remove file.
25853         Suggested by Eric Blake.
25854
25855 2007-09-11  Eric Blake  <ebb9@byu.net>
25856
25857         * ChangeLog: Restore lines accidentally truncated 2007-04-06.
25858
25859 2007-09-10  Bruno Haible  <bruno@clisp.org>
25860
25861         * posix-modules: Fix typo in error message.
25862         Reported by Matt <mkraai@beckman.com>.
25863
25864 2007-09-09  Bruno Haible  <bruno@clisp.org>
25865
25866         * doc/functions/getdelim.texi: Update list of platforms lacking the
25867         function.
25868         * doc/functions/getline.texi: Likewise.
25869
25870 2007-09-09  Jim Meyering  <jim@meyering.net>
25871
25872         * lib/hash.c (hash_initialize): Detect calloc failure.
25873         Reported by Bruno Haible.
25874
25875 2007-09-09  Bruno Haible  <bruno@clisp.org>
25876
25877         * lib/canonicalize-lgpl.c (__realpath): Set errno to ENOMEM when
25878         malloc or realloc fails.
25879
25880 2007-09-09  Bruno Haible  <bruno@clisp.org>
25881
25882         * modules/getcwd (Depends-on): Add malloc-posix.
25883         * modules/glob (Depends-on): Likewise.
25884         * modules/putenv (Depends-on): Likewise.
25885         * modules/strdup (Depends-on): Likewise.
25886         * modules/getdelim (Depends-on): Add realloc-posix.
25887         * modules/read-file (Depends-on): Likewise.
25888
25889 2007-09-09  Bruno Haible  <bruno@clisp.org>
25890
25891         * m4/malloc.m4 (gl_CHECK_MALLOC_POSIX): New macro.
25892         (gl_FUNC_MALLOC_POSIX): Require it.
25893         * m4/realloc.m4 (gl_FUNC_REALLOC_POSIX): Likewise.
25894         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): Likewise.
25895         * modules/realloc (Files): Add m4/malloc.m4.
25896         * modules/calloc (Files): Likewise.
25897
25898 2007-09-09  Bruno Haible  <bruno@clisp.org>
25899
25900         * modules/malloc-posix: New file.
25901         * modules/malloc (Depends-on): Add malloc-posix.
25902         * lib/malloc.c: Include errno.h.
25903         (rpl_malloc): Merge the requirements of a glibc-compatible malloc
25904         and a POSIX-compatible malloc into a single function. Set ENOMEM
25905         when returning NULL.
25906         * m4/malloc.m4: New file.
25907         * doc/functions/malloc.texi: Mention the malloc-posix module.
25908         * lib/stdlib_.h (malloc): New declaration.
25909         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
25910         GNULIB_MALLOC_POSIX and HAVE_MALLOC_POSIX.
25911         * modules/stdlib (stdlib.h): Substitute also GNULIB_MALLOC_POSIX
25912         and HAVE_MALLOC_POSIX.
25913
25914 2007-09-09  Bruno Haible  <bruno@clisp.org>
25915
25916         * modules/realloc-posix: New file.
25917         * modules/realloc (Depends-on): Add realloc-posix.
25918         * lib/realloc.c: Include errno.h.
25919         (rpl_realloc): Merge the requirements of a glibc-compatible realloc
25920         and a POSIX-compatible realloc into a single function. Set ENOMEM
25921         when returning NULL.
25922         * m4/realloc.m4: New file.
25923         * doc/functions/realloc.texi: Mention the realloc-posix module.
25924         * lib/stdlib_.h (realloc): New declaration.
25925         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
25926         GNULIB_REALLOC_POSIX and HAVE_REALLOC_POSIX.
25927         * modules/stdlib (stdlib.h): Substitute also GNULIB_REALLOC_POSIX
25928         and HAVE_REALLOC_POSIX.
25929
25930 2007-09-09  Bruno Haible  <bruno@clisp.org>
25931
25932         * modules/calloc-posix: New file.
25933         * modules/calloc (Depends-on): Add calloc-posix.
25934         * lib/calloc.c: Include errno.h.
25935         (rpl_calloc): Merge the requirements of a glibc-compatible calloc
25936         and a POSIX-compatible calloc into a single function. Set ENOMEM
25937         when returning NULL.
25938         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): New macro.
25939         * doc/functions/calloc.texi: Mention the calloc-posix module.
25940         * lib/stdlib_.h (calloc): New declaration.
25941         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
25942         GNULIB_CALLOC_POSIX and HAVE_CALLOC_POSIX.
25943         * modules/stdlib (stdlib.h): Substitute also GNULIB_CALLOC_POSIX
25944         and HAVE_CALLOC_POSIX.
25945
25946 2007-09-09  Bruno Haible  <bruno@clisp.org>
25947
25948         Allow for modules to show an arbitrary notice.
25949         * modules/TEMPLATE-EXTENDED: Add 'Notice' field.
25950         * gnulib-tool: New option --extract-notice.
25951         (func_usage): Document it.
25952         (sed_extract_prog): Update.
25953         (func_get_notice): New function.
25954         (func_modules_notice): New function.
25955         (func_import, func_create_testdir): Invoke it.
25956         Suggested by Jim Meyering.
25957
25958 2007-09-09  Bruno Haible  <bruno@clisp.org>
25959
25960         * gnulib-tool: New options --verbose, --quiet.
25961         (func_usage): Document them.
25962         (verbose): New variable.
25963         (func_execute_command): New function.
25964         (func_import): Don't show the module list and the file list if
25965         $verbose < 0.
25966         (func_create_testdir): Likewise. Use func_execute_command.
25967         (func_create_megatestdir): Use func_execute_command.
25968
25969 2007-09-08  Bruno Haible  <bruno@clisp.org>
25970
25971         * gnulib-tool (func_import): Prefer rsync over wget when available,
25972         for fetching the PO files.
25973
25974 2007-09-08  Bruno Haible  <bruno@clisp.org>
25975
25976         * posix-modules: New file. Portions copied from gnulib-tool.
25977         * doc/gnulib.texi (POSIX Substitutes Library): New chapter.
25978
25979 2007-09-08  Jim Meyering  <jim@meyering.net>
25980
25981         Rename __fpending.c -> fpending.c and __fpending.h -> fpending.h
25982         * lib/fpending.h: Rename from __fpending.h.
25983         * lib/fpending.c: Rename from __fpending.c.
25984         Include "fpending.h", not "__fpending.h".
25985         * lib/__fpending.h, lib/__fpending.c: Remove files.
25986         * modules/fpending (Files): Reflect new file names.
25987         * lib/close-stream.c: Include "fpending.h", not "__fpending.h".
25988
25989 2007-09-08  Bruno Haible  <bruno@clisp.org>
25990
25991         * m4/inttypes-h.m4: Remove stub file.
25992
25993 2007-09-07  Simon Josefsson  <simon@josefsson.org>
25994
25995         * doc/headers/stdint.texi: Discuss #include_next issue.
25996
25997 2007-09-06  Paul Eggert  <eggert@cs.ucla.edu>
25998
25999         * build-aux/bootstrap: Remove obsolete comment about wget --help.
26000
26001 2007-09-06  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
26002
26003         * m4/time_h.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Fix misspelling
26004         in variable name.
26005
26006 2007-09-03  Jim Meyering  <jim@meyering.net>
26007
26008         New module: git-version-gen.
26009         * modules/git-version-gen: New file.
26010
26011         Import changes from coreutils for bootstrap script.
26012
26013         * build-aux/bootstrap (WGET_COMMAND): Remove code to set this variable.
26014
26015         bootstrap: uses rsync to download the .po files
26016         * build-aux/bootstrap (po_download_command_format): New global.
26017         (download_po_files): Use rsync.
26018         (update_po_files): Don't remove .po files after download,
26019         so future rsync runs can take advantage of the copies.
26020
26021         * build-aux/bootstrap (gnulib_tool): Make sha1sum check quietly.
26022
26023         Solve the unnecessary-.po-file-regeneration problem once and for all.
26024         * build-aux/bootstrap (download_po_files): New function, renamed from
26025         get_translations.  Now, downloads, but doesn't update LINGUAS.
26026         (update_po_files): New function.
26027
26028         bootstrap: Ignore more.
26029         * build-aux/bootstrap (symlink_to_dir): Add a directory name like
26030         uniwidth to e.g., lib/.gitignore.
26031         (slurp): Handle the sys_stat_.h -> sys mapping, too.
26032
26033         * build-aux/bootstrap: New setting: vc_ignore.
26034         (insert_sorted_if_absent): Create $file if absent.
26035         Adapt to new, possibly empty, list: $vc_ignore.
26036
26037         bootstrap: generate more ignorable names
26038         * build-aux/bootstrap (slurp): When generating ignorable names,
26039         also map .sin to .sed, .gperf to .c, and .y to .c.
26040
26041 2007-09-03  Jim Meyering  <jim@meyering.net>
26042
26043         * build-aux/git-version-gen: New file, from coreutils.  For details, see
26044         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commitdiff;h=bfe49f506
26045
26046 2007-09-02  Bruno Haible  <bruno@clisp.org>
26047
26048         Fix mis-recognition of 'mcs' on QNX 6.
26049         * m4/csharpcomp.m4 (gt_CSHARPCOMP): Test whether the "mcs --version"
26050         output contains the string "Mono".
26051         * lib/csharpcomp.c (compile_csharp_using_mono): Likewise.
26052         Reported by <kraai@ftbfs.org> at <https://savannah.gnu.org/bugs/?18337>.
26053
26054 2007-09-01  Bruno Haible  <bruno@clisp.org>
26055
26056         Fix collision between uniwidth/* and linebreak modules.
26057         * lib/linebreak.h (locale_charset, uc_width, u8_width, u16_width,
26058         u32_width): Remove declarations.
26059         * lib/linebreak.c: Include uniwidth.h, uniwidth/cjk.h, streq.h.
26060         (u32_mbtouc_unsafe, streq9, streq8, streq7, streq6, streq5, streq4,
26061         streq3, streq2, streq1, streq0): Remove functions.
26062         (STREQ): Remove macro.
26063         (is_cjk_encoding): Remove function.
26064         (nonspacing_table_data, nonspacing_table_ind): Remove constants.
26065         (uc_width, u8_width, u16_width, u32_width): Remove functions.
26066         * modules/linebreak (Depends-on): Add streq, uniwidth/width.
26067         * NEWS: Document the change.
26068
26069 2007-09-01  Bruno Haible  <bruno@clisp.org>
26070
26071         * lib/streq.h: Add double-inclusion guard.
26072
26073 2007-09-01  Karl Berry  <karl@gnu.org>
26074
26075         * MODULES.html.sh: Rename mreadlink_with_size to areadlink_with_size.
26076
26077 2007-08-28  Jim Meyering  <jim@meyering.net>
26078
26079         Rename mreadlink_with_size to areadlink_with_size.
26080         * NEWS: Document the change.
26081         * lib/mreadlink-with-size.c (mreadlink_with_size): Rename this to...
26082         * lib/areadlink-with-size.c (areadlink_with_size): ...this.
26083         * lib/mreadlink.h: Rename this to...
26084         * lib/areadlink.h: ...this.
26085         * modules/mreadlink-with-size: Rename this to...
26086         * modules/areadlink-with-size: ...this.
26087         * lib/canonicalize.c: Reflect the renaming.
26088         * modules/canonicalize: Likewise.
26089
26090 2007-08-26  Bruno Haible  <bruno@clisp.org>
26091
26092         * gnulib-tool (func_import): When deciding which files to remove,
26093         consider also dangling symbolic links.
26094         Reported by Eric Blake.
26095
26096 2007-08-26  Bruno Haible  <bruno@clisp.org>
26097
26098         * gnulib-tool (func_ln_if_changed): Use "test -h", not "test -L".
26099
26100 2007-08-23  Simon Josefsson  <simon@josefsson.org>
26101
26102         * lib/readline.c: Don't include getline.h, the prototype is now
26103         found in stdio.h.
26104
26105 2007-08-23  Jim Meyering  <jim@meyering.net>
26106
26107         Getdelim touchup.
26108         * lib/getdelim.c (getdelim): Don't bother to save/restore errno
26109         around the funlockfile call, since funlockfile never sets errno.
26110         Don't set errno upon failed realloc.
26111
26112 2007-08-22  Eric Blake  <ebb9@byu.net>
26113
26114         Getline touchups.
26115         * lib/getdelim.c (getdelim): Revert regression that required *n to
26116         be 0 when *lineptr is NULL.  Preserve errno across funlockfile.
26117         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Check for declaration of
26118         getdelim, rather than whether implementation is missing.
26119         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise for getline.
26120         * lib/stdio_.h (getline): Also declare if replacement is
26121         required.
26122         * doc/functions/getdelim.texi: New file.
26123         * doc/functions/getline.texi: Likewise.
26124         * doc/gnulib.texi (Function Substitutes): Add new files.
26125         Reported by Bruno Haible.
26126
26127 2007-08-22  Ludovic Courtès  <ludo@gnu.org>
26128
26129         * users.txt: Add Guile.
26130
26131 2007-08-22  Eric Blake  <ebb9@byu.net>
26132
26133         * tests/test-getdelim.c (main): Use remove, not unlink.
26134         * tests/test-getline.c (main): Likewise.
26135
26136         Move getline and getdelim into stdio.h, per POSIX 200x.
26137         * modules/getline (Files): Remove getline.h.
26138         (Depends-on): Add stdio.
26139         (configure.ac): Add module indicator.
26140         * modules/getdelim (Files): Remove getdelim.h.
26141         (Depends-on): Add stdio.
26142         (configure.ac): Add module indicator.
26143         * modules/stdio (Makefile.am): Work with new indicators.
26144         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
26145         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Work with stdio needs.
26146         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
26147         * lib/getdelim.h: Delete.
26148         * lib/getline.h: Delete.
26149         * lib/stdio_.h (getdelim, getline): Declare.
26150         * modules/getdelim-tests: New module.
26151         * modules/getline-tests: Likewise.
26152         * tests/test-getdelim.c: New file.
26153         * tests/test-getline.c: Likewise.
26154         * NEWS: Document the change.
26155         * lib/getline.c: Update choice of header.
26156         * lib/csharpcomp.c: Likewise.
26157         * lib/getpass.c: Likewise.
26158         * lib/javacomp.c: Likewise.
26159         * lib/javaversion.c: Likewise.
26160         * lib/yesno.c: Likewise.
26161         * lib/getdelim.c: Likewise.
26162         (getdelim): Set errno on failure, and avoid memory leak.
26163
26164 2007-08-19  Bruno Haible  <bruno@clisp.org>
26165
26166         * modules/closein (Depends-on): Add freadahead.
26167         * lib/closein.c: Include freadahead.h.
26168         (close_stdin): Skip the fseeko and fflush calls if freadahead(stdin)
26169         is zero.
26170
26171 2007-08-19  Bruno Haible  <bruno@clisp.org>
26172
26173         * modules/freadahead-tests: New file.
26174         * tests/test-freadahead.sh: New file.
26175         * tests/test-freadahead.c: New file.
26176
26177         * modules/freadahead: New file.
26178         * lib/freadahead.h: New file.
26179         * lib/freadahead.c: New file.
26180         * MODULES.html.sh (File stream based Input/Output): Add freadahead,
26181         fbufmode, fpurge, freadable, fwritable.
26182
26183 2007-08-19  Eric Blake  <ebb9@byu.net>
26184
26185         Test yesno in combination with closein.
26186         * lib/yesno.c (yesno): Document use of stdin.
26187         * modules/yesno-tests (Files): New module.
26188         * tests/test-yesno.c (main): New file.
26189         * tests/test-yesno.sh: Likewise.
26190
26191 2007-08-19  Bruno Haible  <bruno@clisp.org>
26192
26193         * lib/fbufmode.c (fbufmode): Add tentative support for Solaris/AMD64.
26194         * lib/fseeko.c (rpl_fseeko): Likewise.
26195         * lib/fseterr.c (fseterr): Likewise.
26196
26197 2007-08-19  Bruno Haible  <bruno@clisp.org>
26198
26199         * tests/test-lseek.c (main): Disable a test for BeOS.
26200         * doc/functions/lseek.texi: Document the BeOS bug.
26201
26202 2007-08-19  Bruno Haible  <bruno@clisp.org>
26203             Eric Blake  <ebb9@byu.net>
26204
26205         * lib/lseek.c: Include <sys/stat.h>.
26206         (rpl_lseek): Add workaround code also for Unix platforms.
26207         Needed for BeOS.
26208         * m4/lseek.m4 (gl_FUNC_LSEEK): When cross-compiling, fail on BeOS.
26209         * doc/functions/lseek.texi: Document BeOS definiency.
26210
26211 2007-08-18  Bruno Haible  <bruno@clisp.org>
26212
26213         * modules/fstrcmp-tests: New file.
26214         * tests/test-fstrcmp.c: New file.
26215
26216 2007-08-18  Bruno Haible  <bruno@clisp.org>
26217
26218         * modules/fstrcmp: New file, from GNU gettext with modifications.
26219         * lib/fstrcmp.h: New file, from GNU gettext.
26220         * lib/fstrcmp.c: New file, from GNU gettext.
26221         * MODULES.html.sh (String handling): Add fstrcmp.
26222
26223 2007-08-18  Bruno Haible  <bruno@clisp.org>
26224
26225         * lib/diffseq.h (struct context): Change type of 'heuristic' field to
26226         'bool'.
26227         (diag, compareseq): Remove const from the ctxt argument.
26228         (USE_HEURISTIC): Undefine at the end.
26229
26230 2007-08-18  Jim Meyering  <jim@meyering.net>
26231
26232         New file: lib/idcache.h
26233         * NEWS: Mention the addition.
26234         * modules/idcache (Files): Add lib/idcache.h
26235         * lib/idcache.c: Include "idcache.h".
26236         Don't include <sys/types.h>.
26237         Add a FIXME comment.
26238         Move file-scoped "static" declarations to the top.
26239         * lib/idcache.h: New file.  Include <sys/types.h> here, instead.
26240
26241 2007-08-17  Bruno Haible  <bruno@clisp.org>
26242         and Paul Eggert  <eggert@cs.ucla.edu>
26243
26244         * MODULES.html.sh: Add diffseq.
26245         * modules/diffseq: New file.
26246         * lib/diffseq.h: New file, from GNU gettext with a few minor changes,
26247         extracted from GNU gettext's fstrcmp.c and GNU diff's analyze.c.
26248
26249 2007-08-15  Paul Eggert  <eggert@cs.ucla.edu>
26250
26251         Import changes from coreutils for bootstrap script.
26252
26253         2007-07-21  Paul Eggert  <eggert@cs.ucla.edu>
26254
26255         * build-aux/bootstrap (slurp): Work even in environments where
26256         "ls" defaults to "ls -A".  Put in a FIXME, though, since the
26257         current code does not slurp files whose names start with ".", and
26258         this looks like it might be a troublesome area.
26259
26260         2007-07-11  Jim Meyering  <jim@meyering.net>
26261
26262         If there's a GPL vN copyright comment, require that N == 3.
26263
26264         2007-07-08  Jim Meyering  <jim@meyering.net>
26265
26266         Run the coreutils-specific code only if tests/Makefile.am.in exists.
26267         * build-aux/bootstrap (mam_template): Move definition out of loop.
26268
26269         Create symlinks for gl/{lib,m4}/*, just as for gnulib/{lib,m4}/*.
26270
26271         * build-aux/bootstrap (symlink_to_dir): Rename function from
26272         symlink_to_gnulib.  Add a directory parameter.  Update all
26273         callers.
26274         (cp_mark_as_generated): Also check for -- and link to -- files in
26275         gl/.
26276
26277         2007-07-08  Jim Meyering  <jim@meyering.net>
26278
26279         Adapt to deeper hierarchy in gnulib.
26280         * build-aux/bootstrap (symlink_to_dir): If the destination
26281         directory doesn't exist, create it. This is required at least for
26282         "lib/uniwidth/cjk.h".
26283
26284         2007-05-15  Jim Meyering  <jim@meyering.net>
26285
26286         * build-aux/bootstrap: Now that generated Makefile.am files
26287         are no longer under version control, they must be created at
26288         bootstrap time.
26289
26290 2007-08-14  Ben Pfaff  <blp@gnu.org>
26291
26292         * lib/count-one-bits.h: Add comments.  From Bruno Haible.
26293
26294 2007-08-14  Paul Eggert  <eggert@cs.ucla.edu>
26295
26296         * lib/count-one-bits.h: Don't include <limits.h>; no longer needed
26297         given the changes below.
26298         (COUNT_ONE_BITS): Use 'verify' rather than 'verify_true'.  Work
26299         even on hosts that have padding bits beyond the supported 64.
26300
26301 2007-08-10  Paul Eggert  <eggert@cs.ucla.edu>
26302
26303         * NEWS: In xstrtol, remove STRTOL_FATAL_ERROR and add xstrtol_fatal.
26304         * lib/xstrtol.h: Don't include exitfail.h; that's now internal to
26305         xstrtol.c.  Include getopt.h, since xstrtol_fatal's signature
26306         depends on it.
26307         (xstrtol_error): Remove.
26308         (xstrtol_fatal): New decl, replacing the functionality of xstrtol_error
26309         but with a different signature.
26310         (ATTRIBUTE_NORETURN, __attribute__): New macros.
26311         * lib/xstrtol-error.c: Include exitfail.h.
26312         (xstrtol_fatal): New function, with a different signature from the
26313         old xstrtol_error, so that the caller need not worry about passing
26314         in an exit status, or about storage management of the option argument.
26315         (xstrtol_error): Now a static function.  Redo signature to
26316         implement xstrtol_fatal.  Output the correct number of hyphens in
26317         front of the option so that the caller need not worry about
26318         storage management.
26319         (N_): New macro.
26320         (_): Remove; not used now.
26321         * modules/xstrtol: Depend on getopt.
26322         * tests/test-xstrtol.c (main): Use new xstrtol_error function instead
26323         of old STRTOL_FATAL_ERROR macro.
26324         * tests/test-xstrtol.sh (t-xstrtol.xo): Adjust to match new behavior
26325         of test program.
26326         * tests/test-xstrtoimax.sh (t-xstrtoimax.xo): Likewise.
26327         * tests/test-xstrtoumax.sh (t-xstrtoumax.xo): Likewise.
26328
26329 2007-08-08  Eric Blake  <ebb9@byu.net>
26330
26331         * lib/xstrtol-error.c: Add missing include.
26332
26333         Move xstrtol messages into gnulib domain, when --pobase is used.
26334         * lib/xstrtol.h (_STRTOL_ERROR): Move messages out of macro...
26335         * lib/xstrtol-error.c (xstrtol_error): ...into new file.
26336         * modules/xstrtol (Files): Distribute new file.
26337         * m4/xstrtol.m4 (gl_XSTRTOL): Build new file.
26338         * lib/xstrtol.c (TESTING_XSTRTO): Move tests...
26339         * tests/test-xstrtol.c: ...into new file.
26340         * tests/test-xstrtoul.c: Also test xstrtoul.
26341         * tests/test-xstrtoimax.c: Also test xstrtoimax.
26342         * tests/test-xstrtoumax.c: Also test xstrtoumax.
26343         * tests/test-xstrtol.sh: Drive the tests.
26344         * tests/test-xstrtoimax.sh: Likewise.
26345         * tests/test-xstrtoumax.sh: Likewise.
26346         * modules/xstrtol-tests: New module.
26347         * modules/xstrtoimax-tests: Likewise.
26348         * modules/xstrtoumax-tests: Likewise.
26349
26350 2007-08-08  Jim Meyering  <jim@meyering.net>
26351
26352         New function: mfile_name_concat.
26353         * lib/filenamecat.c (mfile_name_concat): New function, just like
26354         file_name_concat, but return NULL upon failure rather than exiting
26355         with a diagnostic.
26356         * lib/filenamecat.h: Declare it.
26357
26358 2007-08-07  Bruno Haible  <bruno@clisp.org>
26359
26360         * m4/inttypes.m4 (gl_INTTYPES_H): Use GL_TRIGGER_STDC_LIMIT_MACROS
26361         instead of __STDC_LIMIT_MACROS_TRIGGER. This avoids a redefinition
26362         warning from gcc.
26363         Reported by Eric Blake.
26364
26365 2007-08-07  Simon Josefsson  <simon@josefsson.org>
26366
26367         * modules/crypto/arctwo (License): Use the synonymous term "LGPLv2+".
26368         * modules/crypto/arcfour (License): Likewise.
26369         * modules/crypto/des-tests (License): Likewise.
26370         * modules/crypto/gc-arctwo-tests (License): Likewise.
26371         * modules/crypto/gc-des-tests (License): Likewise.
26372         * modules/crypto/gc-hmac-md5-tests (License): Likewise.
26373         * modules/crypto/gc-hmac-sha1-tests (License): Likewise.
26374         * modules/crypto/gc-md2-tests (License): Likewise.
26375         * modules/crypto/gc-md4-tests (License): Likewise.
26376         * modules/crypto/gc-md5-tests (License): Likewise.
26377         * modules/crypto/gc-pbkdf2-sha1-tests (License): Likewise.
26378         * modules/crypto/gc-rijndael-tests (License): Likewise.
26379         * modules/crypto/gc-sha1-tests (License): Likewise.
26380         * modules/crypto/gc-tests (License): Likewise.
26381         * modules/crypto/hmac-md5 (License): Likewise.
26382         * modules/crypto/hmac-sha1 (License): Likewise.
26383         * modules/crypto/md2-tests (License): Likewise.
26384         * modules/crypto/md4-tests (License): Likewise.
26385         * modules/crypto/md5 (License): Likewise.
26386         * modules/crypto/rijndael (License): Likewise.
26387         * modules/crypto/sha1 (License): Likewise.
26388         * modules/memxor (License): Likewise.
26389
26390 2007-08-06  Paul Eggert  <eggert@cs.ucla.edu>
26391         and Bruno Haible  <bruno@clisp.org>
26392
26393         * NEWS: Describe interface changes to human, xstrtol.
26394         * lib/human.h: Include <xstrtol.h>.
26395         (human_options): Return enum strtol_error, not int.  Remove
26396         bool arg; take int * instead.
26397         * lib/human.c: Don't include "gettext.h".
26398         (_): Remove; no longer used.
26399         Don't include <xstrtol.h>, since human.h does it.
26400         (human_options): Adjust to abovementioned interface changes.
26401         Do not report error to stderr; that's now the caller's
26402         responsibility.
26403         * lib/xstrtol.c (main) [defined TESTING_XSTRTO]: Adjust to
26404         interface change.
26405         * lib/xstrtol.h (_STRTOL_ERROR): Take Option, Arg rather than
26406         Str, Argument_type_string.  All uses changed.  Put " argument"
26407         in diagnostics to make them clearer.  Change wording of suffix
26408         message for clarity.
26409         (STRTOL_FATAL_ERROR): Take Option, Arg rather than Str,
26410         Argument_type_string.
26411         (STRTOL_FATAL_WARN): Remove; no longer used.
26412         * modules/human (Depends-on): Remove gettext-h.
26413
26414 2007-08-06  Simon Josefsson  <simon@josefsson.org>
26415
26416         * build-aux/maint.mk, build-aux/GNUmakefile: Relicense to GPLv3+.
26417
26418 2007-07-31  Bruno Haible  <bruno@clisp.org>
26419
26420         * m4/stdint.m4 (gl_STDINT_H): Test whether WCHAR_MIN and WCHAR_MAX
26421         are defined by <stdint.h> (as opposed to <wchar.h>, as on Dragonfly).
26422         Reported by Joerg Sonnenberger <joerg@britannica.bec.de>.
26423
26424 2007-07-31  Bruno Haible  <bruno@clisp.org>
26425
26426         * lib/fflush.c (rpl_fflush): On BSD systems, use the __SNPT flag.
26427         Suggested by Joerg Sonnenberger <joerg@britannica.bec.de>.
26428
26429 2007-07-30  Bruno Haible  <bruno@clisp.org>
26430
26431         * modules/base64 (License): Use the synonymous term "LGPLv2+".
26432         * modules/c-ctype (License): Likewise.
26433         * modules/c-strcase (License): Likewise.
26434         * modules/check-version (License): Likewise.
26435         * modules/iconv (License): Likewise.
26436         * modules/iconv_open (License): Likewise.
26437         * modules/read-file (License): Likewise.
26438         * modules/striconv (License): Likewise.
26439         * modules/strverscmp (License): Likewise.
26440         * modules/vasprintf (License): Likewise.
26441         * modules/crypto/des (License): Likewise.
26442         * modules/crypto/gc (License): Likewise.
26443         * modules/crypto/gc-arcfour (License): Likewise.
26444         * modules/crypto/gc-arctwo (License): Likewise.
26445         * modules/crypto/gc-des (License): Likewise.
26446         * modules/crypto/gc-hmac-md5 (License): Likewise.
26447         * modules/crypto/gc-hmac-sha1 (License): Likewise.
26448         * modules/crypto/gc-md2 (License): Likewise.
26449         * modules/crypto/gc-md4 (License): Likewise.
26450         * modules/crypto/gc-md5 (License): Likewise.
26451         * modules/crypto/gc-pbkdf2-sha1 (License): Likewise.
26452         * modules/crypto/gc-random (License): Likewise.
26453         * modules/crypto/gc-rijndael (License): Likewise.
26454         * modules/crypto/gc-sha1 (License): Likewise.
26455         * modules/crypto/md2 (License): Likewise.
26456         * modules/crypto/md4 (License): Likewise.
26457
26458 2007-07-30  Jim Meyering  <jim@meyering.net>
26459
26460         * lib/fts.c (fts_read): Upon failure to chdir into a subdirectory,
26461         set fts_info to FTS_DNR, not to FTS_ERR, so that the caller knows
26462         it has valid stat data.  This bug would cause du not to count the
26463         sizes of inaccessible directories.
26464         Patch by Bryan Mason <bmason@redhat.com>, via Jose Maria Plans
26465         in <http://bugzilla.redhat.com/250077>.
26466
26467 2007-07-25  Peter O'Gorman  <peter@pogma.com>
26468             Bruno Haible  <bruno@clisp.org>
26469
26470         * m4/include_next.m4 (gl_INCLUDE_NEXT): Test whether #include_next
26471         really works. Needed because AIX 4.3 "xlc -E" doesn't understand
26472         #include_next, gives a diagnostic about it, but reports no error in
26473         the exit code.
26474         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
26475
26476 2007-07-24  Ben Pfaff  <blp@gnu.org>
26477
26478         Improve name: "count-one-bits" is better than "popcount".
26479         * MODULES.html.sh: Update name.
26480         * lib/popcount.h: Renamed lib/count-one-bits.h.
26481         (popcount): Renamed count_one_bits.
26482         (popcountl): Renamed count_one_bits_l.
26483         (popcountll): Renamed count_one_bits_ll.
26484         * m4/popcount.m4: Renamed m4/count-one-bits.m4.
26485         * modules/popcount: Renamed module/count-one-bits.
26486         * modules/popcount-tests: Renamed module/count-one-bits-tests.
26487         * tests/test-popcount.c: Renamed tests/test-count-one-bits.c.
26488
26489 2007-07-23  Ben Pfaff  <blp@gnu.org>
26490
26491         * lib/popcount.h (popcount32): Reduce size of constants, to allow
26492         better code generation, and add U to large constants to avoid
26493         warnings, in non-GCC case.
26494         Suggested by Bruno Haible.
26495
26496 2007-07-23  Ben Pfaff  <blp@gnu.org>
26497
26498         * lib/popcount.h: Use verify_true instead of if...abort.
26499         * modules/popcount: Depend on verify module.
26500         Suggested by Jim Meyering.
26501
26502 2007-07-23  Bruno Haible  <bruno@clisp.org>
26503
26504         * gnulib-tool (func_import): Create a .cvsignore file also when the
26505         directory is not yet in CVS but the toplevel directory is. When
26506         creating a .cvsignore file, add ".deps" and ".dirstamp" to it.
26507         Reported by Karl Berry.
26508
26509 2007-07-22  Ben Pfaff  <blp@gnu.org>
26510
26511         * lib/popcount.h: Use faster, branchless algorithm for non-GCC
26512         case.
26513         Suggested by Eric Blake.
26514
26515 2007-07-22  Ben Pfaff  <blp@gnu.org>
26516
26517         New module: popcount.
26518         * MODULES.html.sh: Add popcount.
26519         * modules/popcount: New file.
26520         * modules/popcount-tests: New file.
26521         * tests/test-popcount.c: New file.
26522         * lib/popcount.h: New file.
26523         * m4/popcount.m4: New file.
26524
26525 2007-07-22  Paul Eggert  <eggert@cs.ucla.edu>
26526
26527         * build-aux/announce-gen: Update to GPLv3.
26528
26529         * build-aux/config.guess: Update from config.
26530
26531 2007-07-21  Bruno Haible  <bruno@clisp.org>
26532
26533         * lib/error.c (_) [ENABLE_NLS]: Define to gettext.
26534         * lib/verror.c (_) [ENABLE_NLS]: Likewise.
26535
26536 2007-07-20  Jim Meyering  <jim@meyering.net>
26537
26538         * check-module: Diagnose a self-dependency.
26539
26540 2007-07-19  Bruno Haible  <bruno@clisp.org>
26541
26542         * gnulib-tool (func_import): Don't abort if pobase or po_domain is
26543         empty.
26544         Reported by Eric Blake.
26545
26546 2007-07-18  Bruno Haible  <bruno@clisp.org>
26547
26548         * gnulib-tool: New options --po-base, --po-domain.
26549         (func_usage): Document them.
26550         (pobase, po_domain): New variables.
26551         (func_emit_lib_Makefile_am): Augment AM_CPPFLAGS, defining
26552         DEFAULT_TEXT_DOMAIN.
26553         (func_emit_po_Makevars, func_emit_po_POTFILES_in): New functions.
26554         (func_import): Consider pobase and po_domain. Create a po/ directory.
26555         (func_create_testdir): Set pobase and po_domain to empty.
26556         * build-aux/po/Makefile.in.in: New file, from GNU gettext 0.16.1.
26557         * build-aux/po/remove-potcdate.sin: New file, from GNU gettext 0.16.1.
26558
26559 2007-07-18  Bruno Haible  <bruno@clisp.org>
26560
26561         * gnulib-tool (func_get_automake_snippet): Synthesize also an
26562         EXTRA_DIST augmentation for files in build-aux/.
26563
26564 2007-07-16  Bruno Haible  <bruno@clisp.org>
26565
26566         * modules/lseek (License): Use the synonymous term "LGPLv2+".
26567         * modules/getdelim (License): Likewise.
26568
26569 2007-07-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
26570
26571         * modules/arpa_inet (License): Use the synonymous term LGPLv2+.
26572         * modules/d-type (License): Likewise.
26573         * modules/extensions (License): Likewise.
26574         * modules/fnmatch (License): Likewise.
26575         * modules/fseeko (License): Likewise.
26576         * modules/getaddrinfo (License): Likewise.
26577         * modules/getline (License): Likewise.
26578         * modules/getlogin_r (License): Likewise.
26579         * modules/getpass (License): Likewise.
26580         * modules/gettimeofday (License): Likewise.
26581         * modules/glob (License): Likewise.
26582         * modules/inet_ntop (License): Likewise.
26583         * modules/malloc (License): Likewise.
26584         * modules/malloca (License): Likewise.
26585         * modules/memmem (License): Likewise.
26586         * modules/mempcpy (License): Likewise.
26587         * modules/memset (License): Likewise.
26588         * modules/minmax (License): Likewise.
26589         * modules/mktime (License): Likewise.
26590         * modules/netinet_in (License): Likewise.
26591         * modules/pathmax (License): Likewise.
26592         * modules/poll (License): Likewise.
26593         * modules/regex (License): Likewise.
26594         * modules/snprintf (License): Likewise.
26595         * modules/stdbool (License): Likewise.
26596         * modules/stdint (License): Likewise.
26597         * modules/stdio (License): Likewise.
26598         * modules/strcase (License): Likewise.
26599         * modules/strcasestr (License): Likewise.
26600         * modules/strdup (License): Likewise.
26601         * modules/string (License): Likewise.
26602         * modules/strndup (License): Likewise.
26603         * modules/strnlen (License): Likewise.
26604         * modules/strpbrk (License): Likewise.
26605         * modules/strptime (License): Likewise.
26606         * modules/strsep (License): Likewise.
26607         * modules/sys_select (License): Likewise.
26608         * modules/sys_socket (License): Likewise.
26609         * modules/sys_stat (License): Likewise.
26610         * modules/sys_time (License): Likewise.
26611         * modules/time (License): Likewise.
26612         * modules/time_r (License): Likewise.
26613         * modules/timegm (License): Likewise.
26614         * modules/unistd (License): Likewise.
26615         * modules/vsnprintf (License): Likewise.
26616         * modules/wctype (License): Likewise.
26617
26618 2007-07-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26619
26620         * modules/argz (License): LGPLv2+.
26621
26622 2007-07-15  Karl Berry  <karl@gnu.org>
26623
26624         * doc/gnulib.texi: revise node structure per new fdl.texi.
26625
26626 2007-07-14  Bruno Haible  <bruno@clisp.org>
26627
26628         * lib/uniname/gen-uninames.lisp (main): Emit a "do not edit" line to
26629         the output file.
26630         * lib/uniname/uninames.h: Regenerated.
26631
26632 2007-07-14  Karl Berry  <karl@gnu.org>
26633
26634         * doc/*gpl*.texi, doc/fdl.texi: new versions, consistently
26635         omitting sectioning and index commands.
26636
26637 2007-07-13  Bruno Haible  <bruno@clisp.org>
26638
26639         New gnulib-tool option --more-symlinks.
26640         * gnulib-tool (func_usage): Document --more-symlinks.
26641         (do_copyrights): New variable.
26642         Recognize option --more-symlinks.
26643         (func_import): Don't add a copyright notice transform to
26644         sed_transform_lib_file if do_copyrights is empty.
26645
26646 2007-07-13  Bruno Haible  <bruno@clisp.org>
26647
26648         * lib/vasnprintf.c (decimal_point_char): Define also if
26649         (NEED_PRINTF_LONG_DOUBLE || NEED_PRINTF_INFINITE_DOUBLE)
26650         && !NEED_PRINTF_DIRECTIVE_A.
26651         Reported by Clemens Koller <clemens.koller@anagramm.de> via
26652         Gary V. Vaughan <gary@gnu.org>.
26653
26654 2007-07-13  Paul Eggert  <eggert@cs.ucla.edu>
26655
26656         * lib/inttypes_.h: Undo previous change, since it was fixed
26657         in a different way in the 2007-07-02 fix to m4/inttypes.m4.
26658
26659 2007-07-13  Bruno Haible  <bruno@clisp.org>
26660
26661         * lib/stdint_.h: Fix typo: _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H was
26662         misspelled as _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H.
26663
26664 2007-07-13  Jim Meyering  <jim@meyering.net>
26665
26666         df: Don't fail for Tru64's "file-on-file mount".
26667         * m4/fsusage.m4 (gl_FSUSAGE): Reject Tru64's buggy statvfs,
26668         so we fall through and use statfs instead.  Details here:
26669         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/10878>
26670         Reported by Albert Chin.
26671
26672 2007-07-13  Bruno Haible  <bruno@clisp.org>
26673
26674         * modules/alloca-opt (License): Use the synonymous term "LGPLv2+".
26675         * modules/configmake (License): Likewise.
26676         * modules/gettext (License): Likewise.
26677         * modules/gettext-h (License): Likewise.
26678         * modules/include_next (License): Likewise.
26679         * modules/link-warning (License): Likewise.
26680         * modules/localcharset (License): Likewise.
26681         * modules/localename (License): Likewise.
26682         * modules/lock (License): Likewise.
26683         * modules/relocatable-lib-lgpl (License): Likewise.
26684         * modules/size_max (License): Likewise.
26685         * modules/vasnprintf (License): Likewise.
26686         * modules/wchar (License): Likewise.
26687         * modules/xsize (License): Likewise.
26688
26689 2007-07-13  Bruno Haible  <bruno@clisp.org>
26690
26691         * gnulib-tool (func_import): Treat LGPLv2 as synonymous to LGPL.
26692         (func_create_testdir): Handle copying terms "GPLv2+" and "LGPLv2+".
26693
26694 2007-07-12  Bruno Haible  <bruno@clisp.org>
26695
26696         * doc/gnulib-intro.texi (Copyright): Clarify the license abbreviations
26697         in the modules files.
26698
26699 2007-07-11  Karl Berry  <karl@gnu.org>
26700
26701         * MODULES.html.sh (func_module): use
26702          sed -e '\|^'"${includefile}"'$|d'
26703          instead of /.../d, to avoid errors on $includefile's containing /.
26704
26705 2007-07-10  Sergey Poznyakoff  <gray@gnu.org.ua>
26706
26707         * gnulib-tool (func_import): Avoid duplication of --avoid
26708         statements
26709         (func_dest_tmpfilename,func_create_testdir): Translate `-' in file
26710         names to `_' in variable names.
26711
26712 2007-07-10  Eric Blake  <ebb9@byu.net>
26713
26714         * lib/version-etc.c (version_etc_va): Default to GPLv3+.
26715         * NEWS: Document this change.
26716
26717 2007-07-08  Bruno Haible  <bruno@clisp.org>
26718
26719         Update to Unicode 5.0.
26720         * lib/uniwidth/width.c (nonspacing_table_data): Add U+00AD,
26721         U+0350..U+035F, U+05A2, U+05BA, U+05C5, U+05C7, U+0600..U+0603,
26722         U+0610..U+0615, U+0656..U+065E, U+07EB..U+07F3, U+0A01, U+0AE2..U+0AE3,
26723         U+0CBC. Remove U+0CBF, U+0CC6. Add U+0CE2..U+0CE3, U+135F,
26724         U+17B4..U+17B5, U+17DD. Remove U+180E. Add U+1920..U+1922,
26725         U+1927..U+192B, U+1932, U+1939..U+193B, U+1A17..U+1A18, U+1B00..U+1B03,
26726         U+1B34, U+1B36..U+1B3A, U+1B3C, U+1B42, U+1B6B..U+1B73, U+1DC0..U+1DCA,
26727         U+1DFE..U+1DFF, U+20EB..U+20EF, U+A802, U+A806, U+A80B, U+A825..U+A826,
26728         U+10A01..U+10A03, U+10A05..U+10A06, U+10A0C..U+10A0F, U+10A38..U+10A3A,
26729         U+10A3F, U+1D242..U+1D244.
26730         (nonspacing_table_ind): Update.
26731         (uc_width): Assign width 0 to U+E0100..U+E01EF. Assign width 1 to
26732         U+4DC0..U+4DFF. Assign width 2 to U+2329..U+232A, U+FE10..U+FE1F.
26733
26734 2007-07-08  Bruno Haible  <bruno@clisp.org>
26735
26736         Update to Unicode 5.0.
26737         * lib/uniname/gen-uninames.lisp (main): Add the range 0x12xxx to the
26738         code transform. Extend the name index field of unicode_name_to_code and
26739         unicode_code_to_name from 16 to 24 bits.
26740         * lib/uniname/uniname.c (unicode_character_name,
26741         unicode_name_character): Add the range 0x12xxx to the code transform.
26742         * lib/uniname/uninames.h: Regenerated.
26743         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.0.
26744
26745 2007-07-07  Bruno Haible  <bruno@clisp.org>
26746
26747         * modules/wcwidth-tests: New file.
26748         * tests/test-wcwidth.c: New file.
26749
26750         Work around MacOS X wcwidth() bug.
26751         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Test against MacOS X 10.3 bug.
26752         * lib/wcwidth.c: Include localcharset.h, streq.h, uniwidth.h.
26753         (rpl_wcwidth): Special-case the UTF-8 locales. Fall back to the
26754         original wcwidth in non-UTF-8 locales.
26755         * modules/wcwidth (Depends-on): Add localcharset, streq,
26756         uniwidth/width.
26757         * doc/functions/wcwidth.texi: Update.
26758
26759 2007-07-07  Bruno Haible  <bruno@clisp.org>
26760
26761         * lib/wchar_.h: Include the GL_LINK_WARNING macro.
26762         (wcwidth): New declaration.
26763         * m4/wchar.m4 (gl_WCHAR_MODULE_INDICATOR, gl_WCHAR_H_DEFAULTS): New
26764         macros.
26765         (gl_WCHAR_H): Require gl_WCHAR_H_DEFAULTS. Don't set WCHAR_H to empty
26766         here. Prepare for creating <wchar.h> unconditionally.
26767         * modules/wchar (Depends-on): Add link-warning.
26768         (Makefile.am): Substitute also GNULIB_WCWIDTH, HAVE_DECL_WCWIDTH,
26769         REPLACE_WCWIDTH, and GL_LINK_WARNING.
26770         * lib/wcwidth.h: Remove file.
26771         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gl_WCHAR_H_DEFAULTS. Set
26772         HAVE_DECL_WCWIDTH, REPLACE_WCWIDTH, WCHAR_H.
26773         * modules/wcwidth (Files): Remove lib/wcwidth.h.
26774         (configure.ac): Invoke gl_WCHAR_MODULE_INDICATOR.
26775         (Include): Replace wcwidth.h with <wchar.h>.
26776         * lib/wcwidth.c: Include <wchar.h> instead of wcwidth.h.
26777         * lib/mbchar.h: Don't include wcwidth.h.
26778         * lib/mbswidth.c: Likewise.
26779         * NEWS: Mention the change.
26780
26781 2007-07-07  Bruno Haible  <bruno@clisp.org>
26782
26783         * lib/wcwidth.c: New file, extracted from lib/wcwidth.h.
26784         * lib/wcwidth.h: Don't include wctype.h. Replace inline function
26785         definition with an external declaration.
26786         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Use wcwidth.c when wcwidth is not
26787         defined as a function. Remove AC_C_INLINE requirement.
26788         * modules/wcwidth (Files): Add lib/wcwidth.c.
26789         (Makefile.am): Remove redundant statement.
26790
26791 2007-07-07  Bruno Haible  <bruno@clisp.org>
26792
26793         * MODULES.html.sh (Unicode string functions): Add the new modules.
26794
26795         * tests/uniwidth/test-u32-strwidth.c: New file.
26796         * modules/uniwidth/u32-strwidth-tests: New file.
26797
26798         * lib/uniwidth/u32-strwidth.c: New file.
26799         * modules/uniwidth/u32-strwidth: New file.
26800
26801         * tests/uniwidth/test-u16-strwidth.c: New file.
26802         * modules/uniwidth/u16-strwidth-tests: New file.
26803
26804         * lib/uniwidth/u16-strwidth.c: New file.
26805         * modules/uniwidth/u16-strwidth: New file.
26806
26807         * tests/uniwidth/test-u8-strwidth.c: New file.
26808         * modules/uniwidth/u8-strwidth-tests: New file.
26809
26810         * lib/uniwidth/u8-strwidth.c: New file.
26811         * modules/uniwidth/u8-strwidth: New file.
26812
26813         * tests/uniwidth/test-u32-width.c: New file.
26814         * modules/uniwidth/u32-width-tests: New file.
26815
26816         * lib/uniwidth/u32-width.c: New file.
26817         * modules/uniwidth/u32-width: New file.
26818
26819         * tests/uniwidth/test-u16-width.c: New file.
26820         * modules/uniwidth/u16-width-tests: New file.
26821
26822         * lib/uniwidth/u16-width.c: New file.
26823         * modules/uniwidth/u16-width: New file.
26824
26825         * tests/uniwidth/test-u8-width.c: New file.
26826         * modules/uniwidth/u8-width-tests: New file.
26827
26828         * lib/uniwidth/u8-width.c: New file.
26829         * modules/uniwidth/u8-width: New file.
26830
26831         * tests/uniwidth/test-uc_width.c: New file.
26832         * modules/uniwidth/width-tests: New file.
26833
26834         * lib/uniwidth/width.c: New file, from GNU libiconv.
26835         * lib/uniwidth/cjk.h: New file, from GNU libiconv.
26836         * modules/uniwidth/width: New file.
26837
26838         * lib/uniwidth.h: New file, from GNU libiconv.
26839         * modules/uniwidth/base: New file.
26840
26841 2007-07-07  Bruno Haible  <bruno@clisp.org>
26842
26843         * lib/uniname.h: New file, from GNU gettext.
26844         * lib/uniname/gen-uninames.lisp: New file, from GNU gettext.
26845         * lib/uniname/uninames.h: New file, from GNU gettext.
26846         * lib/uniname/uniname.c: New file, from GNU gettext.
26847         * tests/uniname/test-uninames.sh: New file.
26848         * tests/uniname/test-uninames.c: New file, from GNU gettext.
26849         * tests/uniname/UnicodeDataNames.txt: New file, from GNU gettext.
26850         * modules/uniname/base: New file.
26851         * modules/uniname/uniname: New file.
26852         * modules/uniname/uniname-tests: New file.
26853         * MODULES.html.sh (Unicode string functions): Add the new modules.
26854
26855 2007-07-06  Bruno Haible  <bruno@clisp.org>
26856
26857         * doc/Makefile (TEXI2HTML): Specify a --reference-limit.
26858
26859 2007-07-06  Bruno Haible  <bruno@clisp.org>
26860
26861         * lib/sys_time_.h: Use a recursion-safe inclusion guard rather than
26862         a split double-inclusion guard. Needed for cygwin, where <sys/time.h>
26863         includes <cygwin/sys_time.h> which includes <sys/select.h> which
26864         include <sys/time.h>.
26865         Reported by Eric Blake.
26866
26867 2007-07-06  Eric Blake  <ebb9@byu.net>
26868
26869         Fix testing canonicalize on cygwin.
26870         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
26871         Revert patch from 2007-06-19.
26872         * tests/test-canonicalize-lgpl.c (main): Instead, skip test when
26873         canonicalize module is also in use.
26874         * tests/test-canonicalize.c: New file.
26875         * tests/test-canonicalize.sh: Likewise.
26876         * modules/canonicalize-tests: Likewise.
26877
26878 2007-07-06  Jim Meyering  <jim@meyering.net>
26879
26880         * lib/getugroups.c (getugroups): Detect getgrent failure.
26881         Adjust comment to reflect reality: this function may return -1.
26882
26883 2007-07-05  Sergey Poznyakoff  <gray@gnu.org.ua>
26884
26885         * build-aux/bootstrap (TP_URL,get_translations): Update to use
26886         the new TP address.
26887         (usage): Fix typo
26888         (gnulib_mk): New variable.
26889
26890 2007-07-05  Jim Meyering  <jim@meyering.net>
26891
26892         Don't let endgrent clobber errno, no matter how improbable.
26893         * lib/getugroups.c (getugroups): Save and restore errno around
26894         endgrent call.
26895
26896         Close the group DB even when failing with 2^31 or more members.
26897         * lib/getugroups.c (getugroups): Don't return without calling endgrent.
26898
26899 2007-07-04  Jim Meyering  <jim@meyering.net>
26900
26901         * lib/getugroups.h: New file.
26902         * lib/getugroups.c: Include "getugroups.h".
26903         Remove uses of "register" keyword.
26904         Move local variable, "cp", down into scope where used.
26905         Give "username" parameter the "const" attribute.
26906         * modules/getugroups (Files): Add lib/getugroups.h
26907
26908 2007-07-04  Karl Berry  <karl@gnu.org>
26909
26910         * MODULES.html.sh (func_all_modules): Complete rename of
26911         gpl/lgpl to gpl-2.0 and lgpl-2.1, and add gpl-3.0.
26912
26913 2007-07-02  Bruno Haible  <bruno@clisp.org>
26914
26915         * m4/inttypes.m4 (gl_INTTYPES_H): Define __STDC_LIMIT_MACROS in C++
26916         mode, when inttypes.h comes from gnulib.
26917         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
26918
26919 2007-07-02  Simon Josefsson  <simon@josefsson.org>
26920
26921         * NEWS: Mention lgpl module name change.
26922
26923         * modules/lgpl-2.1: Renamed from lgpl.
26924
26925         * NEWS: Mention gpl module name change.
26926
26927         * modules/gpl-3.0: New file, based on gpl-2.0.
26928
26929         * modules/gpl-2.0: Renamed from gpl.
26930
26931         * modules/gpl: Fix filename, doc/gpl.texi is now found at
26932         doc/gpl-2.0.texi.
26933
26934 2007-07-02  Paul Eggert  <eggert@cs.ucla.edu>
26935
26936         * lib/inttypes_.h [defined __cplusplus&&!defined __STDC_LIMIT_MACROS]:
26937         #define __STDC_LIMIT_MACROS temporarily while including
26938         <stdint.h>, so that __STDC_LIMIT_MACROS is defined.
26939         Problem reported by Joel E. Denny in
26940         <http://lists.gnu.org/archive/html/bug-gnulib/2007-07/msg00008.html>.
26941
26942 2007-07-01  Bruno Haible  <bruno@clisp.org>
26943
26944         * lib/unistdio.h: New file.
26945         * lib/unistdio/u-asnprintf.h: New file.
26946         * lib/unistdio/u-asprintf.h: New file.
26947         * lib/unistdio/u-printf-args.c: New file.
26948         * lib/unistdio/u-printf-args.h: New file.
26949         * lib/unistdio/u-printf-parse.h: New file.
26950         * lib/unistdio/u-snprintf.h: New file.
26951         * lib/unistdio/u-sprintf.h: New file.
26952         * lib/unistdio/u-vasprintf.h: New file.
26953         * lib/unistdio/u-vsnprintf.h: New file.
26954         * lib/unistdio/u-vsprintf.h: New file.
26955         * lib/unistdio/ulc-asnprintf.c: New file.
26956         * lib/unistdio/ulc-asprintf.c: New file.
26957         * lib/unistdio/ulc-fprintf.c: New file, based on lib/fprintf.c.
26958         * lib/unistdio/ulc-printf-parse.c: New file.
26959         * lib/unistdio/ulc-snprintf.c: New file.
26960         * lib/unistdio/ulc-sprintf.c: New file.
26961         * lib/unistdio/ulc-vasnprintf.c: New file.
26962         * lib/unistdio/ulc-vasprintf.c: New file.
26963         * lib/unistdio/ulc-vfprintf.c: New file, based on lib/vfprintf.c.
26964         * lib/unistdio/ulc-vsnprintf.c: New file.
26965         * lib/unistdio/ulc-vsprintf.c: New file.
26966         * lib/unistdio/u8-asnprintf.c: New file.
26967         * lib/unistdio/u8-asprintf.c: New file.
26968         * lib/unistdio/u8-printf-parse.c: New file.
26969         * lib/unistdio/u8-snprintf.c: New file.
26970         * lib/unistdio/u8-sprintf.c: New file.
26971         * lib/unistdio/u8-vasnprintf.c: New file.
26972         * lib/unistdio/u8-vasprintf.c: New file.
26973         * lib/unistdio/u8-vsnprintf.c: New file.
26974         * lib/unistdio/u8-vsprintf.c: New file.
26975         * lib/unistdio/u8-u8-asnprintf.c: New file.
26976         * lib/unistdio/u8-u8-asprintf.c: New file.
26977         * lib/unistdio/u8-u8-snprintf.c: New file.
26978         * lib/unistdio/u8-u8-sprintf.c: New file.
26979         * lib/unistdio/u8-u8-vasnprintf.c: New file.
26980         * lib/unistdio/u8-u8-vasprintf.c: New file.
26981         * lib/unistdio/u8-u8-vsnprintf.c: New file.
26982         * lib/unistdio/u8-u8-vsprintf.c: New file.
26983         * lib/unistdio/u16-asnprintf.c: New file.
26984         * lib/unistdio/u16-asprintf.c: New file.
26985         * lib/unistdio/u16-printf-parse.c: New file.
26986         * lib/unistdio/u16-snprintf.c: New file.
26987         * lib/unistdio/u16-sprintf.c: New file.
26988         * lib/unistdio/u16-vasnprintf.c: New file.
26989         * lib/unistdio/u16-vasprintf.c: New file.
26990         * lib/unistdio/u16-vsnprintf.c: New file.
26991         * lib/unistdio/u16-vsprintf.c: New file.
26992         * lib/unistdio/u16-u16-asnprintf.c: New file.
26993         * lib/unistdio/u16-u16-asprintf.c: New file.
26994         * lib/unistdio/u16-u16-snprintf.c: New file.
26995         * lib/unistdio/u16-u16-sprintf.c: New file.
26996         * lib/unistdio/u16-u16-vasnprintf.c: New file.
26997         * lib/unistdio/u16-u16-vasprintf.c: New file.
26998         * lib/unistdio/u16-u16-vsnprintf.c: New file.
26999         * lib/unistdio/u16-u16-vsprintf.c: New file.
27000         * lib/unistdio/u32-asnprintf.c: New file.
27001         * lib/unistdio/u32-asprintf.c: New file.
27002         * lib/unistdio/u32-printf-parse.c: New file.
27003         * lib/unistdio/u32-snprintf.c: New file.
27004         * lib/unistdio/u32-sprintf.c: New file.
27005         * lib/unistdio/u32-vasnprintf.c: New file.
27006         * lib/unistdio/u32-vasprintf.c: New file.
27007         * lib/unistdio/u32-vsnprintf.c: New file.
27008         * lib/unistdio/u32-vsprintf.c: New file.
27009         * lib/unistdio/u32-u32-asnprintf.c: New file.
27010         * lib/unistdio/u32-u32-asprintf.c: New file.
27011         * lib/unistdio/u32-u32-snprintf.c: New file.
27012         * lib/unistdio/u32-u32-sprintf.c: New file.
27013         * lib/unistdio/u32-u32-vasnprintf.c: New file.
27014         * lib/unistdio/u32-u32-vasprintf.c: New file.
27015         * lib/unistdio/u32-u32-vsnprintf.c: New file.
27016         * lib/unistdio/u32-u32-vsprintf.c: New file.
27017         * tests/unistdio/test-ulc-asnprintf1.c: New file.
27018         * tests/unistdio/test-ulc-asnprintf1.h: New file.
27019         * tests/unistdio/test-ulc-printf1.h: New file.
27020         * tests/unistdio/test-ulc-vasnprintf1.c: New file.
27021         * tests/unistdio/test-ulc-vasnprintf2.c: New file.
27022         * tests/unistdio/test-ulc-vasnprintf2.sh: New file.
27023         * tests/unistdio/test-ulc-vasnprintf3.c: New file.
27024         * tests/unistdio/test-ulc-vasnprintf3.sh: New file.
27025         * tests/unistdio/test-ulc-vasprintf1.c: New file.
27026         * tests/unistdio/test-ulc-vsnprintf1.c: New file.
27027         * tests/unistdio/test-ulc-vsprintf1.c: New file.
27028         * tests/unistdio/test-u8-asnprintf1.c: New file.
27029         * tests/unistdio/test-u8-asnprintf1.h: New file.
27030         * tests/unistdio/test-u8-printf1.h: New file.
27031         * tests/unistdio/test-u8-vasnprintf1.c: New file.
27032         * tests/unistdio/test-u8-vasnprintf2.c: New file.
27033         * tests/unistdio/test-u8-vasnprintf2.sh: New file.
27034         * tests/unistdio/test-u8-vasnprintf3.c: New file.
27035         * tests/unistdio/test-u8-vasnprintf3.sh: New file.
27036         * tests/unistdio/test-u8-vasprintf1.c: New file.
27037         * tests/unistdio/test-u8-vsnprintf1.c: New file.
27038         * tests/unistdio/test-u8-vsprintf1.c: New file.
27039         * tests/unistdio/test-u16-asnprintf1.c: New file.
27040         * tests/unistdio/test-u16-asnprintf1.h: New file.
27041         * tests/unistdio/test-u16-printf1.h: New file.
27042         * tests/unistdio/test-u16-vasnprintf1.c: New file.
27043         * tests/unistdio/test-u16-vasnprintf2.c: New file.
27044         * tests/unistdio/test-u16-vasnprintf2.sh: New file.
27045         * tests/unistdio/test-u16-vasnprintf3.c: New file.
27046         * tests/unistdio/test-u16-vasnprintf3.sh: New file.
27047         * tests/unistdio/test-u16-vasprintf1.c: New file.
27048         * tests/unistdio/test-u16-vsnprintf1.c: New file.
27049         * tests/unistdio/test-u16-vsprintf1.c: New file.
27050         * tests/unistdio/test-u32-asnprintf1.c: New file.
27051         * tests/unistdio/test-u32-asnprintf1.h: New file.
27052         * tests/unistdio/test-u32-printf1.h: New file.
27053         * tests/unistdio/test-u32-vasnprintf1.c: New file.
27054         * tests/unistdio/test-u32-vasnprintf2.c: New file.
27055         * tests/unistdio/test-u32-vasnprintf2.sh: New file.
27056         * tests/unistdio/test-u32-vasnprintf3.c: New file.
27057         * tests/unistdio/test-u32-vasnprintf3.sh: New file.
27058         * tests/unistdio/test-u32-vasprintf1.c: New file.
27059         * tests/unistdio/test-u32-vsnprintf1.c: New file.
27060         * tests/unistdio/test-u32-vsprintf1.c: New file.
27061         * modules/unistdio/base: New file.
27062         * modules/unistdio/u-printf-args: New file.
27063         * modules/unistdio/ulc-asnprintf: New file.
27064         * modules/unistdio/ulc-asprintf: New file.
27065         * modules/unistdio/ulc-fprintf: New file.
27066         * modules/unistdio/ulc-printf-parse: New file.
27067         * modules/unistdio/ulc-snprintf: New file.
27068         * modules/unistdio/ulc-sprintf: New file.
27069         * modules/unistdio/ulc-vasnprintf: New file.
27070         * modules/unistdio/ulc-vasprintf: New file.
27071         * modules/unistdio/ulc-vfprintf: New file.
27072         * modules/unistdio/ulc-vsnprintf: New file.
27073         * modules/unistdio/ulc-vsprintf: New file.
27074         * modules/unistdio/u8-asnprintf: New file.
27075         * modules/unistdio/u8-asprintf: New file.
27076         * modules/unistdio/u8-printf-parse: New file.
27077         * modules/unistdio/u8-snprintf: New file.
27078         * modules/unistdio/u8-sprintf: New file.
27079         * modules/unistdio/u8-vasnprintf: New file.
27080         * modules/unistdio/u8-vasprintf: New file.
27081         * modules/unistdio/u8-vsnprintf: New file.
27082         * modules/unistdio/u8-vsprintf: New file.
27083         * modules/unistdio/u8-u8-asnprintf: New file.
27084         * modules/unistdio/u8-u8-asprintf: New file.
27085         * modules/unistdio/u8-u8-snprintf: New file.
27086         * modules/unistdio/u8-u8-sprintf: New file.
27087         * modules/unistdio/u8-u8-vasnprintf: New file.
27088         * modules/unistdio/u8-u8-vasprintf: New file.
27089         * modules/unistdio/u8-u8-vsnprintf: New file.
27090         * modules/unistdio/u8-u8-vsprintf: New file.
27091         * modules/unistdio/u16-asnprintf: New file.
27092         * modules/unistdio/u16-asprintf: New file.
27093         * modules/unistdio/u16-printf-parse: New file.
27094         * modules/unistdio/u16-snprintf: New file.
27095         * modules/unistdio/u16-sprintf: New file.
27096         * modules/unistdio/u16-vasnprintf: New file.
27097         * modules/unistdio/u16-vasprintf: New file.
27098         * modules/unistdio/u16-vsnprintf: New file.
27099         * modules/unistdio/u16-vsprintf: New file.
27100         * modules/unistdio/u16-u16-asnprintf: New file.
27101         * modules/unistdio/u16-u16-asprintf: New file.
27102         * modules/unistdio/u16-u16-snprintf: New file.
27103         * modules/unistdio/u16-u16-sprintf: New file.
27104         * modules/unistdio/u16-u16-vasnprintf: New file.
27105         * modules/unistdio/u16-u16-vasprintf: New file.
27106         * modules/unistdio/u16-u16-vsnprintf: New file.
27107         * modules/unistdio/u16-u16-vsprintf: New file.
27108         * modules/unistdio/u32-asnprintf: New file.
27109         * modules/unistdio/u32-asprintf: New file.
27110         * modules/unistdio/u32-printf-parse: New file.
27111         * modules/unistdio/u32-snprintf: New file.
27112         * modules/unistdio/u32-sprintf: New file.
27113         * modules/unistdio/u32-vasnprintf: New file.
27114         * modules/unistdio/u32-vasprintf: New file.
27115         * modules/unistdio/u32-vsnprintf: New file.
27116         * modules/unistdio/u32-vsprintf: New file.
27117         * modules/unistdio/u32-u32-asnprintf: New file.
27118         * modules/unistdio/u32-u32-asprintf: New file.
27119         * modules/unistdio/u32-u32-snprintf: New file.
27120         * modules/unistdio/u32-u32-sprintf: New file.
27121         * modules/unistdio/u32-u32-vasnprintf: New file.
27122         * modules/unistdio/u32-u32-vasprintf: New file.
27123         * modules/unistdio/u32-u32-vsnprintf: New file.
27124         * modules/unistdio/u32-u32-vsprintf: New file.
27125         * modules/unistdio/ulc-asnprintf-tests: New file.
27126         * modules/unistdio/ulc-vasnprintf-tests: New file.
27127         * modules/unistdio/ulc-vasprintf-tests: New file.
27128         * modules/unistdio/ulc-vsnprintf-tests: New file.
27129         * modules/unistdio/ulc-vsprintf-tests: New file.
27130         * modules/unistdio/u8-asnprintf-tests: New file.
27131         * modules/unistdio/u8-vasnprintf-tests: New file.
27132         * modules/unistdio/u8-vasprintf-tests: New file.
27133         * modules/unistdio/u8-vsnprintf-tests: New file.
27134         * modules/unistdio/u8-vsprintf-tests: New file.
27135         * modules/unistdio/u16-asnprintf-tests: New file.
27136         * modules/unistdio/u16-vasnprintf-tests: New file.
27137         * modules/unistdio/u16-vasprintf-tests: New file.
27138         * modules/unistdio/u16-vsnprintf-tests: New file.
27139         * modules/unistdio/u16-vsprintf-tests: New file.
27140         * modules/unistdio/u32-asnprintf-tests: New file.
27141         * modules/unistdio/u32-vasnprintf-tests: New file.
27142         * modules/unistdio/u32-vasprintf-tests: New file.
27143         * modules/unistdio/u32-vsnprintf-tests: New file.
27144         * modules/unistdio/u32-vsprintf-tests: New file.
27145         * MODULES.html.sh (Unicode string functions): Add the new modules.
27146
27147 2007-07-01  Bruno Haible  <bruno@clisp.org>
27148
27149         * lib/sprintf.c (sprintf): Limit the available length estimation,
27150         to avoid address wraparound.
27151         * lib/vsprintf.c (vsprintf): Likewise.
27152         * modules/sprintf-posix (Dependencies): Add stdint.
27153         * modules/vsprintf-posix (Dependencies): Likewise.
27154
27155 2007-07-01  Bruno Haible  <bruno@clisp.org>
27156
27157         * gnulib-tool (self_abspathname): Determine PATH_SEPARATOR and handle
27158         Windows PATH as well. Conservative double-quoting. Comments.
27159
27160 2007-07-01  Bruno Haible  <bruno@clisp.org>
27161             Eric Blake  <ebb9@byu.net>
27162             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
27163
27164         * gnulib-tool (self_abspathname): Fix algorithm to cope with
27165         empty components in $PATH, denoting '.'.
27166
27167 2007-07-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
27168
27169         * gnulib-tool: Fix indentation.
27170         (func_create_megatestdir): Likewise.
27171         Report by Bruno Haible.
27172
27173 2007-06-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
27174
27175         Sync from Automake.
27176         * build-aux/gnupload: Fix shell portability issues with for loops.
27177         Report by Karl Berry.
27178
27179 2007-06-29  Simon Josefsson  <simon@josefsson.org>
27180
27181         * build-aux/maint.mk (POURL): Use translationproject.org.
27182
27183 2007-06-27  Simon Josefsson  <simon@josefsson.org>
27184             Bruno Haible  <bruno@clisp.org>
27185
27186         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Require gl_HEADER_SYS_SOCKET
27187         before using HAVE_WS2TCPIP_H. Check for gai_strerror through an
27188         explicit link test, rather than AC_REPLACE_FUNCS - for mingw.
27189         (gl_PREREQ_GETADDRINFO): Require gl_HEADER_SYS_SOCKET before using
27190         HAVE_SYS_SOCKET_H and HAVE_WS2TCPIP_H.
27191
27192 2007-06-27  Bruno Haible  <bruno@clisp.org>
27193
27194         * build-aux/config.rpath: Upgrade to libtool-1.5.24.
27195         * build-aux/config.libpath: Upgrade to libtool-1.5.24.
27196
27197 2007-06-26  Karl Berry  <karl@gnu.org>
27198
27199         * MODULES.html.sh: remove xreadlink-with-size.
27200
27201 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
27202
27203         * lib/time_.h: Port to Solaris 8 with Sun Studio 11, using a
27204         method that I hope also handles the double-include problem noted
27205         by Bruno Haible in
27206         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00186.html>.
27207
27208 2007-06-23  Bruno Haible  <bruno@clisp.org>
27209
27210         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
27211         Don't let the 'mostlyclean' target fail if the last subdirectory could
27212         not be removed.
27213         Reported by Karl Berry.
27214
27215 2007-06-23  Bruno Haible  <bruno@clisp.org>
27216
27217         * gnulib-tool (echo): Add a speedier workaround for ksh.
27218         * tests/test-echo.sh: Likewise.
27219
27220 2007-06-23  Bruno Haible  <bruno@clisp.org>
27221
27222         * gnulib-tool (echo): Add workarounds also for bash versions < 2.04.
27223         * tests/test-echo.sh: Likewise.
27224
27225 2007-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
27226
27227         * gnulib-tool (IFS): Initialize early, so we don't set it to
27228         empty later.
27229         (self_abspathname): Rewrite algorithm to set it, reindent.
27230         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am)
27231         (func_create_megatestdir): Merge some sed scripts.
27232
27233 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
27234
27235         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Check some typos
27236         exposed by Sun Studio 11 cc on Solaris 8.
27237
27238 2007-06-22  Bruno Haible  <bruno@clisp.org>
27239
27240         * gnulib-tool (echo): Ensure the echo primitive does not interpret
27241         backslashes.
27242         * tests/test-echo.sh: New file.
27243
27244 2007-06-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
27245
27246         * gnulib-tool (func_add_or_update, func_create_testdir): Do not
27247         simplify `sed_replace_build_aux' scripts, they are portable but
27248         echoing them with `echo' is not.
27249         Report and analysis by Fernando Ferreira <fernando.prog@netcabo.pt>.
27250
27251 2007-06-21  Karl Berry  <karl@gnu.org>
27252
27253         * config/srclist.txt: guess we can't handle the licenses via
27254         srclist at the moment.
27255
27256 2007-06-21  Paul Eggert  <eggert@cs.ucla.edu>
27257
27258         * MODULES.html.sh: Add include_next.
27259         * modules/include_next: New file.
27260
27261 2007-06-20  Paul Eggert  <eggert@cs.ucla.edu>
27262
27263         * m4/include_next.m4 (gl_INCLUDE_NEXT): Define and AC_SUBST
27264         INCLUDE_NEXT.
27265         (gl_CHECK_NEXT_HEADERS): New macro.
27266         * m4/fcntl_h.m4 (gl_FCNTL_H): use gl_CHECK_NEXT_HEADERS instead of
27267         the obsolescent gl_ABSOLUTE_HEADER.
27268         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Likewise.
27269         * m4/float_h.m4 (gl_FLOAT_H): Likewise.
27270         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
27271         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
27272         * m4/locale_h.m4 (gl_LOCALE_H): Likewise.
27273         * m4/math_h.m4 (gl_MATH_H): Likewise.
27274         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
27275         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
27276         * m4/signal_h.m4 (gl_SIGNAL_H): Likewise.
27277         * m4/stdint.m4 (gl_STDINT_H): Likewise.
27278         * m4/stdio_h.m4 (gl_STDIO_H): Likewise.
27279         * m4/stdlib_h.m4 (gl_STDLIB_H): Likewise.
27280         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Likewise.
27281         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
27282         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
27283         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Likewise.
27284         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Likewise.
27285         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
27286         * m4/time_h.m4 (gl_HEADER_TIME_H_BODY): Likewise.
27287         * m4/unistd_h.m4 (gl_UNISTD_H): Likewise.
27288         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
27289         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
27290         * m4/inttypes.m4 (gl_INTTYPES_H): Define
27291         _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H to avoid the problem of unclean
27292         builds, since ABSOLUTE_INTTYPES_H is no longer being defined.
27293         * m4/stdint.m4 (gl_STDINT_H): Likewise, for
27294         _GL_JUST_INCLUDE_SYSTEM_STDINT_H.
27295         * lib/fcntl_.h: Use @INCLUDE_NEXT@ @NEXT_foo_H@
27296         rather than @HAVE_INCLUDE_NEXT@ and @ABSOLUTE_foo_H@.
27297         * lib/float_.h: Likewise.
27298         * lib/inttypes_.h: Likewise.
27299         * lib/math_.h: Likewise.
27300         * lib/search_.h: Likewise.
27301         * lib/signal_.h: Likewise.
27302         * lib/stdint_.h: Likewise.
27303         * lib/stdio_.h: Likewise.
27304         * lib/stdlib_.h: Likewise.
27305         * lib/string_.h: Likewise.
27306         * lib/sys_stat_.h: Likewise.
27307         * lib/sys_time_.h: Likewise.
27308         * lib/time_.h: Likewise.
27309         * lib/unistd_.h: Likewise.
27310         * lib/wchar_.h: Likewise.
27311         * lib/wctype_.h: Likewise.
27312         * lib/dirent_.h: Likewise.
27313         * lib/iconv_.h: Likewise.
27314         * lib/locale_.h: Likewise.
27315         * lib/netinet_in_.h: Likewise.
27316         * lib/sys_select_.h: Likewise.
27317         * lib/sys_socket_.h: Likewise.
27318         * lib/sysexits_.h: Likewise.
27319         * modules/fcntl (Depends-on): Depend on include_next, not
27320         absolute_header.
27321         (Makefile): Substitute INCLUDE_NEXT and NEXT_foo_H, not
27322         HAVE_INCLUDE_NEXT and ABSOLUTE_foo_H.
27323         * modules/fchdir: Likewise.
27324         * modules/float: Likewise.
27325         * modules/iconv_open: Likewise.
27326         * modules/inttypes: Likewise.
27327         * modules/locale: Likewise.
27328         * modules/math: Likewise.
27329         * modules/netinet_in: Likewise.
27330         * modules/search: Likewise.
27331         * modules/signal: Likewise.
27332         * modules/stdint: Likewise.
27333         * modules/stdio: Likewise.
27334         * modules/stdlib: Likewise.
27335         * modules/string: Likewise.
27336         * modules/sys_select: Likewise.
27337         * modules/sys_socket: Likewise.
27338         * modules/sys_stat: Likewise.
27339         * modules/sys_time: Likewise.
27340         * modules/sysexits: Likewise.
27341         * modules/time: Likewise.
27342         * modules/unistd: Likewise.
27343         * modules/wchar: Likewise.
27344         * modules/wctype: Likewise.
27345         * modules/sys_stat: Change maintainer to "all".
27346         * modules/unistd: Likewise.
27347
27348 2007-06-20  Karl Berry  <karl@gnu.org>
27349
27350         * config/srclist.txt: track www changes in license files.
27351
27352 2007-06-20  Sergey Poznyakoff  <gray@gnu.org.ua>
27353
27354         * build-aux/bootstrap: Remove stray dot.
27355         Make sure build_aux settings are honored when linking
27356         gnulib_extra_files.
27357
27358 2007-06-19  Eric Blake  <ebb9@byu.net>
27359
27360         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
27361         Allow compilation on cygwin.
27362
27363 2007-06-19  Jim Meyering  <jim@meyering.net>
27364
27365         xreadlink-with-size: Remove module.  No longer used.
27366         Ex-callers now use xreadlink or mreadlink-with-size.
27367         * modules/xreadlink-with-size: Remove module.
27368         * lib/xreadlink-with-size.c: Remove file.
27369         * lib/xreadlink.h (xreadlink_with_size): Remove prototype.
27370         (xreadlink): Remove inaccurate comment.  The one in xreadlink.c,
27371         just before the function definition *is* accurate.
27372
27373         Eliminate one way canonicalize_filename_mode could exit.
27374         * lib/canonicalize.c (canonicalize_filename_mode):
27375         Use mreadlink_with_size, not xreadlink_with_size.
27376
27377 2007-06-18  Paul Eggert  <eggert@cs.ucla.edu>
27378
27379         Detect porting problems to FreeBSD/arm, which has time_t wider than
27380         long int.  Original problem reported for GNU diff by Xin Li in
27381         <http://lists.gnu.org/archive/html/bug-gnu-utils/2007-06/msg00091.html>.
27382         * modules/getdate (Depends-on): Add intprops, verify.
27383         * lib/getdate.y: Include intprops.h, verify.h.  Verify that time_t
27384         is an integer type no wider than long int.
27385
27386 2007-06-18  Jim Meyering  <jim@meyering.net>
27387
27388         New module: mreadlink-with-size.
27389         * MODULES.html.sh: Add mreadlink-with-size.
27390         * modules/mreadlink-with-size: New module
27391         * modules/canonicalize (Depends-on): Depend on mreadlink-with-size,
27392         not xreadlink-with-size.
27393         * lib/mreadlink-with-size.c, lib/mreadlink.h: New files.
27394
27395 2007-06-16  Bruno Haible  <bruno@clisp.org>
27396
27397         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Catch the MacOS X 10.4 bug.
27398         * doc/functions/frexpl.texi: Document the MacOS X 10.4 bug.
27399         Reported by Gary V. Vaughan <gary@gnu.org>.
27400
27401 2007-06-15  Paul Eggert  <eggert@cs.ucla.edu>
27402
27403         Revamp lchown so that it lives in unistd.h where it belongs.
27404         * lib/lchown.h: Remove.
27405         * lib/dirchownmod.c: Don't include lib/lchown.h.
27406         * lib/fchownat.c: Likewise.
27407         * lib/openat.c: Likewise.
27408         * lib/lchown.c (REPLACE_CHOWN): Define to 0 if the system chown
27409         does not follow symlinks.
27410         (EOPNOTSUPP): Define if not defined.
27411         * lib/unistd_.h (chown): Do not replace if REPLADE_CHOWN
27412         is defined to 0.
27413         (lchown): New decl.
27414         * m4/lchown.m4 (gl_FUNC_LCHOWN): Require gl_UNISTD_H_DEFAULTS.
27415         Do not check for lchown decl.
27416         Set REPLACE_LCHOWN.
27417         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set GNULIB_LCHOWN,
27418         REPLACE_LCHOWN.
27419         * modules/chown: Make it clear it follows symlinks.
27420         * modules/lchown: Make it clear it doesn't follow symlinks.
27421         (Files): Remove lib/lchown.h
27422         (Depends-on): Add unistd.
27423         (configure.ac): Add gl_UNISTD_MODULE_INDICATOR([lchown]).
27424         (Include): Include <unistd.h>, not "lchown.h".
27425         * modules/unistd (unistd.h): Substitude GNULIB_LCHOWN and
27426         REPLACE_LCHOWN.
27427
27428 2007-06-15  Jim Meyering  <jim@meyering.net>
27429
27430         Change license (GPL to LGPL) of fsusage and dependents.
27431         * modules/fsusage (License): Change to LGPL.
27432         * modules/full-read (License): Likewise.
27433         * modules/full-write (License): Likewise.
27434         * modules/safe-read (License): Likewise.
27435         * modules/safe-write (License): Likewise.
27436
27437 2007-06-14  Ben Pfaff  <blp@gnu.org>
27438
27439         Missing part of allocsa -> malloca transition.
27440         * modules/relocatable-prog-wrapper: gl_ALLOCSA should be
27441         gl_MALLOCA.
27442
27443 2007-06-12  Bruno Haible  <bruno@clisp.org>
27444
27445         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Guess no when cross-compiling
27446         to ia64, x86_64, i386.
27447         Reported by Eric Blake.
27448
27449 2007-06-12  Bruno Haible  <bruno@clisp.org>
27450
27451         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Guess no also when
27452         cross-compiling to x86_64.
27453
27454 2007-06-12  Paul Eggert  <eggert@cs.ucla.edu>
27455
27456         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Fix POSIX sed portability
27457         glitch reported by Ralf Wildenhues in
27458         <http://lists.gnu.org/archive/html/bug-gnulib/2007-06/msg00114.html>.
27459
27460         * m4/regex.m4 (gl_REGEX): Catch a bug with [[:alnum:]_-] reported by
27461         Vin Shelton.
27462
27463 2007-06-11  Bruno Haible  <bruno@clisp.org>
27464
27465         * lib/printf-args.c (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Fix NULL
27466         replacement string.
27467         Reported by Eric Blake.
27468
27469 2007-06-10  Bruno Haible  <bruno@clisp.org>
27470
27471         Prepare vasnprintf code for use with Unicode strings.
27472         * lib/printf-args.h (PRINTF_FETCHARGS): New macro.
27473         (arg_type) [ENABLE_UNISTDIO]: Define TYPE_U8_STRING, TYPE_U16_STRING,
27474         TYPE_U32_STRING.
27475         (argument) [ENABLE_UNISTDIO]: Add a_u8_string, a_u16_string,
27476         a_u32_string variants.
27477         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
27478         * lib/printf-args.c: Don't include config.h and the specification
27479         header if PRINTF_FETCHARGS is already defined.
27480         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
27481         (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Add code for TYPE_U8_STRING,
27482         TYPE_U16_STRING, TYPE_U32_STRING.
27483         * lib/printf-parse.h [ENABLE_UNISTDIO] (u8_directive, u8_directives,
27484         u16_directive, u16_directives, u32_directive, u32_directives): New
27485         types.
27486         (ulc_printf_parse, u8_printf_parse, u16_printf_parse, u32_printf_parse):
27487         New declarations.
27488         * lib/printf-parse.c: Don't include config.h and the specification
27489         header if PRINTF_PARSE is already defined. Eliminate the set of
27490         parameters for WIDE_CHAR_VERSION; the user of this file must provide
27491         them now. Include c-ctype.h.
27492         (PRINTF_PARSE) [ENABLE_UNISTDIO]: Add code implementing the 'U'
27493         directive and CHAR_T_ONLY_ASCII.
27494         * lib/vasnprintf.c: Don't include config.h and the specification header
27495         if VASNPRINTF is already defined.
27496         (DCHAR_IS_TCHAR, DCHAR_CPY): New macros.
27497         (VASNPRINTF): Use PRINTF_FETCHARGS instead of printf_fetchargs. Use
27498         DCHAR_CPY. Handle the case that DCHAR_T and FCHAR_T are not the same
27499         type. Handle the case that TCHAR_T and FCHAR_T are not of the same
27500         size. Handle the case that DCHAR_T and TCHAR_T are not the same type,
27501         add a conversion from TCHAR_T[] to DCHAR_T[], and rework the padding
27502         code accordingly.
27503         (VASNPRINTF) [ENABLE_UNISTDIO]: Implement the 'U' directive. Enable
27504         pad_ourselves also in this case, with the 'c' and 's' directives, and
27505         with a different notion of "width".
27506         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): New macros.
27507
27508 2007-06-10  Bruno Haible  <bruno@clisp.org>
27509
27510         * modules/unistr/u32-mbsnlen: New file.
27511         * lib/unistr/u32-mbsnlen.c: New file.
27512
27513         * modules/unistr/u16-mbsnlen: New file.
27514         * lib/unistr/u16-mbsnlen.c: New file.
27515
27516         * modules/unistr/u8-mbsnlen: New file.
27517         * lib/unistr/u8-mbsnlen.c: New file.
27518
27519         * lib/unistr.h (u8_mbsnlen, u16_mbsnlen, u32_mbsnlen): New
27520         declarations.
27521
27522 2007-06-10  Bruno Haible  <bruno@clisp.org>
27523
27524         * lib/string_.h (mbsnlen): New declaration.
27525         * lib/mbsnlen.c: New file.
27526         * m4/mbsnlen.m4: New file.
27527         * modules/mbsnlen: New file.
27528         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set GNULIB_MBSNLEN.
27529         * modules/string (string.h): Substitute GNULIB_MBSNLEN.
27530         * MODULES.html.sh (Internationalization functions): Add mbsnlen.
27531
27532 2007-06-10  Bruno Haible  <bruno@clisp.org>
27533
27534         * lib/mbslen.c: Include <stdlib.h>, needed for MB_CUR_MAX.
27535
27536 2007-06-10  Bruno Haible  <bruno@clisp.org>
27537
27538         * lib/mbiter.h: Include <stddef.h>, needed for ptrdiff_t.
27539         * lib/mbuiter.h: Likewise.
27540
27541 2007-06-10  Bruno Haible  <bruno@clisp.org>
27542
27543         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Check for _snprintf
27544         declaration.
27545
27546 2007-06-10  Karl Berry  <karl@gnu.org>
27547
27548         * config/srclist.txt: remove gettext entries, Bruno prefers
27549         to update individually.
27550
27551 2007-06-10  Bruno Haible  <bruno@clisp.org>
27552
27553         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Remove variable
27554         'maxlen'. Ensure only length + width bytes are allocated, not
27555         length + 1 + width.
27556
27557 2007-06-09  Bruno Haible  <bruno@clisp.org>
27558
27559         * lib/vasnprintf.c (FCHAR_T, DCHAR_T, TCHAR_T): New macros.
27560         (CHAR_T): Remove macro.
27561         (VASNPRINTF): Update.
27562
27563 2007-06-09  Bruno Haible  <bruno@clisp.org>
27564
27565         * MODULES.html.sh (Unicode string functions): Add the new modules.
27566
27567         * modules/uniconv/u32-conv-to-enc: New file.
27568         * lib/uniconv/u32-conv-to-enc.c: New file.
27569         * modules/uniconv/u32-conv-to-enc-tests: New file.
27570         * tests/uniconv/test-u32-conv-to-enc.c: New file.
27571
27572         * modules/uniconv/u16-conv-to-enc: New file.
27573         * lib/uniconv/u16-conv-to-enc.c: New file.
27574         * lib/uniconv/u-conv-to-enc.h: New file.
27575         * modules/uniconv/u16-conv-to-enc-tests: New file.
27576         * tests/uniconv/test-u16-conv-to-enc.c: New file.
27577
27578         * modules/uniconv/u8-conv-to-enc: New file.
27579         * lib/uniconv/u8-conv-to-enc.c: New file.
27580         * modules/uniconv/u8-conv-to-enc-tests: New file.
27581         * tests/uniconv/test-u8-conv-to-enc.c: New file.
27582
27583         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
27584         u32_conv_to_encoding): New declarations.
27585
27586 2007-06-09  Bruno Haible  <bruno@clisp.org>
27587
27588         * tests/uniconv/test-u32-strconv-to-enc.c (main): Remove unused code.
27589
27590 2007-06-09  Bruno Haible  <bruno@clisp.org>
27591
27592         Rename 'allocsa' -> 'malloca', 'freesa' -> 'freea'.
27593         * modules/malloca: Renamed from modules/allocsa, updated.
27594         * lib/malloca.h: Renamed from lib/allocsa.h, updated.
27595         * lib/malloca.c: Renamed from lib/allocsa.c, updated.
27596         * lib/malloca.valgrind: Renamed from lib/allocsa.valgrind, updated.
27597         * m4/malloca.m4: Renamed from m4/allocsa.m4, updated.
27598         * modules/malloca-tests: Renamed from modules/allocsa-tests, updated.
27599         * tests/test-malloca.c: Renamed from tests/test-allocsa.c, updated.
27600         * modules/xmalloca: Renamed from modules/xallocsa, updated.
27601         * lib/xmalloca.h: Renamed from lib/xallocsa.h, updated.
27602         * lib/xmalloca.c: Renamed from lib/xallocsa.c, updated.
27603         * modules/c-strcasestr (Depends-on): Update.
27604         * lib/c-strcasestr.c: Update.
27605         * modules/c-strstr (Depends-on): Update.
27606         * lib/c-strstr.c: Update.
27607         * modules/canonicalize-lgpl (Depends-on): Update.
27608         * lib/canonicalize-lgpl.c: Update.
27609         * modules/clean-temp (Depends-on): Update.
27610         * lib/clean-temp.c: Update.
27611         * modules/csharpcomp (Depends-on): Update.
27612         * lib/csharpcomp.c: Update.
27613         * modules/csharpexec (Depends-on): Update.
27614         * lib/csharpexec.c: Update.
27615         * modules/javacomp (Depends-on): Update.
27616         * lib/javacomp.c: Update.
27617         * modules/javaexec (Depends-on): Update.
27618         * lib/javaexec.c: Update.
27619         * modules/mbscasestr (Depends-on): Update.
27620         * lib/mbscasestr.c: Update.
27621         * modules/mbsstr (Depends-on): Update.
27622         * lib/mbsstr.c: Update.
27623         * modules/setenv (Depends-on): Update.
27624         * lib/setenv.c: Update.
27625         * modules/strcasestr (Depends-on): Update.
27626         * lib/strcasestr.c: Update.
27627         * modules/striconveha (Depends-on): Update.
27628         * lib/striconveha.c: Update.
27629         * modules/relocatable-prog-wrapper (Files): Update.
27630         * lib/relocwrapper.c: Update.
27631         * build-aux/install-reloc: Update.
27632         * MODULES.html.sh (Memory management functions <stdlib.h>): Update.
27633
27634 2007-06-08  Bruno Haible  <bruno@clisp.org>
27635
27636         Port to uClibc.
27637         * lib/fbufmode.c (fbufmode): Add special code for uClibc.
27638         * lib/fpurge.c (fpurge): Likewise.
27639         * lib/freading.c (freading): Likewise.
27640         * lib/fseeko.c (rpl_fseeko): Likewise.
27641         * lib/fseterr.c (fseterr): Likewise.
27642         * lib/fwriting.c (fwriting): Likewise.
27643         * tests/test-fflush.c (main): Avoid a failure on uClibc.
27644
27645 2007-06-08  Bruno Haible  <bruno@clisp.org>
27646
27647         * m4/intlmacosx.m4: New file, extracted from gettext.m4.
27648         * m4/gettext.m4 (gt_INTL_MACOSX): Remove macro, moved to intlmacosx.m4.
27649         * modules/gettext (Files): Add m4/intlmacosx.m4.
27650
27651 2007-06-07  Bruno Haible  <bruno@clisp.org>
27652
27653         * modules/localename-tests: New file.
27654         * tests/test-localename.c: New file.
27655
27656         New module 'localename'.
27657         * lib/localename.h: New file.
27658         * lib/localename.c: New file, from GNU gettext.
27659         * m4/localename.m4: New file.
27660         * modules/localename: New file.
27661
27662 2007-06-07  Bruno Haible  <bruno@clisp.org>
27663
27664         Work around the lack of <wchar.h> on some builds of uClibc.
27665         * doc/headers/wchar.texi: Update.
27666         * lib/wchar_.h: Include <wchar.h> only if it exists.
27667         * m4/wchar.m4 (gl_WCHAR_H): Check for <wchar.h>. Set HAVE_WCHAR_H.
27668         * m4/stdint.m4 (gl_STDINT_H): Check for <wchar.h>.
27669         (gl_STDINT_TYPE_PROPERTIES): Don't try to include <wchar.h> if it
27670         doesn't exist.
27671         * modules/wchar (wchar.h): Substitute HAVE_WCHAR_H.
27672         * modules/mbfile (Depends-on): Add wchar.
27673         * modules/mbiter (Depends-on): Likewise.
27674         * modules/mbuiter (Depends-on): Likewise.
27675         Reported by Simon Josefsson.
27676
27677 2007-06-06  Paul Eggert  <eggert@cs.ucla.edu>
27678
27679         Work around problem reported by Steven M. Schweda in
27680         <http://lists.gnu.org/archive/html/bug-tar/2007-06/msg00002.html>:
27681         Tru64 5.1B with the Compaq compiler environment installed declares
27682         an 'isblank' function but does not define it in the C library.
27683         * lib/fnmatch.c (isblank): Check for HAVE_ISBLANK, too.
27684         * lib/regex_internal.h (isblank): Likewise.
27685         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for isblank existence.
27686         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
27687
27688 2007-06-05  Bruno Haible  <bruno@clisp.org>
27689
27690         Fix *printf so that it recognizes non-IEEE numbers on i386, x86_64,
27691         ia64.
27692         * modules/printf-safe: New file.
27693         * modules/fprintf-posix (Depends-on): Add printf-safe.
27694         * modules/printf-posix (Depends-on): Likewise.
27695         * modules/snprintf-posix (Depends-on): Likewise.
27696         * modules/sprintf-posix (Depends-on): Likewise.
27697         * modules/vasnprintf-posix (Depends-on): Likewise.
27698         * modules/vasprintf-posix (Depends-on): Likewise.
27699         * modules/vfprintf-posix (Depends-on): Likewise.
27700         * modules/vprintf-posix (Depends-on): Likewise.
27701         * modules/vsnprintf-posix (Depends-on): Likewise.
27702         * modules/vsprintf-posix (Depends-on): Likewise.
27703         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Require
27704         AC_C_BIGENDIAN. Define CHECK_PRINTF_SAFE if printf-safe is used. Test
27705         non-IEEE numbers on i386, x86_64, ia64. When cross-compiling, guess
27706         "no" on i386, x86_64, ia64.
27707         * tests/test-snprintf-posix.h (LDBL80_WORDS): New macro.
27708         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
27709         on i386, x86_64, ia64.
27710         * tests/test-sprintf-posix.h (LDBL80_WORDS): New macro.
27711         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
27712         on i386, x86_64, ia64.
27713         * tests/test-vasnprintf-posix.c: Include float.h.
27714         (LDBL80_WORDS): New macro.
27715         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
27716         on i386, x86_64, ia64.
27717         * tests/test-vasprintf-posix.c: Include float.h.
27718         (LDBL80_WORDS): New macro.
27719         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
27720         on i386, x86_64, ia64.
27721         * tests/test-snprintf-posix.c: Include float.h.
27722         * tests/test-sprintf-posix.c: Likewise.
27723         * tests/test-vsnprintf-posix.c: Likewise.
27724         * tests/test-vsprintf-posix.c: Likewise.
27725
27726 2007-06-05  Bruno Haible  <bruno@clisp.org>
27727
27728         Fix isnanl so that it recognizes non-IEEE numbers on i386, x86_64, ia64.
27729         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Require AC_C_BIGENDIAN. Test
27730         non-IEEE numbers on i386, x86_64, ia64.
27731         (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require AC_C_BIGENDIAN.
27732         * lib/isnan.c (FUNC): Add special code for i386, x86_64, ia64.
27733         * tests/test-isnanl.h: Include float.h.
27734         (main): Check also non-IEEE numbers on i386, x86_64, ia64.
27735
27736 2007-06-05  Bruno Haible  <bruno@clisp.org>
27737
27738         * lib/vasnprintf.c (VASNPRINTF): Do the extra handling of NaN and Inf
27739         also the %a / %A. Handle the %a / %A code before this extra handling.
27740
27741 2007-06-05  Bruno Haible  <bruno@clisp.org>
27742
27743         * lib/vasnprintf.c [NEED_PRINTF_LONG_DOUBLE ||
27744         NEED_PRINTF_INFINITE_LONG_DOUBLE]: Include fpucw.h.
27745
27746 2007-06-05  Bruno Haible  <bruno@clisp.org>
27747
27748         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): Fix
27749         typo in variable name.
27750
27751 2007-06-05  Eric Blake  <ebb9@byu.net>
27752
27753         * m4/lseek.m4 (gl_FUNC_LSEEK): Work when cross-compiling.
27754         Reported by Simon Josefsson.
27755
27756 2007-06-04  Bruno Haible  <bruno@clisp.org>
27757
27758         Avoid test failures on some PowerPC platforms.
27759         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP):
27760         Define differently for PowerPC.
27761         * tests/test-frexpl.c (MIN_NORMAL_EXP): Likewise.
27762         Reported by Gary V. Vaughan <gary@gnu.org>.
27763
27764 2007-06-02  Bruno Haible  <bruno@clisp.org>
27765
27766         Fix test-stdint failure on FreeBSD/ia64.
27767         * m4/stdint.m4 (gl_STDINT_H): Check the values of PTRDIFF_MIN,
27768         PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN,
27769         WCHAR_MAX, WINT_MIN, WINT_MAX entirely, not only for plausibility.
27770         * doc/headers/stdint.texi: Update.
27771
27772 2007-06-01  Bruno Haible  <bruno@clisp.org>
27773
27774         * tests/test-binary-io.c (main): Pass a third argument to open().
27775         Reported by Gary V. Vaughan <gary@gnu.org>.
27776
27777 2007-06-01  Bruno Haible  <bruno@clisp.org>
27778
27779         * doc/functions/frexpl.texi: Update for mingw.
27780
27781 2007-06-01  Bruno Haible  <bruno@clisp.org>
27782
27783         * tests/test-lseek.c (main): Disable test of errno for invalid third
27784         argument.
27785         * doc/functions/lseek.texi: Update.
27786         Reported by Gary V. Vaughan <gary@gnu.org>.
27787
27788 2007-05-28  Bruno Haible  <bruno@clisp.org>
27789
27790         * m4/intl.m4 (AM_INTL_SUBDIR): Substitute variables WOE32, WINDRES.
27791
27792 2007-05-31  Eric Blake  <ebb9@byu.net>
27793
27794         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Guess no on mingw when
27795         cross compiling.
27796
27797 2007-05-30  Eric Blake  <ebb9@byu.net>
27798         and Bruno Haible  <bruno@clisp.org>
27799
27800         Work around mingw test failures exposed by m4-1.4.9b.
27801         * m4/stdint.m4 (gl_STDINT_H): Detect mingw bug.
27802         * tests/test-unistd.c: Disable uid_t and git_t tests for the
27803         moment.
27804
27805 2007-05-30  Bruno Haible  <bruno@clisp.org>
27806
27807         * tests/test-lseek.c: Explicitly close file descriptors 0 and 1 before
27808         assuming that they are closed. Needed on HP-UX 11.
27809
27810 2007-05-29  Bruno Haible  <bruno@clisp.org>
27811
27812         Fix a problem with #include_next.
27813         * lib/dirent_.h: Split the double-inclusion guard.
27814         * lib/fcntl_.h: Likewise.
27815         * lib/float_.h: Likewise.
27816         * lib/iconv_.h: Likewise.
27817         * lib/inttypes_.h: Likewise.
27818         * lib/locale_.h: Likewise.
27819         * lib/math_.h: Likewise.
27820         * lib/netinet_in_.h: Likewise.
27821         * lib/search_.h: Likewise.
27822         * lib/signal_.h: Likewise.
27823         * lib/stdint_.h: Likewise.
27824         * lib/stdio_.h: Likewise.
27825         * lib/stdlib_.h: Likewise.
27826         * lib/string_.h: Likewise.
27827         * lib/sys_select_.h: Likewise.
27828         * lib/sys_socket_.h: Likewise.
27829         * lib/sys_stat_.h: Likewise.
27830         * lib/sys_time_.h: Likewise.
27831         * lib/sysexits_.h: Likewise.
27832         * lib/time_.h: Likewise.
27833         * lib/unistd_.h: Likewise.
27834         * lib/wchar_.h: Likewise.
27835         * lib/wctype_.h: Likewise.
27836
27837 2007-05-29  Bruno Haible  <bruno@clisp.org>
27838
27839         * tests/test-unistd.c: Disable the tests for useconds_t and intptr_t
27840         for the moment.
27841
27842 2007-05-29  Bruno Haible  <bruno@clisp.org>
27843
27844         * m4/isnan.m4 (gl_DOUBLE_EXPONENT_LOCATION): Silence the AC_C_BIGENDIAN
27845         invocation.
27846         Reported by Eric Blake.
27847
27848 2007-05-29  Bruno Haible  <bruno@clisp.org>
27849
27850         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Fix typo in cross-
27851         compiling case.
27852
27853 2007-05-29  Eric Blake  <ebb9@byu.net>
27854             Bruno Haible  <bruno@clisp.org>
27855
27856         * m4/isnanf.m4 (gl_FUNC_ISNANF_NO_LIBM): Avoid syntax error on
27857         cross compiles.
27858
27859 2007-05-28  Eric Blake  <ebb9@byu.net>
27860
27861         * modules/closein-tests (test_closein_LDADD): Support test on
27862         cygwin with libtool.
27863
27864 2007-05-28  Bruno Haible  <bruno@clisp.org>
27865
27866         * tests/uniconv/test-u16-conv-from-enc.c: Remove #ifdef HAVE_CONFIG_H.
27867         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
27868         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
27869         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
27870         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
27871         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
27872         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
27873         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
27874         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
27875
27876 2007-05-28  Eric Blake  <ebb9@byu.net>
27877
27878         Unconditionally include <config.h> in unit tests.
27879         * tests/test-alloca-opt.c: Remove #ifdef HAVE_CONFIG_H.
27880         * tests/test-allocsa.c, tests/test-arcfour.c,
27881         tests/test-arctwo.c, tests/test-argmatch.c, tests/test-argp.c,
27882         tests/test-array_list.c, tests/test-array_oset.c,
27883         tests/test-atexit.c, test-avltree_list.c, test-avltree_oset.c,
27884         test-avltreehash_list.c, test-base64.c, test-binary-io.c,
27885         test-c-ctype.c, test-c-strcasecmp.c, test-c-strcasestr.c,
27886         test-c-strncasecmp.c, test-c-strstr.c, test-canonicalize-lgpl.c,
27887         test-carray_list.c, test-crc.c, test-des.c, test-dirname.c,
27888         test-fflush.c, test-fprintf-posix.c, test-gc-arcfour.c,
27889         test-gc-arctwo.c, test-gc-des.c, test-gc-hmac-md5.c,
27890         test-gc-hmac-sha1.c, test-gc-md2.c, test-gc-md4.c, test-gc-md5.c,
27891         test-gc-pbkdf2-sha1.c, test-gc-rijndael.c, test-gc-sha1.c,
27892         test-gc.c, test-getpass.c, test-hmac-md5.c, test-hmac-sha1.c,
27893         test-iconv.c, test-linked_list.c, test-linkedhash_list.c,
27894         test-lock.c, test-mbscasecmp.c, test-mbscasestr1.c,
27895         test-mbscasestr2.c, test-mbscasestr3.c, test-mbscasestr4.c,
27896         test-mbschr.c, test-mbscspn.c, test-mbsncasecmp.c, test-mbspbrk.c,
27897         test-mbspcasecmp.c, test-mbsrchr.c, test-mbsspn.c, test-mbsstr1.c,
27898         test-mbsstr2.c, test-mbsstr3.c, test-md2.c, test-md4.c,
27899         test-md5.c, test-memmem.c, test-printf-posix.c,
27900         test-rbtree_list.c, test-rbtree_oset.c, test-rbtreehash_list.c,
27901         test-read-file.c, test-rijndael.c, test-snprintf-posix.c,
27902         test-snprintf.c, test-sprintf-posix.c, test-stdint.c,
27903         test-strcasestr.c, test-striconv.c, test-striconveh.c,
27904         test-striconveha.c, test-tls.c, test-vasnprintf-posix.c,
27905         test-vasnprintf-posix2.c, test-vasnprintf.c,
27906         test-vasprintf-posix.c, test-vasprintf.c, test-verify.c,
27907         test-vfprintf-posix.c, test-vprintf-posix.c,
27908         test-vsnprintf-posix.c, test-vsnprintf.c, test-vsprintf-posix.c,
27909         test-xvasprintf.c: Likewise.
27910
27911 2007-05-28  Bruno Haible  <bruno@clisp.org>
27912
27913         * gnulib-tool (func_import): Remember the --with-tests command-line
27914         option through the macro gl_WITH_TESTS in the gnulib-cache.m4.
27915         Reported by Eric Blake.
27916
27917 2007-05-28  Bruno Haible  <bruno@clisp.org>
27918
27919         * modules/ftell-tests: New file.
27920         * tests/test-ftell.c: New file, based on tests/test-ftello.c.
27921         * tests/test-ftell.sh: New file, based on tests/test-ftello.sh.
27922
27923         * lib/ftell.c: New file.
27924         * modules/ftell: New file.
27925         * m4/ftell.m4: New file.
27926         * doc/functions/ftell.texi: Update.
27927         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELL,
27928         REPLACE_FTELL.
27929         * lib/stdio_.h (rpl_ftell): New declaration.
27930         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELL,
27931         REPLACE_FTELL.
27932
27933 2007-05-28  Eric Blake  <ebb9@byu.net>
27934
27935         * lib/allocsa.h (safe_alloca): Avoid compiler warning.
27936
27937 2007-05-28  Bruno Haible  <bruno@clisp.org>
27938
27939         * modules/fseek-tests: New file.
27940         * tests/test-fseek.c: New file, based on tests/test-fseeko.c.
27941         * tests/test-fseek.sh: New file, based on tests/test-fseeko.sh.
27942
27943         * lib/fseek.c: New file.
27944         * modules/fseek: New file.
27945         * m4/fseek.m4: New file.
27946         * doc/functions/fseek.texi: Update.
27947         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEK,
27948         REPLACE_FSEEK.
27949         * lib/stdio_.h (rpl_fseek): New declaration.
27950         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEK,
27951         REPLACE_FSEEK.
27952
27953 2007-05-28  Bruno Haible  <bruno@clisp.org>
27954
27955         * lib/stdio_.h (fflush): More comments.
27956
27957 2007-05-28  Bruno Haible  <bruno@clisp.org>
27958
27959         * m4/lseek.m4 (gl_FUNC_LSEEK): When not cross-compiling, perform a real
27960         runtime test.
27961
27962 2007-05-28  Eric Blake  <ebb9@byu.net>
27963
27964         Improve lseek module.
27965         * lib/lseek.c (rpl_lseek): Detect EBADF on mingw.
27966         * lib/unistd_.h (lseek): Scale back link warning message.
27967         * tests/test-lseek.c: Beef up test.
27968         * tests/test-lseek.sh: Exercise more facets of lseek.
27969         Reported by Bruno Haible.
27970
27971 2007-05-28  Bruno Haible  <bruno@clisp.org>
27972
27973         * tests/test-unistd.c: Test all the types that <unistd.h> is expected
27974         to define.
27975
27976 2007-05-27  Bruno Haible  <bruno@clisp.org>
27977
27978         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-31 patch.
27979
27980 2007-05-27  Bruno Haible  <bruno@clisp.org>
27981
27982         * modules/openmp: New file.
27983         * m4/openmp.m4: New file, taken from autoconf's CVS with changes by
27984         Noah Misch.
27985
27986 2007-05-26  Bruno Haible  <bruno@clisp.org>
27987
27988         * modules/chdir-long (Depends-on): Add fchdir.
27989         * modules/chdir-safer (Depends-on): Likewise.
27990         * modules/fts (Depends-on): Likewise.
27991         * modules/fts-lgpl (Depends-on): Likewise.
27992         * modules/openat (Depends-on): Likewise.
27993         * modules/savewd (Depends-on): Likewise.
27994
27995 2007-05-24  Eric Blake  <ebb9@byu.net>
27996
27997         Fix lseek on mingw.
27998         * modules/lseek: New module.
27999         * m4/lseek.m4: New file.
28000         * lib/lseek.c: New file.
28001         * modules/lseek-tests: New file.
28002         * tests/test-lseek.c: New file.
28003         * tests/test-lseek.sh: New file.
28004         * MODULES.html.sh: Document lseek module.
28005         * modules/fflush (Depends-on): Add lseek, fseeko.
28006         * modules/fseeko (Depends-on): Likewise.
28007         * modules/ftello (Depends-on): Likewise.
28008         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Replace fseek[o] if lseek is
28009         broken.
28010         * m4/ftello.m4 (gl_FUNC_FTELLO): Replace ftell[o] if lseek is
28011         broken.
28012         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Trigger fseeko module.
28013         * lib/fseeko.c (rpl_fseeko): Quit early on non-seekable files.
28014         * lib/ftello.c (rpl_ftello): Likewise.
28015         * tests/test-fseeko.c (main): Test this.
28016         * tests/test-fseeko.sh: Likewise.
28017         * tests/test-ftello.c (main): Likewise.
28018         * tests/test-ftello.sh: Likewise.
28019         * lib/stdio_.h (fseek, ftell): Simplify, since missing fseeko now
28020         implies replacing fseek.
28021         * modules/stdio (Makefile.am): No longer need HAVE_FSEEKO,
28022         HAVE_FTELLO.
28023         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add lseek info.
28024         * modules/unistd (Makefile.am): Likewise.
28025         * lib/unistd_.h (lseek): Declare a replacement.
28026         * doc/functions/lseek.texi (lseek): Document this fix.
28027         * doc/functions/fseek.texi (fseek): Likewise.
28028         * doc/functions/ftell.texi (ftell): Likewise.
28029
28030 2007-05-24  Bruno Haible  <bruno@clisp.org>
28031
28032         * tests/test-vasnprintf-posix.c (test_function): Allow up to 50 bytes
28033         in the printed representation of a NaN.
28034         * tests/test-vasprintf-posix.c (test_function): Likewise.
28035         * tests/test-snprintf-posix.h (test_function): Likewise.
28036         * tests/test-sprintf-posix.h (test_function): Likewise.
28037         Reported by Eric Blake.
28038
28039 2007-05-23  Eric Blake  <ebb9@byu.net>
28040
28041         Fix fseeko/ftello on cygwin 1.5.24.
28042         * doc/functions/fseeko.texi (fseeko): Document the fix.
28043         * doc/functions/ftello.texi (ftello): Document the fix.
28044         * doc/functions/stdin.texi (stdin): Document the cygwin bug.
28045         * doc/functions/stdout.text (stdout): New file.
28046         * doc/functions/stderr.text (stderr): New file.
28047         * doc/gnulib.texi (Function Substitutes): Use new files.
28048         * tests/test-fseeko.c (main): Check for broken fseeko on cygwin
28049         prior to 1.7.0.
28050         * tests/test-ftello.c (main): Likewise for ftello.
28051         * tests/test-fseeko.sh: New file.
28052         * tests/test-ftello.sh: New file.
28053         * modules/fseeko-tests (Makefile.am): Ensure test-fseeko is run
28054         with seekable stdin.
28055         * modules/ftello-tests (Makefile.am): Likewise for test-ftello.
28056         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Detect the cygwin bug.
28057         (gl_REPLACE_FSEEKO): New macro.
28058         * m4/ftello.m4 (gl_FUNC_FTELLO, gl_REPLACE_FTELLO): Likewise.
28059         * modules/fseeko (Files): Distribute fseeko.c.
28060         * modules/ftello (Files): Distribute ftello.c.
28061         * lib/fseeko.c (rpl_fseeko) [__CYGWIN__]: Convert stdin to 64-bit
28062         mode.
28063         * lib/ftello.c (rpl_ftello): New file.
28064         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Allow replacement of
28065         fseeko, ftello.
28066         (gl_STDIN_LARGE_OFFSET): New macro.
28067         * modules/stdio (Makefile.am): Perform the replacement.
28068         * lib/stdio_.h (rpl_fseeko, rpl_ftello): Define when needed.
28069
28070 2007-05-23  Bruno Haible  <bruno@clisp.org>
28071
28072         * lib/stdio_.h (fseeko, ftello): Provide a link warning only if
28073         GNULIB_POSIXCHECK is defined.
28074
28075 2007-05-21  Bruno Haible  <bruno@clisp.org>
28076
28077         * m4/printf.m4 (gl_PRINTF_INFINITE, gl_PRINTF_INFINITE_LONG_DOUBLE):
28078         Check also the output for NaN arguments. When cross-compiling, guess
28079         no on IRIX.
28080         * lib/vasnprintf.c: Update comments.
28081         * tests/test-vasnprintf-posix.c (strisnan): New function.
28082         (test_function): Use it.
28083         * tests/test-vasprintf-posix.c (strisnan): New function.
28084         (test_function): Use it.
28085         * tests/test-snprintf-posix.h (strisnan): New function.
28086         (test_function): Use it.
28087         * tests/test-sprintf-posix.h (strisnan): New function.
28088         (test_function): Use it.
28089         Reported by Eric Blake.
28090
28091 2007-05-20  Bruno Haible  <bruno@clisp.org>
28092
28093         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Add test for large finite
28094         numbers that fails on BeOS.
28095         * doc/functions/frexpl.texi: Update.
28096
28097 2007-05-20  Jim Meyering  <jim@meyering.net>
28098
28099         * NEWS: Mention the incompatible change (s/futimens/gl_futimens/)
28100         forced upon us by glibc-2.6.
28101
28102 2007-05-20  Bruno Haible  <bruno@clisp.org>
28103
28104         Fix *printf result for NaN, Inf on AIX, Solaris, OSF/1.
28105         * m4/printf.m4 (gl_PRINTF_INFINITE): Update cross-compiling guesses.
28106         (gl_PRINTF_INFINITE_LONG_DOUBLE): New macro.
28107         * lib/vasnprintf.c: Use NEED_PRINTF_INFINITE_DOUBLE instead of
28108         NEED_PRINTF_INFINITE.
28109         (is_infinitel): New function.
28110         (VASNPRINTF): Handle NEED_PRINTF_INFINITE_LONG_DOUBLE case.
28111         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE): Renamed from
28112         gl_PREREQ_VASNPRINTF_INFINITE.
28113         (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): New macro.
28114         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
28115         gl_PRINTF_INFINITE_LONG_DOUBLE and test its result. Invoke
28116         gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE and
28117         gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE instead of
28118         gl_PREREQ_VASNPRINTF_INFINITE.
28119         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
28120         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
28121         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
28122         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
28123         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
28124         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
28125         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
28126         * doc/functions/fprintf.texi: Update.
28127         * doc/functions/printf.texi: Update.
28128         * doc/functions/snprintf.texi: Update.
28129         * doc/functions/sprintf.texi: Update.
28130         * doc/functions/vfprintf.texi: Update.
28131         * doc/functions/vprintf.texi: Update.
28132         * doc/functions/vsnprintf.texi: Update.
28133         * doc/functions/vsprintf.texi: Update.
28134
28135 2007-05-20  Bruno Haible  <bruno@clisp.org>
28136
28137         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): Set REPLACE_FREXPL if frexpl
28138         was not found in libc.
28139         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Likewise.
28140
28141 2007-05-20  Bruno Haible  <bruno@clisp.org>
28142
28143         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
28144         printed as "-nan" instead of "nan".
28145         * tests/test-vasprintf-posix.c (test_function): Likewise.
28146         * tests/test-snprintf-posix.h (test_function): Likewise.
28147         * tests/test-sprintf-posix.h (test_function): Likewise.
28148         Needed for HP-UX 11.
28149
28150 2007-05-20  Jim Meyering  <jim@meyering.net>
28151
28152         Fix buggy test for the fchownat-deref bug.
28153         * m4/openat.m4 (gl_FUNC_FCHOWNAT_DEREF_BUG): Create the dangling
28154         symlink required for the run-test.  Without it, this test would
28155         always declare that fchownat doesn't work, and client code would
28156         unnecessarily use the replacement function with fixed libc.
28157         (gl_FUNC_FCHOWNAT): Eliminate a variable that wasn't initialized.
28158         Reported by Greg Schafer.
28159
28160 2007-05-19  Bruno Haible  <bruno@clisp.org>
28161
28162         * m4/isnanf.m4 (gl_ISNANF_WORKS): New macro.
28163         (gl_FUNC_ISNANF_NO_LIBM): Invoke it.
28164         * lib/isnan.c (FUNC): Use run-time expressions for SGI compiler.
28165         Needed for IRIX 6.5 and Solaris 2.5.1.
28166
28167 2007-05-19  Bruno Haible  <bruno@clisp.org>
28168
28169         * tests/test-vasnprintf-posix.c (have_minus_zero): New function.
28170         (test_function): Skip tests involving -0.0 on platforms where
28171         -0.0 = 0.0.
28172         * tests/test-vasprintf-posix.c (have_minus_zero): New function.
28173         (test_function): Skip tests involving -0.0 on platforms where
28174         -0.0 = 0.0.
28175         * tests/test-snprintf-posix.h (have_minus_zero): New function.
28176         (test_function): Skip tests involving -0.0 on platforms where
28177         -0.0 = 0.0.
28178         * tests/test-sprintf-posix.h (have_minus_zero): New function.
28179         (test_function): Skip tests involving -0.0 on platforms where
28180         -0.0 = 0.0.
28181         * tests/test-fprintf-posix.h (test_function): Remove all -0.0 related
28182         tests.
28183         * tests/test-printf-posix.h (test_function): Likewise.
28184         * tests/test-printf-posix.output: Remove all -0.0 related results.
28185         Needed for IRIX 6.5.
28186
28187 2007-05-19  Bruno Haible  <bruno@clisp.org>
28188
28189         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
28190         printed as "nan0x7fffffff" instead of "nan".
28191         * tests/test-vasprintf-posix.c (test_function): Likewise.
28192         * tests/test-snprintf-posix.h (test_function): Likewise.
28193         * tests/test-sprintf-posix.h (test_function): Likewise.
28194         * tests/test-fprintf-posix.h (NaN): Remove macro.
28195         (test_function): Remove all NaN related tests.
28196         * tests/test-printf-posix.h (NaN): Remove macro.
28197         (test_function): Remove all NaN related tests.
28198         * tests/test-printf-posix.output: Remove all NaN related results.
28199         Needed for IRIX 6.5.
28200
28201 2007-05-19  Bruno Haible  <bruno@clisp.org>
28202
28203         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Fix C89 syntax error in test code.
28204         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Likewise.
28205
28206 2007-05-19  Bruno Haible  <bruno@clisp.org>
28207
28208         * lib/float_.h: New file.
28209         * m4/float_h.m4: New file.
28210         * modules/float: New file.
28211         * modules/isnanl (Dependencies): Add float.
28212         * modules/isnanl-nolibm (Dependencies): Likewise.
28213         * modules/mathl (Dependencies): Likewise.
28214         * modules/printf-frexpl (Dependencies): Likewise.
28215         * modules/signbit (Dependencies): Likewise.
28216         * modules/vasnprintf (Dependencies): Likewise.
28217         * doc/headers/float.texi: Update.
28218
28219 2007-05-19  Jim Meyering  <jim@meyering.net>
28220
28221         * lib/utimens.c (gl_futimens): Rename from futimens,
28222         now that glibc-2.6 declares futimens.
28223         * lib/utimens.h: Likewise.
28224
28225 2007-05-19  Bruno Haible  <bruno@clisp.org>
28226
28227         Avoid test failures on mingw.
28228         * tests/test-fprintf-posix.sh: Convert CR/LF to LF in output.
28229         * tests/test-printf-posix.sh: Likewise.
28230         * tests/test-vfprintf-posix.sh: Likewise.
28231         * tests/test-vprintf-posix.sh: Likewise.
28232
28233 2007-05-19  Bruno Haible  <bruno@clisp.org>
28234
28235         Fix *printf result for NaN, Inf, -0.0 on mingw.
28236         * m4/printf.m4 (gl_PRINTF_INFINITE): New macro.
28237         * lib/vasnprintf.c: Include math.h and isnan.h.
28238         (is_infinite_or_zero): New function.
28239         (VASNPRINTF): Fix also the handling of infinite or zero 'double'
28240         values in the %f, %F, %e, %E, %g, %G directives.
28241         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE): New macro.
28242         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
28243         gl_PRINTF_INFINITE and test its result. Invoke
28244         gl_PREREQ_VASNPRINTF_INFINITE.
28245         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
28246         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
28247         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
28248         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
28249         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
28250         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
28251         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
28252         * doc/functions/fprintf.texi: Update.
28253         * doc/functions/printf.texi: Update.
28254         * doc/functions/snprintf.texi: Update.
28255         * doc/functions/sprintf.texi: Update.
28256         * doc/functions/vfprintf.texi: Update.
28257         * doc/functions/vprintf.texi: Update.
28258         * doc/functions/vsnprintf.texi: Update.
28259         * doc/functions/vsprintf.texi: Update.
28260
28261 2007-05-19  Bruno Haible  <bruno@clisp.org>
28262
28263         * lib/vasnprintf.c (convert_to_decimal): Add an extra_zeroes argument.
28264         (scale10_round_decimal_long_double): Inline scale10_round_long_double.
28265         Instead of multiplying with 10^k, set extra_zeroes to k.
28266         (scale10_round_long_double): Remove function.
28267
28268 2007-05-18  Bruno Haible  <bruno@clisp.org>
28269
28270         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Fix logic bug
28271         introduced on 2007-05-06.
28272
28273 2007-05-18  Bruno Haible  <bruno@clisp.org>
28274
28275         * tests/test-vasnprintf-posix.c (test_function): Also test the %e and
28276         %g directives.
28277         * tests/test-vasprintf-posix.c (test_function): Likewise.
28278         * tests/test-snprintf-posix.h (test_function): Likewise.
28279         * tests/test-sprintf-posix.h (test_function): Likewise.
28280
28281 2007-05-18  Bruno Haible  <bruno@clisp.org>
28282
28283         * tests/test-vasnprintf-posix.c (SIZEOF): New macro.
28284         (strmatch): New function.
28285         (test_function): Test the %f directive on numbers of various exponents.
28286         * tests/test-vasprintf-posix.c (SIZEOF): New macro.
28287         (strmatch): New function.
28288         (test_function): Test the %f directive on numbers of various exponents.
28289         * tests/test-snprintf-posix.h (strmatch): New function.
28290         (test_function): Test the %f directive on numbers of various exponents.
28291         * tests/test-sprintf-posix.h (strmatch): New function.
28292         (test_function): Test the %f directive on numbers of various exponents.
28293         * tests/test-snprintf-posix.c (SIZEOF): New macro.
28294         * tests/test-sprintf-posix.c (SIZEOF): New macro.
28295         * tests/test-vsnprintf-posix.c (SIZEOF): New macro.
28296         * tests/test-vsprintf-posix.c (SIZEOF): New macro.
28297
28298 2007-05-18  Bruno Haible  <bruno@clisp.org>
28299
28300         Add support for 'long double' number output.
28301         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE): New macro.
28302         * lib/vasnprintf.c: Include math.h and float+.h.
28303         (mp_limb_t): New type.
28304         (GMP_LIMB_BITS): New macro.
28305         (mp_twolimb_t): New type.
28306         (GMP_TWOLIMB_BITS): New macro.
28307         (mpn_t): New type.
28308         (multiply, divide, convert_to_decimal, decode_long_double,
28309         scale10_round_long_double, scale10_round_decimal_long_double,
28310         floorlog10l): New functions.
28311         (VASNPRINTF) [NEED_PRINTF_LONG_DOUBLE]: Implement 'long double' support
28312         for the %f, %F, %e, %E, %g, %G directives.
28313         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_LONG_DOUBLE): New macro.
28314         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
28315         gl_PRINTF_LONG_DOUBLE and test its result. Invoke
28316         gl_PREREQ_VASNPRINTF_LONG_DOUBLE.
28317         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
28318         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
28319         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
28320         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
28321         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
28322         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
28323         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
28324         * modules/fprintf-posix (Depends-on): Add frexpl-nolibm.
28325         * modules/snprintf-posix (Depends-on): Likewise.
28326         * modules/sprintf-posix (Depends-on): Likewise.
28327         * modules/vasnprintf-posix (Depends-on): Likewise.
28328         * modules/vasprintf-posix (Depends-on): Likewise.
28329         * modules/vfprintf-posix (Depends-on): Likewise.
28330         * modules/vsnprintf-posix (Depends-on): Likewise.
28331         * modules/vsprintf-posix (Depends-on): Likewise.
28332         * modules/vasnprintf (Files): Add lib/float+.h.
28333         * doc/functions/fprintf.texi: Update.
28334         * doc/functions/printf.texi: Update.
28335         * doc/functions/snprintf.texi: Update.
28336         * doc/functions/sprintf.texi: Update.
28337         * doc/functions/vfprintf.texi: Update.
28338         * doc/functions/vprintf.texi: Update.
28339         * doc/functions/vsnprintf.texi: Update.
28340         * doc/functions/vsprintf.texi: Update.
28341
28342 2007-05-18  Bruno Haible  <bruno@clisp.org>
28343
28344         * lib/vasnprintf.c (USE_SNPRINTF): Define to 0 on BeOS.
28345
28346 2007-05-18  Bruno Haible  <bruno@clisp.org>
28347
28348         * lib/vasnprintf.c (VASNPRINTF) [WIN32]: Use %I64d instead of %lld
28349         for printing 64-bit integers. Needed for mingw.
28350
28351 2007-05-18  Bruno Haible  <bruno@clisp.org>
28352
28353         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
28354         gl_FUNC_FREXPL_WORKS.
28355         * modules/printf-frexpl (Files): Add m4/frexpl.m4.
28356
28357 2007-05-18  Bruno Haible  <bruno@clisp.org>
28358
28359         * modules/frexpl-nolibm-tests: New file.
28360
28361         * modules/frexpl-nolibm: New file.
28362         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): New macro.
28363
28364 2007-05-17  Paul Eggert  <eggert@cs.ucla.edu>
28365
28366         * lib/dirent_.h: Prefer #include_next <foo.h> to #include
28367         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
28368         GCC 4.2, which otherwise issues a lot of warnings.
28369         * lib/iconv_.h, lib/locale_.h, lib/netinet_in_.h, lib/sys_select_.h:
28370         * lib/sys_socket_.h, lib/sys_stat_.h, lib/sysexits_.h, lib/unistd_.h:
28371         Likewise.
28372         * modules/fchdir (dirent.h): Substitute @HAVE_INCLUDE_NEXT@.
28373         * modules/iconv_open (iconv.h): Likewise.
28374         * modules/locale (locale.h): Likewise.
28375         * modules/netinet_in (netinet/in.h): Likewise.
28376         * modules/sys_select (sys_select.h): Likewise.
28377         * modules/sys_socket (sys/socket.h): Likewise.
28378         * modules/sys_stat (sys/stat.h): Likewise.
28379         * modules/sysexits (sysexits.h): Likewise.
28380         * modules/unistd (unistd.h): Likewise.
28381
28382 2007-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28383
28384         * modules/closein-tests (Makefile.am): Distribute
28385         `test-closein.sh'.
28386
28387 2007-05-17  Bruno Haible  <bruno@clisp.org>
28388
28389         * tests/test-printf-posix.output: Renamed from
28390         tests/test-fprintf-posix.out.
28391         * modules/fprintf-posix-tests: Update.
28392         * modules/printf-posix-tests: Update.
28393         * modules/vfprintf-posix-tests: Update.
28394         * modules/vprintf-posix-tests: Update.
28395         * tests/test-fprintf-posix.sh: Update.
28396         * tests/test-printf-posix.sh: Update.
28397         * tests/test-vfprintf-posix.sh: Update.
28398         * tests/test-vprintf-posix.sh: Update.
28399         Reported by Ralf Wildenhues.
28400
28401 2007-05-16  Paul Eggert  <eggert@cs.ucla.edu>
28402
28403         * lib/fcntl_.h: Prefer #include_next <foo.h> to #include
28404         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
28405         GCC 4.2, which otherwise issues a lot of warnings.
28406         * lib/inttypes_.h, lib/math_.h, lib/search_.h, lib/signal_.h:
28407         * lib/stdint_.h, lib/stdio_.h, lib/stdlib_.h, lib/string_.h:
28408         * lib/sys_time_.h, lib/time_.h, lib/wchar_.h, lib/wctype_.h: Likewise.
28409         * lib/stdlib_.h: Don't bother with #pragma GCC system_header, as
28410         it should no longer be needed.
28411         * lib/string_.h: Likewise.
28412         * modules/absolute-header (HAVE_INCLUDE_NEXT): New 'make' define.
28413         * modules/fcntl (fcntl.h): Substitute @HAVE_INCLUDE_NEXT@.
28414         * modules/inttypes (inttypes.h): Likewise.
28415         * modules/math (math.h): Likewise.
28416         * modules/search (search.h): Likewise.
28417         * modules/signal (signal.h): Likewise.
28418         * modules/stdint (stdint.h): Likewise.
28419         * modules/stdio (stdio.h): Likewise.
28420         * modules/stdlib (stdlib.h): Likewise.
28421         * modules/string (string.h): Likewise.
28422         * modules/sys_time (sys/time.h): Likewise.
28423         * modules/time (time.h): Likewise.
28424         * modules/wchar (wchar.h): Likewise.
28425         * modules/wctype (wtype.h): Likewise.
28426
28427 2007-05-16  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
28428
28429         * doc/gnulib-tool.texi (CVS Issues): Fix typo.
28430
28431 2007-05-13  Bruno Haible  <bruno@clisp.org>
28432
28433         * stpcpy.m4 (gl_FUNC_STPCPY): Require AC_C_RESTRICT.
28434         * stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
28435         * strsep.m4 (gl_FUNC_STRSEP): Likewise.
28436         * strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
28437         (gl_PREREQ_STRTOK_R): Don't require it here.
28438
28439 2007-05-13  Bruno Haible  <bruno@clisp.org>
28440
28441         * lib/stdlib_.h (mkdtemp, mkstemp): Comment out argument name. Needed
28442         when used in C++ mode.
28443
28444 2007-05-12  Bruno Haible  <bruno@clisp.org>
28445
28446         * lib/linebuffer.h: Tweak doc.
28447         * lib/linebuffer.c: Likewise.
28448
28449 2007-05-12  James Youngman  <jay@gnu.org>
28450
28451         * lib/linebuffer.c (readlinebuffer_delim): New function,
28452         like readlinebuffer, but use a caller-specified delimiter.
28453         (readlinebuffer): Just call readlinebuffer_delim with '\n'
28454         as the delimiter.
28455         * lib/linebuffer.h (readlinebuffer_delim): Declare it.
28456
28457 2007-05-12  Sergey Poznyakoff  <gray@gnu.org.ua>
28458
28459         * m4/openat.m4 (gl_FUNC_OPENAT): Do not require openat-die.
28460         * modules/openat (Files): Remove openat-die.c.
28461         (Depends-on): Add openat-die.
28462         * modules/openat-die: New module.
28463
28464 2007-05-06  Bruno Haible  <bruno@clisp.org>
28465
28466         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING, gl_VSNPRINTF_ZEROSIZE_C99):
28467         Update with info about Cygwin.
28468         * doc/functions/fprintf.texi: Update.
28469         * doc/functions/printf.texi: Update.
28470         * doc/functions/snprintf.texi: Update.
28471         * doc/functions/sprintf.texi: Update.
28472         * doc/functions/vfprintf.texi: Update.
28473         * doc/functions/vprintf.texi: Update.
28474         * doc/functions/vsnprintf.texi: Update.
28475         * doc/functions/vsprintf.texi: Update.
28476         Reported by Eric Blake.
28477
28478 2007-05-06  Bruno Haible  <bruno@clisp.org>
28479
28480         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Perform the
28481         padding ourselves for the floating-point directives.
28482         * m4/printf.m4 (gl_PRINTF_FLAG_ZERO): New macro.
28483         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_ZERO): New macro.
28484         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
28485         gl_PRINTF_FLAG_ZERO and test its result. Invoke
28486         gl_PREREQ_VASNPRINTF_FLAG_ZERO.
28487         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
28488         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
28489         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
28490         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
28491         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
28492         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
28493         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
28494         * tests/test-snprintf-posix.h (test_function): Also check the width
28495         and some flags in the %f directive.
28496         * tests/test-sprintf-posix.h (test_function): Likewise.
28497         * tests/test-vasnprintf-posix.c (test_function): Likewise.
28498         * tests/test-vasprintf-posix.c (test_function): Likewise.
28499         * doc/functions/fprintf.texi: Update.
28500         * doc/functions/printf.texi: Update.
28501         * doc/functions/snprintf.texi: Update.
28502         * doc/functions/sprintf.texi: Update.
28503         * doc/functions/vfprintf.texi: Update.
28504         * doc/functions/vprintf.texi: Update.
28505         * doc/functions/vsnprintf.texi: Update.
28506         * doc/functions/vsprintf.texi: Update.
28507
28508 2007-05-06  Bruno Haible  <bruno@clisp.org>
28509
28510         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_GROUPING]: Don't
28511         pass the ' flag character to sprintf or snprintf.
28512         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING): New macro.
28513         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_GROUPING): New macro.
28514         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
28515         gl_PRINTF_FLAG_GROUPING and test its result. Invoke
28516         gl_PREREQ_VASNPRINTF_FLAG_GROUPING.
28517         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
28518         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
28519         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
28520         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
28521         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
28522         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
28523         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
28524         * tests/test-snprintf-posix.h (test_function): Also check the grouping
28525         flag.
28526         * tests/test-sprintf-posix.h (test_function): Likewise.
28527         * tests/test-vasnprintf-posix.c (test_function): Likewise.
28528         * tests/test-vasprintf-posix.c (test_function): Likewise.
28529         * doc/functions/fprintf.texi: Update.
28530         * doc/functions/printf.texi: Update.
28531         * doc/functions/snprintf.texi: Update.
28532         * doc/functions/sprintf.texi: Update.
28533         * doc/functions/vfprintf.texi: Update.
28534         * doc/functions/vprintf.texi: Update.
28535         * doc/functions/vsnprintf.texi: Update.
28536         * doc/functions/vsprintf.texi: Update.
28537
28538 2007-05-01  Bruno Haible  <bruno@clisp.org>
28539
28540         * tests/test-argp-2.sh (func_compare): Drop .exe suffix.
28541
28542 2007-05-03  Paul Eggert  <eggert@cs.ucla.edu>
28543
28544         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Use better
28545         comment for D_INO_IN_DIRENT.  Problem reported by James Youngman.
28546
28547 2007-05-02  Paul Eggert  <eggert@cs.ucla.edu>
28548
28549         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Test whether
28550         readdir returns garbage in d_ino.  Problem reported by Kaz Sasayama in
28551         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00021.html>.
28552
28553 2007-05-02  Sergey Poznyakoff  <gray@gnu.org.ua>
28554
28555         * lib/argp-help.c (struct hol_entry): New member `ord'.
28556         (HOL_ENTRY_PTRCMP): Use ord for comparison
28557         (hol_sort): Initialize ord.
28558
28559 2007-05-01  Bruno Haible  <bruno@clisp.org>
28560
28561         * doc/functions/_Exit_C99.texi: Renamed from doc/functions/_Exit.texi.
28562         Reported by Eric Blake.
28563         * doc/gnulib.texi (Function Substitutes): Update.
28564
28565 2007-05-01  Bruno Haible  <bruno@clisp.org>
28566
28567         * doc/functions.texi: Remove file, now redundant through
28568         doc/functions/*.texi.
28569
28570 2007-05-01  Bruno Haible  <bruno@clisp.org>
28571
28572         * modules/argp (Depends-on): Add sleep.
28573
28574 2007-05-01  Bruno Haible  <bruno@clisp.org>
28575
28576         * modules/sleep-tests: New file.
28577         * tests/test-sleep.c: New file.
28578
28579         * modules/sleep: New file.
28580         * lib/sleep.c: New file.
28581         * m4/sleep.m4: New file.
28582         * lib/unistd_.h (sleep): New declaration.
28583         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_SLEEP,
28584         HAVE_SLEEP.
28585         * modules/unistd (Makefile.am): Substitute GNULIB_SLEEP, HAVE_SLEEP.
28586         * doc/functions/sleep.texi: Document the sleep module.
28587
28588 2007-05-01  Bruno Haible  <bruno@clisp.org>
28589
28590         * lib/sigprocmask.h: Remove file.
28591         * lib/signal_.h: Incorporate the previous contents of sigprocmask.h.
28592         * lib/sigprocmask.c: Include <signal.h> instead of sigprocmask.h.
28593         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Substitute GNULIB_SIGPROCMASK,
28594         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T.
28595         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Require
28596         gl_SIGNAL_H_DEFAULTS. Set HAVE_POSIX_SIGNALBLOCKING as a shell variable.
28597         (gl_PREREQ_SIGPROCMASK): Require gl_SIGNAL_H_DEFAULTS. Set
28598         HAVE_SIGSET_T as a shell variable.
28599         * modules/signal (Makefile.am): Substitute GNULIB_SIGPROCMASK,
28600         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T into signal.h.
28601         * modules/sigprocmask (Files): Remove lib/sigprocmask.h.
28602         (Depends-on): Add signal. Remove verify.
28603         (configure.ac): Invoke gl_SIGNAL_MODULE_INDICATOR.
28604         (Include): Mention <signal.h> instead of sigprocmask.h.
28605         * NEWS: Mention the change.
28606         * lib/fatal-signal.c: Don't include sigprocmask.h.
28607
28608 2007-05-01  Bruno Haible  <bruno@clisp.org>
28609
28610         * modules/signal: New file.
28611         * lib/signal_.h: New file.
28612         * m4/signal_h.m4: New file.
28613
28614 2007-05-01  Bruno Haible  <bruno@clisp.org>
28615
28616         * lib/wctype_.h: Test HAVE_ISWCNTRL at configure time.
28617         * m4/wctype.m4 (gl_WCTYPE_H): Substitute HAVE_ISWCNTRL.
28618         * modules/wctype (Makefile.am): Substitute HAVE_ISWCNTRL instead of
28619         HAVE_WCTYPE_CTMP_BUG into wctype.h.
28620
28621 2007-05-01  Bruno Haible  <bruno@clisp.org>
28622
28623         * lib/sys_stat_.h: Test HAVE_LSTAT, HAVE_DECL_MKDIR, HAVE_IO_H at
28624         configure time.
28625         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Substitute HAVE_LSTAT,
28626         HAVE_DECL_MKDIR, HAVE_IO_H via AC_SUBST.
28627         * modules/sys_stat (Makefile.am): Substitute their values into
28628         sys/stat.h.
28629
28630 2007-05-01  Bruno Haible  <bruno@clisp.org>
28631
28632         * lib/glob_.h: Test HAVE_SYS_CDEFS_H at configure time.
28633         * m4/glob.m4 (gl_PREREQ_GLOB): Substitute HAVE_SYS_CDEFS_H via AC_SUBST.
28634         * modules/glob (Makefile.am): Put HAVE_SYS_CDEFS_H value into glob.h.
28635
28636 2007-05-01  Bruno Haible  <bruno@clisp.org>
28637
28638         * doc/header/assert.texi: Undo last change: don't mention the gnulib
28639         'assert' module here.
28640
28641 2007-05-01  Bruno Haible  <bruno@clisp.org>
28642
28643         * doc/functions/*.texi: New files.
28644         * doc/functions/google-ranking.txt: New file.
28645         * doc/gnulib.texi (Function Substitutes): New chapter.
28646         (ctime, inet_ntoa): Remove sections.
28647         * doc/ctime.texi: Remove file.
28648         * doc/inet_ntoa.texi: Remove file.
28649         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Update
28650         dependencies.
28651         (%.info): New rule, specifying a --reference-limit.
28652
28653 2007-05-01  Bruno Haible  <bruno@clisp.org>
28654
28655         * MODULES.html.sh (posix_functions): Remove 'exec', 'toc'.
28656
28657 2007-05-01  Bruno Haible  <bruno@clisp.org>
28658
28659         * modules/mkdir (Depends-on): Add sys_stat, because sys_stat provides
28660         the portability of 'mkdir' to mingw systems.
28661
28662 2007-05-01  Bruno Haible  <bruno@clisp.org>
28663
28664         * doc/headers/google-ranking.txt: New file.
28665
28666 2007-04-30  Eric Blake  <ebb9@byu.net>
28667
28668         Prefer fseeko to fseek.
28669         * modules/getpass (Depends-on): Add fseeko.
28670         * lib/getpass.c (getpass): Use fseeko, not fseek.
28671
28672 2007-04-30  Sergey Poznyakoff  <gray@gnu.org.ua>
28673
28674         * lib/argp-help.c (hol_entry_cmp): Option sorting algorithm
28675         assumes the sorting is stable, while most qsort implementations
28676         are not.  Use argument addresses to ensure they never compare as
28677         equal.
28678
28679         * tests/test-argp-2.sh (usage-indent test): Fix output
28680         (func_compare): Restore diff options
28681         * tests/test-argp.c: Restore #include "progname.h"
28682
28683 2007-04-29  Bruno Haible  <bruno@clisp.org>
28684
28685         * m4/printf.m4 (gl_VSNPRINTF_ZEROSIZE_C99): New macro.
28686         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
28687         gl_VSNPRINTF_ZEROSIZE_C99. Test gl_cv_func_vsnprintf_zerosize_c99.
28688         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
28689         * modules/snprintf-posix-tests (Files): Add tests/test-snprintf.c.
28690         (configure.ac): Define CHECK_SNPRINTF_POSIX.
28691         (TESTS, check_PROGRAMS): Add test-snprintf.
28692         * modules/vsnprintf-posix-tests (Files): Add tests/test-vsnprintf.c.
28693         (configure.ac): Define CHECK_VSNPRINTF_POSIX.
28694         (TESTS, check_PROGRAMS): Add test-vsnprintf.
28695         * tests/test-snprintf.c (main) [!CHECK_SNPRINTF_POSIX]: Disable
28696         assertions that fail on HP-UX, OSF/1, or IRIX.
28697         * tests/test-vsnprintf.c (main) [!CHECK_VSNPRINTF_POSIX]: Likewise.
28698
28699 2007-04-29  Bruno Haible  <bruno@clisp.org>
28700
28701         * MODULES.html.sh (posix_functions): Remove 'contents'.
28702
28703 2007-04-29  Karl Berry  <karl@gnu.org>
28704
28705         * config/srclist.txt (gendocs_template_min): new entry.
28706
28707 2007-04-29  Bruno Haible  <bruno@clisp.org>
28708
28709         Work around fpurge bug on BSD systems.
28710         * modules/fpurge (Makefile.am): Compile fpurge.c unconditionally.
28711         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't invoke AC_LIBOBJ.
28712         * lib/fpurge.h (fpurge): Don't handle __fpurge wrapper here. Define
28713         fpurge to rpl_fpurge if the system already has this function.
28714         * lib/fpurge.c (fpurge): Handle also the __fpurge wrapper case and
28715         the case where the system already has this function. Correct invariants
28716         on BSD systems.
28717         * lib/fseeko.c (rpl_fseeko): Update recognition of preceding fflush on
28718         BSD systems.
28719
28720 2007-04-29  Sergey Poznyakoff  <gray@gnu.org.ua>
28721
28722         * lib/argp-help.c (hol_cluster_cmp): Reverse comparison.  Change
28723         proposed by Sven Verdoolaege.
28724
28725         * tests/test-argp.c: Fix option ordering.  Test deeply clustered
28726         options.
28727         * tests/test-argp-2.sh (func_compare): Use diff instead of cmp.
28728         (usage and help tests): Update
28729
28730 2007-04-29  Bruno Haible  <bruno@clisp.org>
28731
28732         * tests/test-fflush.c (main): Use a file of size 17, not 10.
28733         Print more information in case of failure. Disable a test on BeOS.
28734
28735 2007-04-29  Bruno Haible  <bruno@clisp.org>
28736
28737         * tests/**/test-*.[hc] (ASSERT): Use fprintf to show the line number.
28738         This helps debugging on systems on which no gdb is available.
28739
28740 2007-04-29  Bruno Haible  <bruno@clisp.org>
28741
28742         * lib/freading.h: Improve comments.
28743         * lib/fwriting.h: Likewise.
28744         * tests/test-freading.c (main): Don't check freading immediately after
28745         repositioning. Needed for glibc.
28746
28747 2007-04-29  Bruno Haible  <bruno@clisp.org>
28748
28749         * lib/freading.c (freading): Trivial simplification.
28750
28751 2007-04-28  Bruno Haible  <bruno@clisp.org>
28752
28753         * tests/test-fwriting.c (main): Also test the interaction between
28754         fflush and fwriting.
28755         * modules/fwriting-tests (Depends-on): Add fflush.
28756
28757         * tests/test-freading.c (main): Also test the interaction between
28758         fflush and freading.
28759         * modules/freading-tests (Depends-on): Add fflush.
28760
28761 2007-04-28  Bruno Haible  <bruno@clisp.org>
28762
28763         * lib/stdio_.h (fseek, ftell): Provide link warnings suggesting to use
28764         fseeko and ftello.
28765         Suggested by Eric Blake.
28766
28767 2007-04-28  Jim Meyering  <jim@meyering.net>
28768
28769         Avoid false-negative in gl_STDINT_H's C99 conformance test.
28770         * m4/stdint.m4 (gl_STDINT_H): When checking whether stdint.h conforms
28771         to C99, include all of gl_STDINT_INCLUDES, not just <stddef.h>.
28772
28773 2007-04-27  Eric Blake  <ebb9@byu.net>
28774
28775         * doc/headers/assert.texi (assert.h): Document assert module use.
28776
28777 2007-04-27  Bruno Haible  <bruno@clisp.org>
28778
28779         * doc/headers/*.texi: New files.
28780         * doc/gnulib.texi (Header File Substitutes): New chapter.
28781         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Specify
28782         dependencies.
28783         (standards.info ,standards.html, standards.dvi): Update dependencies.
28784         (mostlyclean, clean): New targets.
28785
28786 2007-04-27  Bruno Haible  <bruno@clisp.org>
28787
28788         * lib/sysexits_.h: Renamed from lib/sysexit_.h.
28789         * modules/sysexits (Files, Makefile.am): Update.
28790
28791         * lib/sys_socket_.h: Renamed from lib/socket_.h.
28792         * modules/sys_socket (Files, Makefile.am): Update.
28793
28794         * lib/sys_stat_.h: Renamed from lib/stat_.h.
28795         * modules/sys_stat (Files, Makefile.am): Update.
28796
28797 2007-04-27  Eric Blake  <ebb9@byu.net>
28798
28799         * lib/freading.h: Improve comments.
28800         * lib/fwriting.h: Likewise.
28801         * lib/fflush.c: Likewise.
28802
28803         Fix closein for mingw.
28804         * modules/closein-tests: Add tests for closein.
28805         * tests/test-closein.c: New file.
28806         * tests/test-closein.sh: Likewise.
28807         * lib/unistd_.h [!SEEK_CUR]: Mingw also needs stdlib.h for _exit.
28808         * lib/closein.c (close_stdin): Don't fflush non-seekable streams.
28809
28810 2007-04-27  Bruno Haible  <bruno@clisp.org>
28811
28812         * lib/inttypes_.h [_DECC]: Don't use #include_next if the compiler
28813         version is < 6.
28814         * lib/math_.h [__DECC]: Likewise.
28815         * lib/stdio_.h [__DECC]: Likewise.
28816         * lib/stdlib_.h [__DECC]: Likewise.
28817         * lib/string_.h [__DECC]: Likewise.
28818         * lib/time_.h [__DECC]: Likewise.
28819         * lib/wchar_.h [__DECC]: Likewise.
28820         * lib/wctype_.h [__DECC]: Likewise.
28821
28822 2007-04-27  Bruno Haible  <bruno@clisp.org>
28823
28824         * tests/test-fbufmode.c (main): Relax test, to avoid failure on mingw.
28825
28826 2007-04-27  Bruno Haible  <bruno@clisp.org>
28827
28828         * lib/fflush.c: Add comments.
28829         * modules/fpurge-tests (Depends-on): Add fflush.
28830         * modules/freadable-tests (Depends-on): Likewise.
28831         * modules/fwritable-tests (Depends-on): Likewise.
28832
28833 2007-04-27  Charles Wilson  <libtool@cwilson.fastmail.fm>
28834
28835         * m4/argz.m4 (gl_FUNC_ARGZ): Use !HAVE_WORKING_ARGZ instead of
28836         SYSTEM_ARGZ_IS_BROKEN.  Also, minor stylistic improvements.
28837         Report by Bruno Haible <bruno@clisp.org>.
28838
28839 2007-04-26  Eric Blake  <ebb9@byu.net>
28840
28841         Fix fflush on mingw.
28842         * modules/fflush (Depends-on): Add freading.
28843         * lib/fflush.c (rpl_fflush): Use freading to avoid losing buffered
28844         but unread data.
28845
28846 2007-04-26  Eric Blake  <ebb9@byu.net>
28847         and Bruno Haible  <bruno@clisp.org>
28848
28849         Implement freading and fwriting.
28850         * lib/freading.c: New file.
28851         * lib/freading.h: Likewise.
28852         * m4/freading.m4: Likewise.
28853         * modules/freading: Likewise.
28854         * modules/freading-tests: Likewise.
28855         * tests/test-freading.c: Likewise.
28856         * lib/fwriting.c: New file.
28857         * lib/fwriting.h: Likewise.
28858         * m4/fwriting.m4: Likewise.
28859         * modules/fwriting: Likewise.
28860         * modules/fwriting-tests: Likewise.
28861         * tests/test-fwriting.c: Likewise.
28862         * MODULES.html.sh (File stream based Input/Output): Mention them.
28863
28864 2007-04-26  Bruno Haible  <bruno@clisp.org>
28865
28866         * lib/stdio_.h (fseeko, ftello): Check that off_t has the same size as
28867         'long' when we assume it.
28868         Suggested by Eric Blake.
28869
28870 2007-04-26  Bruno Haible  <bruno@clisp.org>
28871
28872         Ensure fseeko, ftello are declared on glibc systems.
28873         * modules/fflush (configure.ac-early): Require AC_FUNC_FSEEKO.
28874         * modules/fseeko (configure.ac-early): Likewise.
28875         * modules/ftello (configure.ac-early): Likewise.
28876         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Don't define HAVE_FSEEKO, rely on
28877         AC_FUNC_FSEEKO for this.
28878         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Inline gl_CHECK_FSEEKO.
28879         (gl_CHECK_FSEEKO): Remove macro.
28880
28881 2007-04-26  Bruno Haible  <bruno@clisp.org>
28882
28883         * tests/test-fflush.c (main): Also check the ftell result after
28884         fflush and fseek/fseeko.
28885         * lib/fflush.c (rpl_fflush): For BSD implementations, update the
28886         file descriptor position cache in the stream.
28887         * lib/fseeko.c (rpl_fseeko): Likewise.
28888
28889 2007-04-26  Bruno Haible  <bruno@clisp.org>
28890
28891         * modules/fflush-tests (Depends-on): Add fseeko.
28892
28893 2007-04-25  Charles Wilson  <libtool@cwilson.fastmail.fm>
28894             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28895
28896         * lib/argz_.h: ensure error_t definition is obtained in same
28897         mechanism system argz.h would have.
28898         * m4/argz.m4 (gl_FUNC_ARGZ): add new test to check if $host's
28899         argz facilities are known bad.  Err on the side of caution if
28900         cross-compiling.
28901
28902 2007-04-25  Eric Blake  <ebb9@byu.net>
28903
28904         * lib/fpurge.c (includes): Use stdlib.h for free.
28905         * tests/test-fflush.c (main): Also test fflush-fseeko.
28906
28907 2007-04-25  Bruno Haible  <bruno@clisp.org>
28908
28909         Make fflush+fseek POSIX-compliant on FreeBSD and MacOS X.
28910         * lib/fseeko.c: New file.
28911         * lib/stdio_.h: Include <sys/types.h> when off_t is needed.
28912         (fseeko, fseek): Define to replacements if REPLACE_FFLUSH.
28913         * m4/fseeko.m4 (gl_CHECK_FSEEKO): New macro, extracted from
28914         gl_FUNC_FSEEKO.
28915         (gl_FUNC_FSEEKO): Invoke it.
28916         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Arrange to compile fseeko.c. Invoke
28917         gl_CHECK_FSEEKO. Define HAVE_FSEEKO.
28918         * modules/fflush (Files): Add lib/fseeko.c, m4/fseeko.m4.
28919
28920 2007-04-25  Bruno Haible  <bruno@clisp.org>
28921
28922         * modules/fflush (Depends-on): Add ftello.
28923
28924 2007-04-25  Bruno Haible  <bruno@clisp.org>
28925
28926         * modules/ftello-tests: New file.
28927         * tests/test-ftello.c: New file.
28928
28929         * modules/ftello: New file.
28930         * m4/ftello.m4: New file.
28931         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELLO,
28932         HAVE_FTELLO.
28933         * lib/stdio_.h (ftello): New declaration.
28934         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELLO,
28935         HAVE_FTELLO.
28936
28937 2007-04-25  Bruno Haible  <bruno@clisp.org>
28938
28939         * modules/fseeko-tests: New file.
28940         * tests/test-fseeko.c: New file.
28941
28942         * modules/fseeko: New file.
28943         * m4/fseeko.m4: New file.
28944         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEKO,
28945         HAVE_FSEEKO.
28946         * lib/stdio_.h (fseeko): New declaration.
28947         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEKO,
28948         HAVE_FSEEKO.
28949
28950 2007-04-25  Bruno Haible  <bruno@clisp.org>
28951
28952         * lib/stdio_.h (fflush): Add support for GNULIB_POSIXCHECK.
28953
28954 2007-04-25  Bruno Haible  <bruno@clisp.org>
28955
28956         * lib/unistd_.h: Include <stdio.h> if needed to get the SEEK_* macros.
28957         * tests/test-stdio.c: Check that the various SEEK_* macros are defined.
28958         * tests/test-unistd.c: Likewise.
28959         * tests/test-fcntl.c: Likewise.
28960
28961 2007-04-23  Eric Blake  <ebb9@byu.net>
28962
28963         * lib/fflush.c: Fix missing include.
28964         Reported by Bruno Haible.
28965
28966 2007-04-23  Bruno Haible  <bruno@clisp.org>
28967
28968         * lib/fpurge.c (fpurge) [glibc, BSD]: Free a malloc()ed ungetc buffer.
28969         Reported by Eric Blake.
28970
28971 2007-04-23  Bruno Haible  <bruno@clisp.org>
28972
28973         * lib/fbufmode.c (fbufmode): Port to Solaris/SPARC64.
28974
28975 2007-04-23  Bruno Haible  <bruno@clisp.org>
28976
28977         * lib/fseterr.c (fseterr): Don't hardcode the value of _IOERR.
28978
28979 2007-04-23  Bruno Haible  <bruno@clisp.org>
28980
28981         * tests/test-fbufmode.c (main): Be prepared to a failure of setvbuf.
28982         Needed on HP-UX 11.
28983
28984 2007-04-16  Eric Blake  <ebb9@byu.net>
28985
28986         Make fflush rely on fpurge.
28987         * lib/fflush.c (rpl_fflush): Rely on fpurge module, rather than
28988         open coding all variants.
28989         * modules/fflush (Depends-on): Add fpurge and unistd.
28990         * modules/fflush-tests (Depends-on): Unistd is no longer extra.
28991         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Simplify.
28992
28993         Fix --with-tests compilation on cygwin.
28994         * modules/argmatch-tests (Makefile.am): List gnulib library first
28995         in LDADD.
28996         * modules/argp-tests (Makefile.am): Likewise.
28997         * modules/array-list-tests (Makefile.am): Likewise.
28998         * modules/array-oset-tests (Makefile.am): Likewise.
28999         * modules/avltree-list-tests (Makefile.am): Likewise.
29000         * modules/avltree-oset-tests (Makefile.am): Likewise.
29001         * modules/avltreehash-list-tests (Makefile.am): Likewise.
29002         * modules/carray-list-tests (Makefile.am): Likewise.
29003         * modules/dirname-tests (Makefile.am): Likewise.
29004         * modules/frexp-tests (Makefile.am): Likewise.
29005         * modules/isnanl-tests (Makefile.am): Likewise.
29006         * modules/linked-list-tests (Makefile.am): Likewise.
29007         * modules/linkedhash-list-tests (Makefile.am): Likewise.
29008         * modules/lock-tests (Makefile.am): Likewise.
29009         * modules/rbtree-list-tests (Makefile.am): Likewise.
29010         * modules/rbtree-oset-tests (Makefile.am): Likewise.
29011         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
29012         * modules/tls-tests (Makefile.am): Likewise.
29013         * modules/tsearch-tests (Makefile.am): Likewise.
29014         * modules/xvasprintf-tests (Makefile.am): Likewise.
29015
29016         Fix fpurge for cygwin.
29017         * lib/fpurge.c (fpurge): Fix order of operation flub, and return a
29018         value.
29019         * modules/fpurge-tests (Depends-on): Clean up trash.
29020
29021 2007-04-16  Simon Josefsson  <simon@josefsson.org>
29022
29023         * lib/gc-libgcrypt.c (gc_hash_open): Shut up compiler warnings.
29024
29025         * m4/autobuild.m4: Re-indent.
29026
29027 2007-04-13  Bruno Haible  <bruno@clisp.org>
29028
29029         * modules/fpurge-tests: New file.
29030         * tests/test-fpurge.c: New file.
29031
29032         * modules/fpurge: New file.
29033         * lib/fpurge.h: New file.
29034         * lib/fpurge.c: New file.
29035         * m4/fpurge.m4: New file.
29036
29037 2007-04-13  Bruno Haible  <bruno@clisp.org>
29038
29039         * modules/fbufmode-tests: New file.
29040         * tests/test-fbufmode.c: New file.
29041
29042         * modules/fbufmode: New file.
29043         * lib/fbufmode.h: New file.
29044         * lib/fbufmode.c: New file.
29045         * m4/fbufmode.m4: New file.
29046
29047 2007-04-13  Bruno Haible  <bruno@clisp.org>
29048
29049         * modules/fwritable-tests: New file.
29050         * tests/test-fwritable.c: New file.
29051
29052         * modules/fwritable: New file.
29053         * lib/fwritable.h: New file.
29054         * lib/fwritable.c: New file.
29055         * m4/fwritable.m4: New file.
29056
29057 2007-04-13  Bruno Haible  <bruno@clisp.org>
29058
29059         * modules/freadable-tests: New file.
29060         * tests/test-freadable.c: New file.
29061
29062         * modules/freadable: New file.
29063         * lib/freadable.h: New file.
29064         * lib/freadable.c: New file.
29065         * m4/freadable.m4: New file.
29066
29067 2007-04-13  Bruno Haible  <bruno@clisp.org>
29068
29069         * modules/fflush-tests (Makefile.am): Remove EXTRA_DIST. Augment
29070         MOSTLYCLEANFILES.
29071
29072 2007-04-13  Paul Eggert  <eggert@cs.ucla.edu>
29073
29074         * build-aux/bootstrap (gnulib_tool_option_extras): New var, used by
29075         gzip bootstrap.conf to avoid dragging in i18n machinery.
29076         (gnulib_tool_option): Use it.
29077
29078 2007-04-13  Bruno Haible  <bruno@clisp.org>
29079
29080         * tests/test-vasnprintf-posix.c (test_function): Add tests for %f and
29081         %F directives.
29082         * tests/test-vasprintf-posix.c (test_function): Likewise.
29083         * tests/test-snprintf-posix.h (test_function): Likewise.
29084         * tests/test-sprintf-posix.h (test_function): Likewise.
29085         * tests/test-fprintf-posix.h (test_function): Likewise.
29086         * tests/test-printf-posix.h (test_function): Likewise.
29087         * tests/test-fprintf-posix.out: Likewise.
29088
29089 2007-04-13  Bruno Haible  <bruno@clisp.org>
29090
29091         * modules/lock-tests (configure.ac): For LIBSCHED, try also -lposix4.
29092         * modules/tls-tests (configure.ac): Likewise.
29093         Reported by Arto C. Nirkko <anirkko@insel.ch>.
29094
29095 2007-04-13  Bruno Haible  <bruno@clisp.org>
29096
29097         * lib/tls.c (glthread_tls_get): Fix return type.
29098         Patch by Arto C. Nirkko <anirkko@insel.ch>.
29099
29100 2007-04-12  Eric Blake  <ebb9@byu.net>
29101
29102         * modules/gettime (Depends-on): Remove gettime.
29103         Reported by Dmitry V. Levin.
29104
29105 2007-04-12  Bruno Haible  <bruno@clisp.org>
29106
29107         * modules/fflush (Include): Mention <stdio.h>.
29108         * modules/strtoimax (Include): Mention <inttypes.h>.
29109         * modules/strtoumax (Include): Likewise.
29110
29111 2007-04-12  Eric Blake  <ebb9@byu.net>
29112
29113         * .cvsignore: New file.
29114         * .gitignore: Likewise.
29115
29116 2007-04-12  Bruno Haible  <bruno@clisp.org>
29117
29118         * modules/iconv-tests (test_iconv_LDADD): Mention -liconv after LDADD,
29119         not before, since $(LDADD) often contains libgnu.a.
29120         * modules/striconv-tests (test_striconv_LDADD): Likewise.
29121         * modules/striconveh-tests (test_striconveh_LDADD): Likewise.
29122         * modules/striconveha-tests (test_striconveha_LDADD): Likewise.
29123         Needed on Cygwin.
29124
29125 2007-04-12  Eric Blake  <ebb9@byu.net>
29126
29127         Work around glibc's failure to flush stdin on fclose.
29128         * lib/closein.c (close_stdin): Flush stdin before closing.
29129
29130         Work around glibc's failure to reset seekable stdin on exit.
29131         * modules/closein: New module.
29132         * lib/closein.c: New file.
29133         * lib/closein.h: Likewise.
29134         * m4/closein.m4: Likewise.
29135         * MODULES.html.sh (File stream based Input/Output): Document it.
29136
29137 2007-04-12  Simon Josefsson  <simon@josefsson.org>
29138
29139         * gnulib-tool: Rename generated 'autobuild' script to
29140         'do-autobuild' in --create-megatestdir output.
29141
29142         * doc/gnulib.texi (Build robot for gnulib): Fix.
29143
29144 2007-04-12  Simon Josefsson  <simon@josefsson.org>
29145
29146         * modules/sysexits (Depends-on): Add absolute-header.
29147
29148 2007-04-12  Eric Blake  <ebb9@byu.net>
29149
29150         No need to preserve errno on success.
29151         * lib/fflush.c (rpl_fflush): Simplify errno tracking.
29152         Reported by Bruno Haible.
29153
29154 2007-04-12  Simon Josefsson  <simon@josefsson.org>
29155
29156         * MODULES.html.sh (Support for maintaining and releasing
29157         projects): Add autobuild.  Suggested by Eric Blake <ebb9@byu.net>.
29158
29159 2007-04-12  Simon Josefsson  <simon@josefsson.org>
29160
29161         * gnulib-tool (func_modules_add_dummy): Respect --avoid=dummy.
29162
29163 2007-04-12  Simon Josefsson  <simon@josefsson.org>
29164
29165         * modules/autobuild: New module.
29166
29167         * m4/autobuild.m4: New file.
29168
29169 2007-04-11  Bruno Haible  <bruno@clisp.org>
29170
29171         * lib/vasnprintf.c (VASNPRINTF): Implement the %F directive using the
29172         %f directive, if NEED_PRINTF_DIRECTIVE_F is defined.
29173         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_F): New macro.
29174         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_F): New macro.
29175         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
29176         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
29177         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
29178         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
29179         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
29180         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
29181         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Invoke
29182         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
29183         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
29184         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Invoke
29185         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
29186         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
29187         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Invoke
29188         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
29189         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
29190         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Invoke
29191         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
29192         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
29193         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Invoke
29194         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
29195         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
29196         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Invoke
29197         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
29198         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
29199         Reported by Eric Blake.
29200
29201 2007-04-11  Bruno Haible  <bruno@clisp.org>
29202
29203         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Fix test. It always failed.
29204
29205 2007-04-10  Bruno Haible  <bruno@clisp.org>
29206
29207         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct result
29208         for NaN and Infinity. Needed on FreeBSD 6.1.
29209         * tests/test-vasnprintf-posix.c (test_function): Undo last change
29210         regarding results for "%010a" of Infinity and NaN.
29211         * tests/test-vasprintf-posix.c (test_function): Likewise.
29212         * tests/test-snprintf-posix.h (test_function): Likewise.
29213         * tests/test-sprintf-posix.h (test_function): Likewise.
29214         * tests/test-fprintf-posix.h (test_function): Likewise.
29215         * tests/test-printf-posix.h (test_function): Likewise.
29216         * tests/test-fprintf-posix.out: Likewise.
29217
29218 2007-04-10  Bruno Haible  <bruno@clisp.org>
29219
29220         * modules/locale-tests: New file.
29221         * tests/test-locale.c: New file.
29222
29223         * modules/locale: New file.
29224         * lib/locale_.h: New file.
29225         * m4/locale_h.m4: New file.
29226
29227 2007-04-10  Paul Eggert  <eggert@cs.ucla.edu>
29228             Bruno Haible  <bruno@clisp.org>
29229
29230         * m4/signbit.m4 (gl_SIGNBIT): When the sign bit position could not
29231         be determined, test for availability of the copysignf, copysign,
29232         copysignl functions.
29233         * lib/signbitf.c (gl_signbitf): Use copysignf if available in libc.
29234         * lib/signbitd.c (gl_signbitd): Use copysign if available in libc.
29235         * lib/signbitl.c (gl_signbitl): Use copysignl if available in libc.
29236
29237 2007-04-09  Eric Blake  <ebb9@byu.net>
29238
29239         * lib/stdio_.h [REPLACE_FFLUSH]: Declare rpl_fflush.
29240         * modules/stdio (Makefile.am): Support fflush.
29241         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
29242         * modules/fflush: New file.
29243         * lib/fflush.c: Likewise.
29244         * m4/fflush.m4: Likewise.
29245         * modules/fflush-tests: New test.
29246         * tests/test-fflush.c: Likewise.
29247         * MODULES.html.sh (Input/output <stdio.h>): Document new module.
29248
29249 2007-04-06  Bruno Haible  <bruno@clisp.org>
29250
29251         * lib/vasnprintf.c: Include <math.h>. Don't include float+.h.
29252         (VASNPRINTF): Use signbit for faster determination whether to print a
29253         minus sign.
29254         * modules/vasnprintf (Files): Remove lib/float+.h.
29255         * modules/fprintf-posix (Depends-on): Add signbit.
29256         * modules/snprintf-posix (Depends-on): Likewise.
29257         * modules/sprintf-posix (Depends-on): Likewise.
29258         * modules/vasnprintf-posix (Depends-on): Likewise.
29259         * modules/vasprintf-posix (Depends-on): Likewise.
29260         * modules/vfprintf-posix (Depends-on): Likewise.
29261         * modules/vsnprintf-posix (Depends-on): Likewise.
29262         * modules/vsprintf-posix (Depends-on): Likewise.
29263
29264 2007-04-06  Bruno Haible  <bruno@clisp.org>
29265
29266         * tests/test-frexp.c (main): Test also the sign bit of zero results.
29267         * tests/test-frexpl.c (main): Likewise.
29268         * tests/test-ldexpl.c (main): Likewise.
29269         * modules/frexp-tests (Depends-on): Add signbit.
29270         * modules/frexpl-tests (Depdends-on): Likewise.
29271         * modules/ldexpl-tests (Depdends-on): Likewise.
29272
29273 2007-04-06  Bruno Haible  <bruno@clisp.org>
29274
29275         * modules/signbit-tests: New file.
29276         * tests/test-signbit.c: New file.
29277
29278         * modules/signbit: New file.
29279         * lib/signbitf.c: New file.
29280         * lib/signbitd.c: New file.
29281         * lib/signbitl.c: New file.
29282         * m4/signbit.m4: New file.
29283         * lib/math_.h (gl_signbitf, gl_signbitd, gl_signbitl): New declarations.
29284         (signbit): New macro.
29285         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_SIGNBIT and
29286         REPLACE_SIGNBIT.
29287         * modules/math (Makefile.am) Substibute also GNULIB_SIGNBIT and
29288         REPLACE_FREXPL into math.h.
29289
29290 2007-04-06  Bruno Haible  <bruno@clisp.org>
29291
29292         * modules/isnanf-nolibm-tests: New file.
29293         * tests/test-isnanf.c: New file.
29294
29295         * modules/isnanf-nolibm: New file.
29296         * lib/isnanf.h: New file.
29297         * lib/isnanf.c: New file.
29298         * lib/isnan.c: Consider the USE_FLOAT macro.
29299         * m4/isnanf.m4: New file.
29300
29301 2007-04-06  Bruno Haible  <bruno@clisp.org>
29302
29303         * modules/gettext-h (configure.ac): AC_SUBST LIBINTL and LTLIBINTL.
29304         (Link): New section.
29305
29306         * modules/canonicalize-lgpl-tests (Makefile.am): Undo last change.
29307
29308 2007-04-06  Bruno Haible  <bruno@clisp.org>
29309
29310         Assume the 'long double' type.
29311         * m4/longdouble.m4: Remove file.
29312         * config/srclist.txt: Don't mention longdouble.m4.
29313         * lib/allocsa.h: Assume HAVE_LONG_DOUBLE to be true.
29314         * lib/float+.h: Likewise.
29315         * lib/frexp.c: Likewise.
29316         * lib/printf-args.h: Likewise.
29317         * lib/printf-args.c: Likewise.
29318         * lib/printf-frexp.c: Likewise.
29319         * lib/printf-parse.c: Likewise.
29320         * lib/vasnprintf.c: Likewise.
29321         * m4/allocsa.m4: Remove gt_TYPE_LONGDOUBLE invocation.
29322         * m4/intl.m4: Likewise.
29323         * m4/isnanl.m4: Likewise.
29324         * m4/printf.m4: Likewise.
29325         * m4/printf-frexpl.m4: Likewise.
29326         * m4/vasnprintf.m4: Likewise.
29327         * modules/allocsa (Files): Remove m4/longdouble.m4.
29328         * modules/gettext (Files): Likewise.
29329         * modules/relocatable-prog-wrapper (Files): Likewise.
29330         * modules/vasnprintf (Files): Likewise.
29331         * modules/isnanl (Files): Likewise.
29332         (Include): Simplify.
29333         * modules/isnanl-nolibm (Files): Remove m4/longdouble.m4.
29334         (Include): Simplify.
29335         * modules/printf-frexpl (Files): Remove m4/longdouble.m4.
29336         (Include): Simplify.
29337         * modules/snprintf-posix-tests (Files): Remove m4/longdouble.m4.
29338         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
29339         * modules/sprintf-posix-tests (Files): Remove m4/longdouble.m4.
29340         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
29341         * modules/vasnprintf-posix-tests (Files): Remove m4/longdouble.m4.
29342         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
29343         * modules/vasprintf-posix-tests (Files): Remove m4/longdouble.m4.
29344         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
29345         * modules/vsnprintf-posix-tests (Files): Remove m4/longdouble.m4.
29346         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
29347         * modules/vsprintf-posix-tests (Files): Remove m4/longdouble.m4.
29348         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
29349         * tests/test-isnanl-nolibm.c: Assume HAVE_LONG_DOUBLE to be true.
29350         * tests/test-isnanl.c: Likewise.
29351         * tests/test-snprintf-posix.h: Likewise.
29352         * tests/test-sprintf-posix.h: Likewise.
29353         * tests/test-vasnprintf-posix.c: Likewise.
29354         * tests/test-vasnprintf-posix2.c: Likewise.
29355         * tests/test-vasprintf-posix.c: Likewise.
29356
29357 2007-04-06  Bruno Haible  <bruno@clisp.org>
29358
29359         Fix problem with Compaq (ex-DEC) Desktop C compiler on Tru64.
29360         * lib/math_.h [__DECC]: Include the overridden include file through
29361         #include_next, outside the double-inclusion guard.
29362         * lib/stdio_.h [__DECC]: Likewise.
29363         * lib/stdlib_.h [__DECC]: Likewise.
29364         * lib/string_.h [__DECC]: Likewise.
29365         * lib/time_.h [__DECC]: Likewise.
29366         * lib/wchar_.h [__DECC]: Likewise.
29367         * lib/wctype_.h [__DECC]: Likewise.
29368         * lib/inttypes_.h [__DECC]: Likewise.
29369         Reported by Albert Chin <china@thewrittenword.com> in
29370         <http://lists.gnu.org/archive/html/bug-gnulib/2007-04/msg00088.html>.
29371
29372 2007-04-04  Eric Blake  <ebb9@byu.net>
29373
29374         * m4/stdint.m4 (gl_STDINT_H): Detect WINT_MAX bug in cygwin
29375         1.5.x.
29376
29377 2007-04-04  Bruno Haible  <bruno@clisp.org>
29378
29379         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct
29380         rounding. Don't assume that FreeBSD 6 and NetBSD 4 pass this test.
29381
29382 2007-04-04  Bruno Haible  <bruno@clisp.org>
29383
29384         * tests/test-vasnprintf-posix.c (test_function): Allow two possible
29385         results for "%010a" of Infinity and NaN.
29386         * tests/test-vasprintf-posix.c (test_function): Likewise.
29387         * tests/test-snprintf-posix.h (test_function): Likewise.
29388         * tests/test-sprintf-posix.h (test_function): Likewise.
29389         * tests/test-fprintf-posix.h (test_function): Remove these tests.
29390         * tests/test-printf-posix.h (test_function): Likewise.
29391         * tests/test-fprintf-posix.out: Update.
29392         Needed for FreeBSD 6.1.
29393
29394 2007-04-04  Bruno Haible  <bruno@clisp.org>
29395
29396         * DEPENDENCIES: Remove mentions of tar and gzip, since they are not
29397         directly used by the gnulib modules nor by gnulib-tool.
29398
29399 2007-04-04  Paul Eggert  <eggert@cs.ucla.edu>
29400
29401         * DEPENDENCIES: Give overall description of version dependency
29402         desirability.  Use more-typical names for apps.
29403         Add shell, coreutils, diffutils, grep, tar, gzip.
29404
29405 2007-04-04  Simon Josefsson  <simon@josefsson.org>
29406
29407         * MODULES.html.sh: Rename crypto modules.  Remove iconvme.
29408
29409 2007-04-04  Karl Berry  <karl@gnu.org>
29410
29411         * MODULES.html.sh (func_module): missing '.
29412
29413 2007-04-03  Bruno Haible  <bruno@clisp.org>
29414
29415         * modules/argmatch-tests (Makefile.am): New variable
29416         test_argmatch_LDADD.
29417         * modules/argp-tests (Makefile.am): New variable test_argp_LDADD.
29418         * modules/array-list-tests (Makefile.am): New variable
29419         test_array_list_LDADD.
29420         * modules/array-oset-tests (Makefile.am): New variable
29421         test_array_oset_LDADD.
29422         * modules/avltree-list-tests (Makefile.am): New variable
29423         test_avltree_list_LDADD.
29424         * modules/avltree-oset-tests (Makefile.am): New variable
29425         test_avltree_oset_LDADD.
29426         * modules/avltreehash-list-tests (Makefile.am): New variable
29427         test_avltreehash_list_LDADD.
29428         * modules/canonicalize-lgpl-tests (Makefile.am): New variable
29429         test_canonicalize_lgpl_LDADD.
29430         * modules/carray-list-tests (Makefile.am): New variable
29431         test_carray_list_LDADD.
29432         * modules/dirname-tests (Makefile.am): New variable
29433         test_dirname_LDADD.
29434         * modules/linked-list-tests (Makefile.am): New variable
29435         test_linked_list_LDADD.
29436         * modules/linkedhash-list-tests (Makefile.am): New variable
29437         test_linkedhash_list_LDADD.
29438         * modules/rbtree-list-tests (Makefile.am): New variable
29439         test_rbtree_list_LDADD.
29440         * modules/rbtree-oset-tests (Makefile.am): New variable
29441         test_rbtree_oset_LDADD.
29442         * modules/rbtreehash-list-tests (Makefile.am): New variable
29443         test_rbtreehash_list_LDADD.
29444         * modules/xvasprintf-tests (Makefile.am): New variable
29445         test_xvasprintf_LDADD.
29446         Reported by Eric Blake.
29447
29448 2007-04-03  Eric Blake  <ebb9@byu.net>
29449
29450         * DEPENDENCIES: Weaken m4 requirements.
29451
29452 2007-04-03  Bruno Haible  <bruno@clisp.org>
29453
29454         * modules/frexp-tests (configure.ac): Remove AC_SUBST.
29455         * modules/isnanl-tests (configure.ac): Likewise.
29456
29457 2007-04-03  Ben Pfaff  <blp@gnu.org>
29458
29459         * modules/iconv_open: Add $(srcdir)/ to source directory
29460         references in Makefile fragments that call gperf, to fix VPATH
29461         builds.
29462
29463 2007-04-03  Bruno Haible  <bruno@clisp.org>
29464
29465         * modules/ldexpl (Depends-on): Add isnanl, remove isnanl-nolibm.
29466         * lib/ldexpl.c: Undo last change.
29467
29468 2007-04-03  Bruno Haible  <bruno@clisp.org>
29469
29470         * modules/printf-frexpl (Depends-on): Undo last change.
29471         (Files): Add m4/ldexpl.m4.
29472
29473 2007-04-03  Bruno Haible  <bruno@clisp.org>
29474
29475         * m4/isnanl.m4 (gl_FUNC_ISNANL): Substitute ISNANL_LIBM.
29476         * modules/isnanl (Link): New section.
29477
29478         * m4/frexp.m4 (gl_FUNC_FREXP): Substitute FREXP_LIBM.
29479         * modules/frexp (Link): New section.
29480
29481         * m4/frexpl.m4 (gl_FUNC_FREXPL): Substitute FREXPL_LIBM.
29482         * modules/frexpl (Link): New section.
29483
29484         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Substitute LDEXPL_LIBM.
29485         * modules/ldexpl (Link): New section.
29486
29487 2007-04-03  Bruno Haible  <bruno@clisp.org>
29488
29489         * modules/TEMPLATE-EXTENDED: New file.
29490         * gnulib-tool (func_all_modules, func_verify_module): Exclude it.
29491
29492 2007-04-03  Bruno Haible  <bruno@clisp.org>
29493
29494         * DEPENDENCIES: New file.
29495         Suggested by Simon Josefsson.
29496
29497 2007-04-03  Bruno Haible  <bruno@clisp.org>
29498
29499         * doc/gnulib.texi: Escape @.
29500
29501 2007-04-03  James Youngman  <jay@gnu.org>
29502         and Paul Eggert  <eggert@cs.ucla.edu>
29503
29504         * lib/stat-time.h (get_stat_birthtime): Check for zero-valued
29505         birthtime on all systems that have birthtime, not just those which
29506         use st_birthtimensec rather than st_birthtim.  Putting zero in
29507         st_birthtim.tv_sec is how (for example) FreeBSD/x86 6.1 indicates
29508         that the birth time is not available for files on an NFS mount.
29509
29510 2007-04-03  Simon Josefsson  <simon@josefsson.org>
29511
29512         * modules/memxor: Move back from crypto/, suggested by Bruno.
29513         * modules/crypto/hmac-sha1: Fix memxor dependency.
29514
29515         * modules/crypto/gc: Moved from ../.
29516
29517 2007-04-02  Eric Blake  <ebb9@byu.net>
29518
29519         * lib/ldexpl.c (includes): Avoid libm.
29520
29521         * modules/printf-frexpl (Depends-on): Depend on ldexpl.
29522
29523 2007-04-02  Bruno Haible  <bruno@clisp.org>
29524
29525         * lib/sysexit_.h (EX_OK): Disable the EX_OK definition from <unistd.h>
29526         on IRIX.
29527
29528 2007-04-02  Bruno Haible  <bruno@clisp.org>
29529
29530         * m4/intdiv0.m4 (gt_INTDIV0): Avoid performing the test for real on
29531         x86 or x86_64 platforms running MacOS X.
29532         Reported by Ryan Schmidt <@ryandesign.com>.
29533
29534 2007-04-02  Bruno Haible  <bruno@clisp.org>
29535
29536         * m4/intdiv0.m4 (gt_INTDIV0): When cross-compiling, treat x86_64 like
29537         i386.
29538
29539 2007-04-01  Simon Josefsson  <simon@josefsson.org>
29540
29541         * modules/crypto/arcfour: Moved from ../.
29542         * modules/crypto/arcfour-tests: Moved from ../.
29543         * modules/crypto/arctwo: Moved from ../.
29544         * modules/crypto/arctwo-tests: Moved from ../.
29545         * modules/crypto/des: Moved from ../.
29546         * modules/crypto/des-tests: Moved from ../.
29547         * modules/crypto/gc-arcfour: Moved from ../.
29548         * modules/crypto/gc-arcfour-tests: Moved from ../.
29549         * modules/crypto/gc-arctwo: Moved from ../.
29550         * modules/crypto/gc-arctwo-tests: Moved from ../.
29551         * modules/crypto/gc-des: Moved from ../.
29552         * modules/crypto/gc-des-tests: Moved from ../.
29553         * modules/crypto/gc-hmac-md5: Moved from ../.
29554         * modules/crypto/gc-hmac-md5-tests: Moved from ../.
29555         * modules/crypto/gc-hmac-sha1: Moved from ../.
29556         * modules/crypto/gc-hmac-sha1-tests: Moved from ../.
29557         * modules/crypto/gc-md2: Moved from ../.
29558         * modules/crypto/gc-md2-tests: Moved from ../.
29559         * modules/crypto/gc-md4: Moved from ../.
29560         * modules/crypto/gc-md4-tests: Moved from ../.
29561         * modules/crypto/gc-md5: Moved from ../.
29562         * modules/crypto/gc-md5-tests: Moved from ../.
29563         * modules/crypto/gc-pbkdf2-sha1: Moved from ../.
29564         * modules/crypto/gc-pbkdf2-sha1-tests: Moved from ../.
29565         * modules/crypto/gc-random: Moved from ../.
29566         * modules/crypto/gc-rijndael: Moved from ../.
29567         * modules/crypto/gc-rijndael-tests: Moved from ../.
29568         * modules/crypto/gc-sha1: Moved from ../.
29569         * modules/crypto/gc-sha1-tests: Moved from ../.
29570         * modules/crypto/gc-tests: Moved from ../.
29571         * modules/crypto/hmac-md5: Moved from ../.
29572         * modules/crypto/hmac-md5-tests: Moved from ../.
29573         * modules/crypto/hmac-sha1: Moved from ../.
29574         * modules/crypto/hmac-sha1-tests: Moved from ../.
29575         * modules/crypto/md2: Moved from ../.
29576         * modules/crypto/md2-tests: Moved from ../.
29577         * modules/crypto/md4: Moved from ../.
29578         * modules/crypto/md4-tests: Moved from ../.
29579         * modules/crypto/md5: Moved from ../.
29580         * modules/crypto/md5-tests: Moved from ../.
29581         * modules/crypto/memxor: Moved from ../.
29582         * modules/crypto/rijndael: Moved from ../.
29583         * modules/crypto/rijndael-tests: Moved from ../.
29584         * modules/crypto/sha1: Moved from ../.
29585
29586 2007-03-30  James Youngman  <jay@gnu.org>
29587
29588         * tests/test-stat-time.c (prepare_test): use chmod() rather than
29589         rename() to change the ctime of a file (because ctime is unaffected
29590         by rename on jfs2 on AIX 5.1).
29591         (main): Start by doing cleanup, in case a previous run failed leaving
29592         test files behind.
29593
29594 2007-03-31  Bruno Haible  <bruno@clisp.org>
29595
29596         Support old proprietary implementations of iconv.
29597         * modules/iconv_open: New file.
29598         * lib/iconv_.h: New file.
29599         * m4/iconv_h.m4: New file.
29600         * lib/iconv_open.c: New file.
29601         * lib/iconv_open-aix.gperf: New file.
29602         * lib/iconv_open-hpux.gperf: New file.
29603         * lib/iconv_open-irix.gperf: New file.
29604         * lib/iconv_open-osf.gperf: New file.
29605         * m4/iconv_open.m4: New file.
29606         * modules/linebreak (Depends-on): Add iconv_open.
29607         * modules/striconv (Depends-on): Likewise.
29608         * modules/striconveh (Depends-on): Likewise.
29609         * modules/unicodeio (Depends-on): Likewise.
29610         * lib/striconveh.h (mem_cd_iconveh, str_cd_iconveh): Allow cd to be
29611         (iconv_t)(-1).
29612         * lib/striconveh.c (mem_cd_iconveh_internal): Use an indirect
29613         conversion if cd is (iconv_t)(-1).
29614         (mem_iconveh, str_iconveh): Don't fail just because a direct conversion
29615         is not possible.
29616
29617 2007-03-31  Bruno Haible  <bruno@clisp.org>
29618
29619         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
29620         work on Solaris either. Protect also second use of "autodetect_jp".
29621
29622 2007-03-31  Bruno Haible  <bruno@clisp.org>
29623
29624         * m4/frexpl.m4 (gl_FUNC_FREXPL): Set HAVE_DECL_FREXPL to 0 when
29625         the function is not present.
29626
29627 2007-03-31  Bruno Haible  <bruno@clisp.org>
29628
29629         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Set HAVE_DECL_LDEXPL to 0 when
29630         the function is not present.
29631
29632 2007-03-31  Bruno Haible  <bruno@clisp.org>
29633
29634         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-29 patch. Test also against
29635         a bug in HP-UX iconv_open().
29636
29637 2007-03-31  Bruno Haible  <bruno@clisp.org>
29638
29639         * MODULES.html.sh (func_module): Don't show gnulib-common.m4.
29640         (Mathematics <math.h>): New section, add fpieee.
29641         (Input/output <stdio.h>): Add fseterr.
29642         (Mathematics <math.h>): New section, add printf-frexp.
29643         (Container data structures): Add sublist.
29644         (Core language properties): Add fpucw, inline.
29645         (Functions for greatest-width integer types <inttypes.h>): Add
29646         imaxabs, imaxdiv, inttypes.
29647         (Mathematics <math.h>): Add frexp, frexpl, isnan-nolibm, isnanl,
29648         isnanl-nolibm, ldexp.
29649         (Mathematics <math.h>): New section, add printf-frexpl.
29650         (Support for systems lacking POSIX:2001): Add fprintf-posix,
29651         printf-posix, snprintf-posix, sprintf-posix, string, search, socklen,
29652         sys_select, sys_socket, vasnprintf-posix, vasprintf-posix,
29653         vfprintf-posix, vprintf-posix, vsnprintf-posix, vsprintf-posix.
29654         (Unicode string functions): Add unistr/u*-mbtoucr.
29655         (Java): Add javacomp-script, javaexec-script.
29656         (C#): Add csharpcomp-script, csharpexec-script.
29657         (Support for building libraries and executables): Add havelib,
29658         relocatable-*.
29659         (Support for maintaining and releasing projects): Renamed from
29660         'Support for maintaining and release projects'. Add announce-gen.
29661
29662 2007-03-31  Bruno Haible  <bruno@clisp.org>
29663
29664         * README: Talk primarily about git.
29665         (git and CVS): Renamed from CVS.
29666         * doc/gnulib.texi (Introduction, Build robot for gnulib): Mention that
29667         gnulib is available through git.
29668         * doc/gnulib-tool.texi (CVS Issues): Mention git and svn as well.
29669
29670 2007-03-30  Bruno Haible  <bruno@clisp.org>
29671
29672         * lib/alloca_.h: Change prefix of double-inclusion guard macro to _GL_.
29673         * lib/poll_.h: Likewise.
29674         * lib/stat_.h: Likewise.
29675         * lib/sys_time_.h: Likewise.
29676         * lib/sysexit_.h: Likewise.
29677         * lib/glob_.h: Prefix double-inclusion guard macro with _GL_.
29678         * lib/stdbool_.h: Likewise.
29679         * lib/byteswap_.h: Add double-inclusion guard.
29680
29681 2007-03-30  Sergey Poznyakoff  <gray@mirddin.farlep.net>
29682
29683         * lib/sysexit_.h: Prefix double-inclusion guard macro with _GNULIB.
29684
29685 2007-03-30  Karl Berry  <karl@gnu.org>
29686
29687         * config/srclist-update: double space after USA in the license
29688         substitution, since that's how it's usually (?) written.
29689
29690 2007-03-30  Paul Eggert  <eggert@cs.ucla.edu>
29691
29692         * lib/write-any-file.c (can_write_any_file): Fix else-else bug
29693         reported by Bruno Haible.
29694
29695 2007-03-29  Bruno Haible  <bruno@clisp.org>
29696
29697         * m4/iconv.m4 (AM_ICONV_LINK): Require AC_CANONICAL_HOST. Test against
29698         a bug in AIX iconv().
29699
29700 2007-03-29  Bruno Haible  <bruno@clisp.org>
29701
29702         * modules/ldexpl-tests: New file.
29703         * tests/test-ldexpl.c: New file.
29704
29705 2007-03-29  Bruno Haible  <bruno@clisp.org>
29706
29707         * lib/ldexpl.c: Include fpucw.h.
29708         (ldexpl): Use BEGIN/END_LONG_DOUBLE_ROUNDING. Skip the last unneeded
29709         multiplication.
29710         * modules/ldexpl (Depends-on): Add fpucw.
29711
29712 2007-03-29  Bruno Haible  <bruno@clisp.org>
29713
29714         * modules/ldexpl: New file.
29715         * m4/ldexpl.m4: New file.
29716         * lib/math_.h (ldexpl): Define to a replacement if REPLACE_LDEXPL is
29717         set.
29718         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize also GNULIB_LDEXPL,
29719         REPLACE_LDEXPL.
29720         * modules/math (Makefile.am): Substitute also GNULIB_LDEXPL,
29721         REPLACE_LDEXPL.
29722         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
29723         gl_FUNC_LDEXPL_WORKS.
29724         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Remove test for ldexpl.
29725         * modules/mathl (Files): Remove lib/ldexpl.c.
29726         (Depends-on): Add ldexpl.
29727
29728 2007-03-29  Bruno Haible  <bruno@clisp.org>
29729
29730         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Declare frexpl.
29731
29732 2007-03-29  Bruno Haible  <bruno@clisp.org>
29733
29734         * tests/test-striconveh.c (main): Don't assume that a direct conversion
29735         between ISO-8859-1 and ISO-8859-2 is possible. Needed for OSF/1, IRIX
29736         and possibly also HP-UX.
29737         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
29738         work on AIX, IRIX, HP-UX, OSF/1.
29739         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
29740         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
29741         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
29742         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
29743         * tests/uniconv/test-u8-conv-from-enc.c (main): Likewise.
29744         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
29745
29746 2007-03-29  Bruno Haible  <bruno@clisp.org>
29747
29748         * tests/test-stat-time.c: Include <fcntl.h>, not <sys/fcntl.h>.
29749
29750 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
29751
29752         * lib/acl-internal.h (acl_get_fd, acl_set_fd): undef before defining,
29753         to work around a problem on OSF/1 5.1 reported by Bruno Haible.
29754
29755 2007-03-29  Eric Blake  <ebb9@byu.net>
29756
29757         * lib/acl-internal.h: Remove redundant include.
29758         (ACL_NOT_WELL_SUPPORTED): Also filter on EBUSY, returned by
29759         Cygwin when a file is locked.
29760
29761 2007-03-29  Bruno Haible  <bruno@clisp.org>
29762
29763         * lib/vasprintf.c [IN_LIBASPRINTF]: Include different specification
29764         file.
29765         * lib/asprintf.c [IN_LIBASPRINTF]: Likewise.
29766
29767 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
29768
29769         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Don't bother to
29770         try to remove a parent directory if the child couldn't be removed
29771         (except for the first rmdir, which could fail because the child
29772         doesn't exist).  Problem reported by Jeff Blaine in
29773         <http://lists.gnu.org/archive/html/bug-tar/2007-03/msg00014.html>.
29774
29775 2007-03-28  Bruno Haible  <bruno@clisp.org>
29776
29777         * lib/striconveh.c (utf8conv_carefully): New function.
29778         (mem_cd_iconveh_internal): Invoke it.
29779
29780 2007-03-28  Bruno Haible  <bruno@clisp.org>
29781
29782         * lib/striconveh.c (mem_cd_iconveh_internal): Use u8_mbtoucr instead
29783         of u8_mbtouc in order to distinguish invalid and incomplete UTF-8
29784         input.
29785         * modules/striconveh (Depends-on): Add unistr/u8-mbtoucr. Replace
29786         utf8-ucs4 with unistr/u8-mbtouc. Replace ucs4-utf8 with
29787         unistr/u8-uctomb.
29788
29789 2007-03-28  Bruno Haible  <bruno@clisp.org>
29790
29791         * modules/unistr/u8-mbtoucr: New file.
29792         * lib/unistr/u8-mbtoucr.c: New file.
29793         * modules/unistr/u16-mbtoucr: New file.
29794         * lib/unistr/u16-mbtoucr.c: New file.
29795         * modules/unistr/u16-mbtoucr: New file.
29796         * lib/unistr/u16-mbtoucr.c: New file.
29797         * lib/unistr.h (u8_mbtoucr, u16_mbtoucr, u32_mbtoucr): New declarations.
29798
29799 2007-03-27  Simon Josefsson  <simon@josefsson.org>
29800             Bruno Haible  <bruno@clisp.org>
29801
29802         * m4/vasprintf.m4: Convert AC_SUBST into shell variable for
29803         REPLACE_VASPRINTF.  Set HAVE_VASPRINTF.  Add
29804         AC_REQUIRE([gl_STDIO_H_DEFAULTS]).
29805
29806         * m4/stdio_h.m4: Add stubs for vasprintf too.
29807
29808         * modules/stdio: Support vasprintf in sed command.
29809
29810         * modules/vasprintf: Depend on stdio for prototypes.  Remove
29811         vasprintf.h.  Add stdio module indicator.
29812
29813         * lib/stdio_.h: Declare asprintf and vasprintf, based on
29814         vasprintf.h.
29815
29816         * lib/vasprintf.h: File removed.
29817
29818         * lib/asprintf.c: Use stdio.h instead of vasprintf.h.
29819         * lib/vasprintf.c: Ditto.
29820         * lib/xvasprintf.c: Ditto.
29821         * tests/test-vasprintf-posix.c: Ditto.
29822         * tests/test-vasprintf.c: Ditto.
29823
29824 2007-03-27  Bruno Haible  <bruno@clisp.org>
29825
29826         Make vasnprintf multithread-safe.
29827         * lib/vasnprintf.c (decimal_point_char): New function.
29828         (VASNPRINTF): Use it.
29829         Suggested by Simon Josefsson.
29830
29831 2007-03-27  Eric Blake  <ebb9@byu.net>
29832
29833         Support sub-second birthtime on cygwin.
29834         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Also check for st_birthtim.
29835         * lib/stat-time.h (STAT_TIMESPEC): Adjust comments.
29836         (get_stat_birthtime): Also work with st_birthtim.
29837
29838 2007-03-27  Paul Eggert  <eggert@cs.ucla.edu>
29839
29840         * lib/stat-time.h (USE_BIRTHTIME): Remove.
29841         (get_stat_atime_ns, get_stat_ctime_ns, get_stat_mtime_ns):
29842         (get_stat_birthtime_ns): Do not try to use "spare" fields.
29843         (get_stat_birthtime_ns): Simplify compile-time tests.
29844         (get_stat_birthtime): Change the API to look like
29845         get_stat_mtime etc., except return a negative tv_nsec on error.
29846         * m4/stat-time.m4 (gl_STAT_TIME, gl_STAT_BIRTHTIME):
29847         Don't check for "spare" fields.
29848         (gl_STAT_BIRTHTIME): Don't check for struct stat.st_birthtimespec.tv_sec
29849         or for struct stat.st_birthtime, as these tests aren't used.
29850         * tests/test-stat-time.c (test_birthtime): Adjust to new API.
29851
29852 2007-03-27  Bruno Haible  <bruno@clisp.org>
29853
29854         * lib/stat-time.h: Include <sys/stat.h>.
29855
29856 2007-03-27  James Youngman  <jay@gnu.org>
29857
29858         * lib/stat-time.h (get_stat_birthtime): New function for
29859           retrieving st_birthtime as provided by UFS2 (hence *BSD).
29860         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Probe for st_birthtime
29861           and its variants.
29862         * modules/stat-time (configure.ac): call gl_STAT_BIRTHTIME.
29863         * modules/stat-time-test: New file.
29864         * tests/test-stat-time.c: New test, devised by Bruno Haible.
29865
29866 2007-03-26  Bruno Haible  <bruno@clisp.org>
29867
29868         Better support of signalling NaNs.
29869         * lib/atanl.c: Include isnanl.h.
29870         (atanl): Perform test for NaN at the beginning of the function and
29871         through a call to isnanl.
29872         * lib/cosl.c: Include isnanl.h.
29873         (cosl): Perform test for NaN at the beginning of the function and
29874         through a call to isnanl.
29875         * lib/ldexpl.c: Include isnanl.h.
29876         (ldexpl): Perform test for NaN through a call to isnanl.
29877         * lib/logl.c: Include isnanl.h.
29878         (logl): Perform test for NaN at the beginning of the function and
29879         through a call to isnanl.
29880         * lib/sinl.c: Include isnanl.h.
29881         (sinl): Perform test for NaN at the beginning of the function and
29882         through a call to isnanl.
29883         * lib/sqrtl.c: Include isnanl.h.
29884         (sqrtl): Perform test for NaN at the beginning of the function and
29885         through a call to isnanl.
29886         * lib/tanl.c: Include isnanl.h.
29887         (tanl): Perform test for NaN at the beginning of the function and
29888         through a call to isnanl.
29889         * lib/trigl.c (ieee754_rem_pio2l): Remove test for NaN.
29890         * modules/mathl (Depends-on): Add isnanl.
29891
29892 2007-03-26  Eric Blake  <ebb9@byu.net>
29893
29894         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Fix
29895         regression in logic sense of previous patch.
29896
29897 2007-03-26  Bruno Haible  <bruno@clisp.org>
29898
29899         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Don't use
29900         unportable shell command "if ! ...".
29901         Reported by Ralf Wildenhues.
29902
29903 2007-03-25  Bruno Haible  <bruno@clisp.org>
29904
29905         * lib/sysexit_,h: If HAVE_SYSEXITS_H is defined, include the original
29906         <sysexits.h> file, and only add EX_CONFIG.
29907         * m4/sysexits.m4 (gl_SYSEXITS): If <sysexits.h> exists, check its
29908         absolute file name and whether it is sufficient. Substitute also
29909         HAVE_SYSEXITS_H and ABSOLUTE_SYSEXITS_H.
29910         * modules/sysexits (Makefile.am): Substitute HAVE_SYSEXITS_H and
29911         ABSOLUTE_SYSEXITS_H into sysexits.h.
29912
29913 2007-03-25  Bruno Haible  <bruno@clisp.org>
29914
29915         * lib/getaddrinfo.c (getaddrinfo): Don't access hints->ai_flags when
29916         hints is NULL.
29917
29918 2007-03-25  Bruno Haible  <bruno@clisp.org>
29919
29920         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Add a cast.
29921         * lib/uniconv/u8-strconv-to-enc.c (u8_strconv_to_encoding): Likewise.
29922
29923 2007-03-25  Bruno Haible  <bruno@clisp.org>
29924
29925         * lib/vasnprintf.c: Include langinfo.h.
29926         (VASNPRINTF): Prefer nl_langinfo over localeconv, since it's more
29927         multithread-safe.
29928         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): New macro.
29929         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke it.
29930         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
29931         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
29932         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
29933         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
29934         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
29935         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX: Likewise.
29936         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
29937         Reported by Simon Josefsson.
29938
29939 2007-03-25  Bruno Haible  <bruno@clisp.org>
29940
29941         * lib/printf-parse.c [!IN_LIBINTL]: Include <stdint.h>, for intmax_t.
29942         (PRINTF_PARSE): Make the support for size specifier 'j' unconditional.
29943         * modules/vasnprintf (Depends-on): Add stdint.
29944
29945 2007-03-25  Bruno Haible  <bruno@clisp.org>
29946
29947         * modules/fpieee: New file.
29948         * m4/fpieee.m4: New file.
29949         * modules/isnan-nolibm (Depends-on): Add fpieee.
29950         * modules/isnanl-nolibm (Depends-on): Add fpieee.
29951         * modules/isnanl (Depends-on): Add fpieee.
29952
29953 2007-03-25  Bruno Haible  <bruno@clisp.org>
29954
29955         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Test also finite numbers.
29956
29957 2007-03-25  Bruno Haible  <bruno@clisp.org>
29958
29959         Avoid test failures on IRIX 6.5.
29960         * tests/test-frexpl.c (MIN_NORMAL_EXP): New macro.
29961         (main): Use it.
29962         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP): New
29963         macros.
29964         (main): Use them.
29965
29966 2007-03-25  Bruno Haible  <bruno@clisp.org>
29967
29968         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): New macro.
29969         (gl_FUNC_FREXPL): Invoke it. Set REPLACE_FREXPL to 1 if it frexpl
29970         exists but doesn't work.
29971         * lib/math_.h (frexpl): Define as a replacement macro if REPLACE_FREXPL
29972         is set. Don't provide a prototype if REPLACE_FREXPL is not set.
29973         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_FREXPL.
29974         * modules/math (Makefile.am) Substibute also REPLACE_FREXPL into math.h.
29975
29976 2007-03-25  Bruno Haible  <bruno@clisp.org>
29977
29978         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Add check whether frexp(inf)
29979         returns inf. Needed on IRIX 6.5.
29980
29981 2007-03-25  Bruno Haible  <bruno@clisp.org>
29982
29983         * tests/test-frexpl.c: Include isnanl-nolibm.h.
29984         (main): Use isnanl instead of x != x idiom.
29985         * modules/frexpl-tests (Depends-on): Add isnanl-nolibm.
29986
29987         * tests/test-frexp.c: Include isnan.h.
29988         (main): Use isnan instead of x != x idiom.
29989         * modules/frexp-tests (Depends-on): Add isnan-nolibm.
29990
29991 2007-03-25  Bruno Haible  <bruno@clisp.org>
29992
29993         * tests/test-frexp.c (NaN): New function/macro.
29994         (main): Use it instead of 0.0 / 0.0.
29995         * tests/test-isnan.c (NaN): New function/macro.
29996         (main): Use it instead of 0.0 / 0.0.
29997         * tests/test-vasnprintf-posix.c (NaN): New function/macro.
29998         (test_function): Use it instead of 0.0 / 0.0.
29999         * tests/test-vasprintf-posix.c (NaN): New function/macro.
30000         (test_function): Use it instead of 0.0 / 0.0.
30001         * tests/test-snprintf-posix.h (NaN): New function/macro.
30002         (test_function): Use it instead of 0.0 / 0.0.
30003         * tests/test-sprintf-posix.h (NaN): New function/macro.
30004         (test_function): Use it instead of 0.0 / 0.0.
30005         * tests/test-fprintf-posix.h (NaN): New function/macro.
30006         (test_function): Use it instead of 0.0 / 0.0.
30007         * tests/test-printf-posix.h (NaN): New function/macro.
30008         (test_function): Use it instead of 0.0 / 0.0.
30009
30010         * lib/isnan.c (FUNC): Work around a DEC C compiler bug.
30011
30012 2007-03-25  Bruno Haible  <bruno@clisp.org>
30013
30014         * lib/glob_.h: Include <sys/stat.h>. Avoids warnings on AIX 5.1.
30015
30016 2007-03-25  Bruno Haible  <bruno@clisp.org>
30017
30018         * lib/regexec.c (merge_state_with_log): Make static.
30019
30020 2007-03-25  Bruno Haible  <bruno@clisp.org>
30021
30022         * lib/trigl.c (kernel_rem_pio2): Make static.
30023
30024 2007-03-25  Bruno Haible  <bruno@clisp.org>
30025
30026         * lib/sincosl.c (sincosl_table): Make static.
30027
30028 2007-03-25  Bruno Haible  <bruno@clisp.org>
30029
30030         * lib/argp.h (__restrict): Define to empty, rather than to 'restrict',
30031         if the compiler does not support C99.
30032
30033 2007-03-25  Bruno Haible  <bruno@clisp.org>
30034
30035         * modules/time (Makefile.am): Ensure all rule action lines start with a
30036         tab.
30037
30038 2007-03-24  Bruno Haible  <bruno@clisp.org>
30039
30040         * modules/tsearch-tests: New file.
30041         * tests/test-tsearch.sh: New file.
30042         * tests/test-tsearch.c: New file, mostly copied from glibc.
30043
30044         * modules/search-tests: New file.
30045         * tests/test-search.c: New file.
30046
30047         * modules/search: New file.
30048         * lib/search_.h: New file, incorporating lib/tsearch.h.
30049         * m4/search_h.m4: New file.
30050         * lib/tsearch.h: Remove file.
30051         * lib/tsearch.c: Include search.h instead of tsearch.h.
30052         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Require gl_SEARCH_H_DEFAULTS. Set
30053         HAVE_TSEARCH.
30054         * modules/tsearch (Files): Remove lib/tsearch.h.
30055         (Depends-on): Add search.
30056         (configure.ac): Invoke gl_SEARCH_MODULE_INDICATOR.
30057         (Include): Change tsearch.h into search.h.
30058
30059 2007-03-24  Bruno Haible  <bruno@clisp.org>
30060
30061         * modules/fpucw: New file.
30062         * lib/fpucw.h: New file.
30063         * lib/frexp.c: Include fpucw.h.
30064         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
30065         (FUNC): Use them.
30066         * lib/printf-frexp.c: Include fpucw.h.
30067         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
30068         (FUNC): Use them.
30069         * lib/vasnprintf.c: Include fpucw.h.
30070         (VASNPRINTF): Invoke BEGIN/END_LONG_DOUBLE_ROUNDING around the
30071         'long double' calculations.
30072         * tests/test-frexpl.c: Include fpucw.h.
30073         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
30074         * tests/test-printf-frexpl.c: Include fpucw.h.
30075         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
30076         * modules/frexpl (Depends-on): Add fpucw.
30077         * modules/printf-frexpl (Depends-on): Likewise.
30078         * modules/fprintf-posix (Depends-on): Likewise.
30079         * modules/snprintf-posix (Depends-on): Likewise.
30080         * modules/sprintf-posix (Depends-on): Likewise.
30081         * modules/vasnprintf-posix (Depends-on): Likewise.
30082         * modules/vasprintf-posix (Depends-on): Likewise.
30083         * modules/vfprintf-posix (Depends-on): Likewise.
30084         * modules/vsnprintf-posix (Depends-on): Likewise.
30085         * modules/vsprintf-posix (Depends-on): Likewise.
30086         * modules/frexpl-tests (Depends-on): Likewise.
30087         * modules/printf-frexpl-tests (Depends-on): Likewise.
30088
30089 2007-03-24  Bruno Haible  <bruno@clisp.org>
30090
30091         * lib/float+.h: New file.
30092         * lib/isnan.c: Include float+.h.
30093         (SIZE): New macro.
30094         (FUNC): Compare only SIZE bytes of the value.
30095         * lib/vasnprintf.c: Include float+.h.
30096         (VASNPRINTF): When comparing agains +0.0L or +0.0, compare only
30097         SIZEOF_LDBL or SIZEOF_DBL bytes.
30098         * modules/isnan-nolibm (Files): Add lib/float+.h.
30099         * modules/isnanl-nolibm (Files): Add lib/float+.h.
30100         * modules/isnanl (Files): Add lib/float+.h.
30101         * modules/vasnprintf (Files): Add lib/float+.h.
30102
30103 2007-03-24  Bruno Haible  <bruno@clisp.org>
30104
30105         * lib/vasnprintf.c [!HAVE_LONG_DOUBLE]: Include printf-frexp.h. Don't
30106         include isnanl-nolibm.h.
30107
30108 2007-03-24  Bruno Haible  <bruno@clisp.org>
30109
30110         * tests/test-read-file.c (main): Don't produce spurious output for
30111         expected situations. Make the test fail if it encountered unexpected
30112         results.
30113
30114 2007-03-24  Bruno Haible  <bruno@clisp.org>
30115
30116         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove the special-casing of NetBSD,
30117         since its fr_FR.ISO8859-1 locale wouldn't pass the tests.
30118
30119 2007-03-24  Bruno Haible  <bruno@clisp.org>
30120
30121         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Fix last change.
30122
30123 2007-03-24  Bruno Haible  <bruno@clisp.org>
30124
30125         * modules/unistr/base (Depends-on): Remove utf8-ucs4-unsafe,
30126         utf16-ucs4-unsafe, utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
30127
30128         * modules/unistr/u8-mbtouc: Add source files from module utf8-ucs4.
30129         * modules/utf8-ucs4: Turn into a symbolic link to module
30130         unistr/u8-mbtouc.
30131
30132         * modules/unistr/u8-mbtouc-unsafe: Add source files from module
30133         utf8-ucs4-unsafe.
30134         * modules/utf8-ucs4-unsafe: Turn into a symbolic link to module
30135         unistr/u8-mbtouc-unsafe.
30136
30137         * modules/unistr/u16-mbtouc: Add source files from module utf16-ucs4.
30138         * modules/utf16-ucs4: Turn into a symbolic link to module
30139         unistr/u16-mbtouc.
30140
30141         * modules/unistr/u16-mbtouc-unsafe: Add source files from module
30142         utf16-ucs4-unsafe.
30143         * modules/utf16-ucs4-unsafe: Turn into a symbolic link to module
30144         unistr/u16-mbtouc-unsafe.
30145
30146         * modules/unistr/u8-uctomb: Add source files from module utf4-utf8.
30147         * modules/ucs4-utf8: Turn into a symbolic link to module
30148         unistr/u8-ubtomb.
30149
30150         * modules/unistr/u16-uctomb: Add source files from module utf4-utf16.
30151         * modules/ucs4-utf16: Turn into a symbolic link to module
30152         unistr/u16-ubtomb.
30153
30154 2007-03-24  Bruno Haible  <bruno@clisp.org>
30155
30156         * lib/unistr/u8-mbtouc-aux.c: Renamed from lib/unistr/utf8-ucs4.c.
30157         Enable the function only if HAVE_INLINE.
30158         * lib/unistr/u8-mbtouc-unsafe-aux.c: Renamed from
30159         lib/unistr/utf8-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
30160         * lib/unistr/u16-mbtouc-aux.c: Renamed from lib/unistr/utf16-ucs4.c.
30161         Enable the function only if HAVE_INLINE.
30162         * lib/unistr/u16-mbtouc-unsafe-aux.c: Renamed from
30163         lib/unistr/utf16-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
30164         * lib/unistr/u8-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf8.c.
30165         Enable the function only if HAVE_INLINE.
30166         * lib/unistr/u16-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf16.c.
30167         Enable the function only if HAVE_INLINE.
30168         * modules/utf8-ucs4: Update.
30169         * modules/utf8-ucs4-unsafe: Update.
30170         * modules/utf16-ucs4: Update.
30171         * modules/utf16-ucs4-unsafe: Update.
30172         * modules/ucs4-utf8: Update.
30173         * modules/ucs4-utf16: Update.
30174
30175 2007-03-24  Bruno Haible  <bruno@clisp.org>
30176
30177         * lib/utf8-ucs4.h: Remove file.
30178         * lib/utf8-ucs4-unsafe.h: Remove file.
30179         * lib/utf16-ucs4.h: Remove file.
30180         * lib/utf16-ucs4-unsafe.h: Remove file.
30181         * lib/ucs4-utf8.h: Remove file.
30182         * lib/ucs4-utf16.h: Remove file.
30183         * lib/unistr.h: Include their previous contents.
30184         * m4/utf-ucs4.m4: Remove file.
30185         * m4/ucs4-utf.m4: Remove file.
30186         * modules/utf8-ucs4 (Files): Remove lib/utf8-ucs4.h.
30187         (Depends-on): Add unistr/base.
30188         (configure.ac): Remove gl_UTF_UCS4.
30189         (Makefile.am): Update.
30190         (Include): Change to unistr.h.
30191         * modules/utf8-ucs4-unsafe (Files): Remove lib/utf8-ucs4-unsafe.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/utf16-ucs4 (Files): Remove lib/utf16-ucs4.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-unsafe (Files): Remove lib/utf16-ucs4-unsafe.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/ucs4-utf8 (Files): Remove lib/ucs4-utf8.h.
30207         (Depends-on): Add unistr/base.
30208         (configure.ac): Remove gl_UCS4_UTF.
30209         (Makefile.am): Update.
30210         (Include): Change to unistr.h.
30211         * modules/ucs4-utf16 (Files): Remove lib/ucs4-utf16.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         * lib/unistr/utf8-ucs4.c: Include unistr.h instead of utf8-ucs4.h.
30217         * lib/unistr/utf8-ucs4-unsafe.c: Include unistr.h instead of
30218         utf8-ucs4-unsafe.h.
30219         * lib/unistr/utf16-ucs4.c: Include unistr.h instead of utf16-ucs4.h.
30220         * lib/unistr/utf16-ucs4-unsafe.c: Include unistr.h instead of
30221         utf16-ucs4-unsafe.h.
30222         * lib/unistr/ucs4-utf8.c: Include unistr.h instead of ucs4-utf8.h.
30223         * lib/unistr/ucs4-utf16.c: Include unistr.h instead of ucs4-utf16.h.
30224         * lib/unistr/u8-chr.c: Don't include ucs4-utf8.h.
30225         * lib/unistr/u8-strchr.c: Likewise.
30226         * lib/unistr/u8-strrchr.c: Likewise.
30227         * lib/unistr/u16-chr.c: Don't include ucs4-utf16.h.
30228         * lib/unistr/u16-strchr.c: Likewise.
30229         * lib/unistr/u16-strrchr.c: Likewise.
30230         * lib/striconveh.c: Update.
30231         * lib/linebreak.c: Update.
30232
30233 2007-03-24  Bruno Haible  <bruno@clisp.org>
30234
30235         * lib/argp-help.c (fill_in_uparams, canon_doc_option): Cast the
30236         arguments of isspace, isalpha, isalnum, isdigit to 'unsigned char'.
30237
30238 2007-03-22  Bruno Haible  <bruno@clisp.org>
30239
30240         * lib/strptime.c (__strptime_internal): Use ANSI C syntax.
30241
30242 2007-03-23  Paul Eggert  <eggert@cs.ucla.edu>
30243
30244         * MODULES.html.sh (File system functions): New module write-any-file.
30245         * modules/write-any-file, lib/write-any-file.c, lib/write-any-file.h:
30246         * m4/write-any-file.m4: New files.
30247
30248 2007-03-23  Eric Blake  <ebb9@byu.net>
30249
30250         * gnulib-tool: Rearrange space-tab sequences, since some editors
30251         like to eat them.
30252
30253 2007-03-23  Eric Blake  <ebb9@byu.net>
30254
30255         * lib/version-etc.c (version_etc_va): Update license wording to
30256         be more concise.  Recommended by Richard Stallman.
30257
30258 2007-03-22  Bruno Haible  <bruno@clisp.org>
30259
30260         * lib/poll.c (MSG_PEEK): New fallback definition.
30261
30262 2007-03-22  Bruno Haible  <bruno@clisp.org>
30263
30264         * modules/sys_socket-tests (configure.ac): Check for shutdown function.
30265         * tests/test-sys_socket.c (a): Test only if shutdown() exists.
30266         (main): Update.
30267         Fixes a compilation error on BeOS.
30268
30269 2007-03-22  Bruno Haible  <bruno@clisp.org>
30270
30271         * modules/frexpl-tests: New file.
30272         * tests/test-frexpl.c: New file.
30273
30274         * modules/frexpl: New file.
30275         * m4/frexpl.m4: New file.
30276         * modules/math (Makefile.am): Also substitute GNULIB_FREXPL into math.h.
30277         * lib/math_.h (frexpl): Test GNULIB_FREXPL instead of GNULIB_MATHL.
30278         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FREXPL.
30279         * modules/mathl (Files): Remove lib/frexpl.c, lib/frexp.c.
30280         (Depends-on): Add frexpl. Remove isnanl-nolibm.
30281         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Don't test for frexpl.
30282
30283 2007-03-22  Bruno Haible  <bruno@clisp.org>
30284
30285         * lib/frexpl.c: Share code with lib/frexp.c.
30286         * modules/mathl (Files): Add lib/frexp.c.
30287         (Depends-on): Add isnanl-nolibm.
30288
30289 2007-03-22  Bruno Haible  <bruno@clisp.org>
30290
30291         * modules/printf-frexp (Files): Add m4/frexp.m4.
30292         * m4/printf-frexp.m4 (gl_FUNC_PRINTF_FREXP): Define HAVE_FREXP_IN_LIBC
30293         only if the found frexp function actually works.
30294
30295 2007-03-22  Bruno Haible  <bruno@clisp.org>
30296
30297         * lib/frexp.c: Remove older implementation that uses divisions.
30298
30299 2007-03-21  Bruno Haible  <bruno@clisp.org>
30300
30301         * modules/frexp-tests: New file.
30302         * tests/test-frexp.c: New file.
30303
30304         * modules/frexp: New file.
30305         * lib/frexp.c: New file.
30306         * m4/frexp.m4: New file.
30307         * lib/math_.h (frexp): New declaration.
30308         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Also initialize GNULIB_FREXP and
30309         REPLACE_FREXP.
30310         * modules/math (math.h): Also substitute GNULIB_FREXP, REPLACE_FREXP.
30311
30312 2007-03-21  Bruno Haible  <bruno@clisp.org>
30313
30314         * modules/isnanl-tests: New file.
30315         * tests/test-isnanl.c: New file.
30316
30317         * modules/isnanl: New file.
30318         * lib/isnanl.h: New file.
30319         * m4/isnanl.m4 (gl_FUNC_ISNANL): New macro.
30320         (gl_FUNC_ISNANL_NO_LIBM): Invoke gl_HAVE_ISNANL_NO_LIBM,
30321         gl_FUNC_ISNANL_WORKS.
30322         (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM, gl_FUNC_ISNANL_WORKS):
30323         New macros.
30324
30325 2007-03-21  Bruno Haible  <bruno@clisp.org>
30326
30327         * modules/isnanl-nolibm (Files): Add lib/isnanl-nolibm.h, remove
30328         lib/isnanl.h.
30329         (Include): Update.
30330         * lib/isnanl-nolibm.h: Renamed from lib/isnanl.h.
30331         * lib/vasnprintf.c: Update.
30332         * modules/isnanl-nolibm-tests (Files): Add tests/test-isnanl-nolibm.c,
30333         tests/test-isnanl.h, remove tests/test-isnanl.c.
30334         (Makefile.am): Update.
30335         * tests/test-isnanl-nolibm.c: New file.
30336         * tests/test-isnanl.h: New file.
30337         * tests/test-isnanl.c: Remove file.
30338
30339 2007-03-21  Jim Meyering  <jim@meyering.net>
30340
30341         When trying to open ".", treat ESTALE like EACCES.
30342         * lib/savewd.c (savewd_save): Resort to forking not just upon
30343         failure with EACCES, but also when errno is ESTALE.
30344
30345 2007-03-20  Bruno Haible  <bruno@clisp.org>
30346
30347         * lib/string_.h (strndup): Enable declaration also if HAVE_STRNDUP.
30348         Needed on AIX 5.1. Reported by Matthew Woehlke.
30349
30350 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
30351
30352         Suggestions by Bruno Haible:
30353         * lib/acl-internal.h: Include "gettext.h" rather than rolling
30354         our own.
30355         (ACL_NOT_WELL_SUPPORTED): Parenthesize arg when used.
30356         * modules/acl (Depends-on): Add gettext.
30357
30358 2007-03-19  Bruno Haible  <bruno@clisp.org>
30359
30360         * modules/iconvme: Remove file.
30361         * lib/iconvme.h: Remove file.
30362         * lib/iconvme.c: Remove file.
30363         * m4/iconvme.m4: Remove file.
30364
30365 2007-03-19  Bruno Haible  <bruno@clisp.org>
30366
30367         * doc/relocatable-maint.texi: Break long shell script line.
30368         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
30369
30370 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
30371
30372         Add limited support for Solaris 10 ZFS-style ACLs: just enough to
30373         handle file_has_acl.
30374         * lib/acl-internal.h, lib/acl_entries.c, lib/file-has-acl.c: New files.
30375         * lib/acl.c: Move header inclusions and related macro defns into
30376         lib/acl-internal.h.
30377         (S_ISLNK): Remove defn, since that's now done for us.
30378         (file_has_acl): Move to lib/file-has-acl.c.
30379         Call acl_trivial if available.  This is the crucial part of the fix.
30380         (acl_entries): Move to lib/acl_entries.c.  Now extern, since it's
30381         shared within the library.  Rewrite a bit, partly to make it compatible
30382         with the GNU coding style.
30383         * m4/acl.m4 (AC_FUNC_ACL): Add AC_LIBOBJ([file-has-acl]).
30384         Remove unnecessary double-quotes.
30385         Don't test for acl_to_text; the build will catch that.
30386         Replace acl_entries if it doesn't exist and it is needed.
30387         Check for -lsec and acl_trivial (as used on Solaris 10).
30388         * modules/acl (Files): Add lib/acl-internal.h, lib/acl_entries.c,
30389         lib/file-has-acl.c.
30390         (Depends-on): Add sys_stat, for S_ISLNK.
30391
30392 2007-03-19  Ben Pfaff  <blp@gnu.org>
30393
30394         * doc/gnulib.texi: Fix typos.
30395         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
30396
30397 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
30398
30399         * lib/getcwd.c (__getcwd): Remove redundant comparison of buf to NULL.
30400         If size is zero here, buf must be zero.
30401
30402 2007-03-19  Simon Josefsson  <simon@josefsson.org>
30403
30404         * des.c: Remove weak_keys_chksum.  Reported by Bruno Haible
30405         <bruno@clisp.org>.
30406
30407 2007-03-18  Bruno Haible  <bruno@clisp.org>
30408
30409         * lib/vasnprintf.c (VASNPRINTF): Undo first part of last patch.
30410         Suggested by Eric Blake.
30411
30412 2007-03-18  Ben Pfaff  <blp@gnu.org>
30413
30414         * doc/relocatable.texi: Recommend using as prefix a directory
30415         that does not exist and will never be created.  Based on
30416         discussion with Bruno Haible, Ralf Wildenhues, Matthew Woehlke,
30417         and others.
30418
30419 2007-03-17  Bruno Haible  <bruno@clisp.org>
30420
30421         * lib/fchownat.c: Include lchown.h.
30422
30423 2007-03-17  Bruno Haible  <bruno@clisp.org>
30424
30425         Fix endless loop when the given allocated size was > INT_MAX.
30426         * lib/vasnprintf.c (EOVERFLOW): New fallback definition.
30427         (VASNPRINTF): Fail with EOVERFLOW when the given allocated size is
30428         larger than INT_MAX, or when it grow to a value larger than INT_MAX.
30429         * lib/vsprintf.c (vsprintf): Don't pass a size > INT_MAX to vasnprintf.
30430         * lib/sprintf.c (sprintf): Likewise.
30431
30432 2007-03-17  Bruno Haible  <bruno@clisp.org>
30433
30434         * tests/test-argp-2.sh (func_compare): Output a context diff.
30435
30436 2007-03-17  Bruno Haible  <bruno@clisp.org>
30437
30438         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check also the
30439         locale's decimal-point character.
30440
30441 2007-03-17  Bruno Haible  <bruno@clisp.org>
30442
30443         * lib/vasnprintf.c (VASNPRINTF): Clear out the memory used for arg_mem
30444         before comparing it. Needed because on some platforms (e.g. x86) a
30445         'long double' occupies less bytes than sizeof (long double).
30446
30447 2007-03-17  Bruno Haible  <bruno@clisp.org>
30448
30449         * tests/test-crc.c (main): Make printf statements 64-bit clean.
30450         * tests/test-gc-pbkdf2-sha1.c (main): Likewise.
30451         * tests/test-getaddrinfo.c (simple): Likewise.
30452         * tests/test-read-file.c (main): Likewise.
30453
30454 2007-03-17  Bruno Haible  <bruno@clisp.org>
30455
30456         * tests/test-dirname.c (main): Make printf statements 64-bit clean.
30457
30458 2007-03-17  Bruno Haible  <bruno@clisp.org>
30459
30460         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Remove
30461         unused variable.
30462
30463 2007-03-17  Bruno Haible  <bruno@clisp.org>
30464
30465         * tests/test-c-strcasecmp.c: Include c-strcase.h.
30466         * tests/test-c-strncasecmp.c: Likewise.
30467
30468 2007-03-17  Bruno Haible  <bruno@clisp.org>
30469
30470         * modules/stdlib (Depends-on): Add unistd.
30471         * lib/stdlib_.h: Include <unistd.h> if mkstemp is desired.
30472         Needed for MacOS X 10.3.
30473
30474 2007-03-17  Bruno Haible  <bruno@clisp.org>
30475
30476         * lib/unistr/u-strdup.h: Include <stdlib.h>.
30477
30478 2007-03-17  Bruno Haible  <bruno@clisp.org>
30479
30480         * lib/unistr/u-cpy-alloc.h: Include <stdlib.h>.
30481
30482 2007-03-17  Bruno Haible  <bruno@clisp.org>
30483
30484         * gnulib-tool (func_import): Update .cvsignore and .gitignore files
30485         to reflect files copied from gnulib (with or without modifications).
30486         Suggested by Jim Meyering.
30487
30488 2007-03-17  Eric Blake  <ebb9@byu.net>
30489
30490         * NEWS: Document stdlib change from 2007-02-18.
30491
30492 2007-03-17  Jim Meyering  <jim@meyering.net>
30493
30494         Detect use of AC_CONFIG_AUX_DIR also when its argument is quoted.
30495         * build-aux/bootstrap: Put ""s around use of $build_aux, in case
30496         someone uses a name containing shell meta-characters.
30497         Reported by Alfred M. Szmidt.
30498
30499         * build-aux/bootstrap: Don't use \> in grep regexp.  For HP-UX.
30500
30501 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
30502
30503         * build-aux/bootstrap (with_gettext): New variable.  Run autopoint
30504         and copy gettext configuration files only if configure.ac contains
30505         a use of AM_GNU_GETTEXT_VERSION.
30506
30507 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
30508
30509         * build-aux/bootstrap (gnulib_name): New variable.
30510         (gnulib_tool_options): Use it.
30511
30512 2007-03-13  Simon Josefsson  <simon@josefsson.org>
30513
30514         * tests/test-des.c: Use new namespace.
30515
30516 2007-03-15  Bruno Haible  <bruno@clisp.org>
30517
30518         * lib/dummy.c (gl_dummy_symbol): Renamed from 'dummy'.
30519         Reported by James Youngman <jay@gnu.org>.
30520
30521 2007-03-15  Bruno Haible  <bruno@clisp.org>
30522
30523         * lib/glob.c (glob): Add 'restrict' so that prototype matches the
30524         declared prototype. Needed with cc on OSF/1 5.1.
30525
30526 2007-03-15  Bruno Haible  <bruno@clisp.org>
30527
30528         * lib/gl_list.h (gl_listelement_dispose_fn): New type.
30529         (gl_list_create_empty, gl_list_create): Add dispose_fn argument.
30530         (struct gl_list_implementation): Add dispose_fn argument to the
30531         'create_empty', 'create' methods.
30532         (struct gl_list_impl_base): Add field 'dispose_fn'.
30533         * lib/gl_list.c (gl_list_create_empty, gl_list_create): Add dispose_fn
30534         argument.
30535         * lib/gl_array_list.c (gl_array_create_empty, gl_array_create): Add
30536         dispose_fn argument.
30537         (gl_array_remove_node, gl_array_remove_at, gl_array_list_free): Call
30538         dispose_fn on the dropped values.
30539         * lib/gl_carray_list.c (gl_carray_create_empty, gl_carray_create): Add
30540         dispose_fn argument.
30541         (gl_carray_remove_at, gl_carray_list_free): Call dispose_fn on the
30542         dropped values.
30543         * lib/gl_anyavltree_list2.h (gl_tree_create): Add dispose_fn argument.
30544         (gl_tree_remove_node): Call dispose_fn on the dropped value.
30545         * lib/gl_anyrbtree_list2.h (gl_tree_create): Add dispose_fn argument.
30546         (gl_tree_remove_node): Call dispose_fn on the dropped value.
30547         * lib/gl_anytree_list2.h (gl_tree_create_empty): Add dispose_fn
30548         argument.
30549         (gl_tree_list_free): Call dispose_fn on the dropped values.
30550         * lib/gl_anytreehash_list2.h (gl_tree_list_free): Call dispose_fn on
30551         the dropped values.
30552         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
30553         Add dispose_fn argument.
30554         (gl_linked_remove_node, gl_linked_remove_at, gl_linked_list_free):
30555         Call dispose_fn on the dropped values.
30556         * lib/gl_sublist.c (gl_sublist_create_empty, gl_sublist_create_fill):
30557         Add dispose_fn argument.
30558         (gl_sublist_create): Initialize the 'dispose_fn' field.
30559         * lib/clean-temp.c (create_temp_dir, register_fd): Update.
30560         * tests/test-array_list.c (main): Update.
30561         * tests/test-carray_list.c (main): Update.
30562         * tests/test-avltree_list.c (main): Update.
30563         * tests/test-rbtree_list.c (main): Update.
30564         * tests/test-avltreehash_list.c (main): Update.
30565         * tests/test-rbtreehash_list.c (main): Update.
30566         * tests/test-linked_list.c (main): Update.
30567         * tests/test-linkedhash_list.c (main): Update.
30568         * tests/test-array_oset.c (main): Update.
30569
30570 2007-03-15  Bruno Haible  <bruno@clisp.org>
30571
30572         * lib/gl_oset.h (gl_setelement_dispose_fn): New type.
30573         (gl_oset_create_empty): Add dispose_fn argument.
30574         (struct gl_oset_implementation): Add dispose_fn argument to
30575         'create_empty' method.
30576         (struct gl_oset_impl_base): Add dispose_fn field.
30577         * lib/gl_oset.c (gl_oset_create_empty): Add dispose_fn argument.
30578         * lib/gl_array_oset.c (gl_array_create_empty): Add dispose_fn argument.
30579         (gl_array_remove_at, gl_array_free): Call dispose_fn on the dropped
30580         values.
30581         * lib/gl_anytree_oset.h (gl_tree_create_empty): Add dispose_fn argument.
30582         (gl_tree_oset_free): Call dispose_fn on the dropped values.
30583         * lib/gl_avltree_oset.c (gl_tree_remove_node): Call dispose_fn on the
30584         dropped value.
30585         * lib/gl_rbtree_oset.c (gl_tree_remove_node): Call dispose_fn on the
30586         dropped value.
30587         * tests/test-array_oset.c (main): Update.
30588         * tests/test-avltree_oset.c (main): Update.
30589         * tests/test-rbtree_oset.c (main): Update.
30590         * lib/gl_anytreehash_list1.h (add_to_bucket): Update.
30591
30592 2007-03-13  Bruno Haible  <bruno@clisp.org>
30593
30594         * tests/test-stdbool.c (i): Update after last patch.
30595
30596 2007-03-12  Bruno Haible  <bruno@clisp.org>
30597
30598         * lib/quotearg.c: Include <wctype.h> early, before the definition of
30599         the iswprint macro. Needed on Solaris 2.5.1.
30600
30601 2007-03-12  Bruno Haible  <bruno@clisp.org>
30602
30603         * tests/test-printf-frexp.c (main): Declare x as volatile.
30604
30605 2007-03-12  Simon Josefsson  <simon@josefsson.org>
30606
30607         * doc/gnulib.texi (Build robot for gnulib): New section.
30608
30609 2007-03-12  Jim Meyering  <jim@meyering.net>
30610
30611         * build-aux/bootstrap: New file.
30612         * build-aux/bootstrap.conf: New file, from coreutils.
30613
30614 2007-03-11  Bruno Haible  <bruno@clisp.org>
30615
30616         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Require AC_C_INLINE.
30617
30618 2007-03-12  Simon Josefsson  <simon@josefsson.org>
30619
30620         * lib/des.h, lib/des.c, lib/gc-gnulib.c: Use gl_ namespace, to
30621         avoid collisions with 'des_setkey'.  Reported by Bruno Haible
30622         <bruno@clisp.org>.  Also change 'tripledes_' to '3des_'.
30623
30624 2007-03-11  Bruno Haible  <bruno@clisp.org>
30625
30626         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): If the test program fails to
30627         compile, set LOCALE_TR_UTF8 to 'none' instead of empty.
30628
30629 2007-03-11  Bruno Haible  <bruno@clisp.org>
30630
30631         * lib/stdint_.h (INT64_MIN, INTMAX_MIN): Avoid using the ~INT..._MAX
30632         formula. Needed for SunPRO C 5.0.
30633
30634 2007-03-11  Bruno Haible  <bruno@clisp.org>
30635
30636         * modules/long-options (Depends-on): Add getopt.
30637
30638 2007-03-11  Bruno Haible  <bruno@clisp.org>
30639
30640         * modules/modechange (Depends-on): Add stdbool.
30641
30642 2007-03-11  Bruno Haible  <bruno@clisp.org>
30643
30644         * modules/i-ring (Depends-on): Add stdbool.
30645
30646 2007-03-11  Bruno Haible  <bruno@clisp.org>
30647
30648         * modules/gc-des (Depends-on): Add stdbool.
30649
30650 2007-03-11  Bruno Haible  <bruno@clisp.org>
30651
30652         * m4/mktime.m4 (gl_PREREQ_MKTIME): Require AC_C_INLINE.
30653
30654 2007-03-11  Bruno Haible  <bruno@clisp.org>
30655
30656         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Require AC_C_RESTRICT.
30657
30658 2007-03-11  Bruno Haible  <bruno@clisp.org>
30659
30660         * lib/unistr/u32-mbtouc-unsafe.c (u32_mbtouc_unsafe): Fix syntax error.
30661
30662 2007-03-11  Bruno Haible  <bruno@clisp.org>
30663
30664         * lib/vasnprintf.c (sprintf): Undefine.
30665
30666 2007-03-11  Bruno Haible  <bruno@clisp.org>
30667
30668         * lib/isnan.c (rpl_isnan, rpl_isnanl): Work around bug regarding
30669         initializers in SunPRO C and Compaq C compilers.
30670
30671 2007-03-11  Bruno Haible  <bruno@clisp.org>
30672
30673         * lib/gl_array_oset.c (gl_array_iterator_next): Make pointer
30674         decrementing code ANSI C compliant.
30675
30676 2007-03-11  Bruno Haible  <bruno@clisp.org>
30677
30678         * lib/dummy.c [__sun]: Define a dummy variable, not just a typedef.
30679         Needed for Solaris 2.5.1 ranlib and SunPRO C 5.0.
30680
30681 2007-03-11  Bruno Haible  <bruno@clisp.org>
30682
30683         * tests/test-stdbool.c (s, d, e, xlcbug): Disable checks that gnulib's
30684         <stdbool.h> substitute doesn't pass.
30685
30686 2007-03-11  Bruno Haible  <bruno@clisp.org>
30687
30688         * lib/vasnprintf.c (snprintf): Undefine. Avoids an endless recursion.
30689
30690 2007-03-11  Bruno Haible  <bruno@clisp.org>
30691
30692         * gnulib-tool (func_create_megatestdir): Create also an autobuild
30693         script, for submission to autobuild.josefsson.org.
30694
30695 2007-03-10  Bruno Haible  <bruno@clisp.org>
30696
30697         * modules/canonicalize-lgpl-tests: New file.
30698         * tests/test-canonicalize-lgpl.sh: New file.
30699         * tests/test-canonicalize-lgpl.c: New file.
30700
30701         * modules/c-strcase-tests: New file.
30702         * tests/test-c-strcase.sh: New file.
30703         * tests/test-c-strcasecmp.c: New file.
30704         * tests/test-c-strncasecmp.c: New file.
30705
30706         * modules/atexit-tests: New file.
30707         * tests/test-atexit.sh: New file.
30708         * tests/test-atexit.c: New file.
30709
30710 2007-03-10  Bruno Haible  <bruno@clisp.org>
30711
30712         * tests/test-binary-io.sh: Use temporary filenames that are not so
30713         likely to clash with those of other tests (in a parallel make).
30714         * tests/test-binary-io.c: Likewise.
30715
30716 2007-03-10  Bruno Haible  <bruno@clisp.org>
30717
30718         * lib/fseterr.c (fseterr): Port to Solaris/SPARC64. Deactivate the
30719         fallback; use #error instead.
30720         Suggested by Simon Josefsson.
30721
30722 2007-03-10  Bruno Haible  <bruno@clisp.org>
30723
30724         * gnulib-tool (func_create_testdir): Treat MOSTLYCLEANFILES like
30725         CLEANFILES. Put spaces in each line of $cleaned_files, not only the
30726         first and the last.
30727
30728 2007-03-10  Bruno Haible  <bruno@clisp.org>
30729
30730         * lib/stdint_.h (uint_least64_t): Fix typo in last patch.
30731
30732 2007-03-10  Bruno Haible  <bruno@clisp.org>
30733
30734         * modules/snprintf-posix-tests (EXTRA_DIST): New variable. Needed for
30735         "make distcheck".
30736         * modules/sprintf-posix-tests (EXTRA_DIST): Likewise.
30737         * modules/vsnprintf-posix-tests (EXTRA_DIST): Likewise.
30738         * modules/vsprintf-posix-tests (EXTRA_DIST): Likewise.
30739
30740 2007-03-10  Bruno Haible  <bruno@clisp.org>
30741
30742         * modules/allocsa-tests (test_allocsa_SOURCES): Remove redundant
30743         variable.
30744         * modules/dirname-tests (test_dirname_SOURCES): Remove redundant
30745         variable.
30746
30747 2007-03-09  Eric Blake  <ebb9@byu.net>
30748         and Matthew Woehlke  <mw_triad@users.sourceforge.net>  (tiny change)
30749
30750         * lib/stdint_.h (int64_t, uint64_t): Don't undefine if 64-bit
30751         types are not being provided by gnulib.
30752         (GL_INT64_T, GL_UINT64_T): New witnesses of whether gnulib 64-bit
30753         types are supported.
30754
30755 2007-03-10  Bruno Haible  <bruno@clisp.org>
30756
30757         * lib/stdio_.h (__attribute__): New macro.
30758         (fprintf, vfprintf, printf, vprintf, snprintf, vsnprintf, sprintf,
30759         vsprintf): Specify __attribute__ __format__ for GCC.
30760         Suggested by Eric Blake.
30761
30762 2007-03-09  Bruno Haible  <bruno@clisp.org>
30763
30764         * modules/printf-posix-tests: New file.
30765         * tests/test-printf-posix.sh: New file.
30766         * tests/test-printf-posix.c: New file.
30767
30768         * modules/printf-posix: New file.
30769         * lib/printf.c: New file.
30770         * m4/printf-posix-rpl.m4: New file.
30771         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_PRINTF_POSIX,
30772         REPLACE_PRINTF.
30773         * lib/stdio_.h (printf): New declaration.
30774         (format, __format__, ____printf____, ____scanf____, ____strftime____,
30775         ____strfmon____): New macros.
30776         * modules/stdio (Makefile.am): Substitute also GNULIB_PRINTF_POSIX,
30777         REPLACE_PRINTF.
30778
30779 2007-03-09  Bruno Haible  <bruno@clisp.org>
30780
30781         * tests/test-vasnprintf-posix2.sh: New file.
30782         * tests/test-vasnprintf-posix2.c: New file.
30783         * modules/vasnprintf-posix-tests (Files): Add them and m4/locale-fr.m4.
30784         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
30785         (Makefile.am): Activate test-vasnprintf-posix2.sh.
30786
30787         * lib/vasnprintf.c (VASNPRINTF): For the 'a' and 'A' directives, use
30788         a locale dependent decimal point, rather than always '.'.
30789
30790 2007-03-09  Eric Blake  <ebb9@byu.net>
30791
30792         * lib/stdlib_.h (EXIT_FAILURE): GNU code expects this to be 1, in
30793         spite of platforms like Tandem/NSK that define it to -1.
30794
30795 2007-03-08  Bruno Haible  <bruno@clisp.org>
30796
30797         * modules/vprintf-posix-tests: New file.
30798         * tests/test-vprintf-posix.sh: New file.
30799         * tests/test-vprintf-posix.c: New file.
30800         * tests/test-printf-posix.h: New file.
30801
30802         * modules/vprintf-posix: New file.
30803         * lib/vprintf.c: New file.
30804         * m4/vprintf-posix.m4: New file.
30805         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VPRINTF_POSIX,
30806         REPLACE_VPRINTF.
30807         * lib/stdio_.h (vprintf): New declaration.
30808         * modules/stdio (Makefile.am): Substitute also GNULIB_VPRINTF_POSIX,
30809         REPLACE_VPRINTF.
30810
30811 2007-03-08  Bruno Haible  <bruno@clisp.org>
30812
30813         * modules/fprintf-posix-tests: New file.
30814         * tests/test-fprintf-posix.sh: New file.
30815         * tests/test-fprintf-posix.c: New file.
30816
30817         * modules/fprintf-posix: New file.
30818         * lib/fprintf.c: New file.
30819         * m4/fprintf-posix.m4: New file.
30820         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FPRINTF_POSIX,
30821         REPLACE_FPRINTF.
30822         * lib/stdio_.h (fprintf): New declaration.
30823         * modules/stdio (Makefile.am): Substitute also GNULIB_FPRINTF_POSIX,
30824         REPLACE_FPRINTF.
30825
30826 2007-03-08  Bruno Haible  <bruno@clisp.org>
30827
30828         * modules/vfprintf-posix-tests: New file.
30829         * tests/test-vfprintf-posix.sh: New file.
30830         * tests/test-vfprintf-posix.c: New file.
30831         * tests/test-fprintf-posix.h: New file.
30832         * tests/test-fprintf-posix.out: New file.
30833
30834         * modules/vfprintf-posix: New file.
30835         * lib/vfprintf.c: New file.
30836         * m4/vfprintf-posix.m4: New file.
30837         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VFPRINTF_POSIX,
30838         REPLACE_VFPRINTF.
30839         * lib/stdio_.h (vfprintf): New declaration.
30840         * modules/stdio (Makefile.am): Substitute also GNULIB_VFPRINTF_POSIX,
30841         REPLACE_VFPRINTF.
30842
30843 2007-03-08  Bruno Haible  <bruno@clisp.org>
30844
30845         * lib/stdio_.h: Treat __need___FILE like __need_FILE.
30846
30847 2007-03-08  Bruno Haible  <bruno@clisp.org>
30848
30849         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Use 'case' statements
30850         instead of 'expr' invocations.
30851         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
30852         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
30853         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
30854         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
30855         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
30856         Suggested by Paul Eggert.
30857
30858 2007-03-08  Bruno Haible  <bruno@clisp.org>
30859
30860         * modules/fseterr-tests: New file.
30861         * tests/test-fseterr.c: New file.
30862
30863         * modules/fseterr: New file.
30864         * lib/fseterr.h: New file.
30865         * lib/fseterr.c: New file.
30866
30867 2007-03-08  Bruno Haible  <bruno@clisp.org>
30868
30869         * lib/fnmatch_.h: Convert tabs in the middle of lines to spaces.
30870         * lib/getopt_.h: Likewise.
30871         * lib/mbswidth.h: Likewise.
30872         * lib/setenv.h: Likewise.
30873         * lib/vasnprintf.h: Likewise.
30874         * lib/vasprintf.h: Likewise.
30875         * lib/verror.h: Likewise.
30876         * lib/xsetenv.h: Likewise.
30877         * lib/xvasprintf.h: Likewise.
30878
30879 2007-03-08  Jim Meyering  <jim@meyering.net>
30880
30881         * users.txt: Add parted.
30882
30883         * ChangeLog: Restore 1500 lines mistakenly removed from the end.
30884
30885 2007-03-07  Bruno Haible  <bruno@clisp.org>
30886
30887         * m4/printf.m4: Make the shell script snippets copy&pastable.
30888
30889 2007-03-02  Bruno Haible  <bruno@clisp.org>
30890
30891         * lib/netinet_in_.h: New file.
30892         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Test whether netinet/in.h
30893         is self-contained. Set ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H.
30894         * modules/netinet_in (Files): Add lib/netinet_in_.h.
30895         (Depends-on): Add absolute-header.
30896         (Makefile.am): Substitute ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H
30897         into netinet/in.h.
30898
30899 2007-03-03  Bruno Haible  <bruno@clisp.org>
30900
30901         * lib/sys_select_.h: New file.
30902         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SELECT): Test whether sys/select.h
30903         is self-contained. Set ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H.
30904         * modules/sys_select (Files): Add lib/sys_select_.h.
30905         (Depends-on): Add absolute-header.
30906         (Makefile.am): Substitute ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H
30907         into sys/select.h.
30908
30909 2007-03-02  Bruno Haible  <bruno@clisp.org>
30910
30911         * lib/socket_.h: If sys/socket.h exists, include that and <sys/types.h>
30912         before it. Turn HAVE_WINSOCK2_H and HAVE_WS2TCPIP_H into configute-time
30913         values.
30914         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Test also whether
30915         <sys/socket.h> is self-contained. Set ABSOLUTE_SYS_SOCKET_H,
30916         HAVE_SYS_SOCKET_H, HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H.
30917         * modules/sys_socket (Depends-on): Add absolute-header.
30918         (Makefile.am): Substitute ABSOLUTE_SYS_SOCKET_H, HAVE_SYS_SOCKET_H,
30919         HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H into sys/socket.h.
30920         (Include): Remove requirement of inclusion of <sys/types.h>.
30921
30922 2007-03-02  Bruno Haible  <bruno@clisp.org>
30923
30924         * lib/byteswap_.h (bswap_32): Fix formula.
30925
30926 2007-03-06  Bruno Haible  <bruno@clisp.org>
30927
30928         * modules/sprintf-posix-tests: New file.
30929         * tests/test-sprintf-posix.c: New file.
30930
30931         * modules/sprintf-posix: New file.
30932         * lib/sprintf.c: New file.
30933         * m4/sprintf-posix.m4: New file.
30934         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_SPRINTF_POSIX,
30935         REPLACE_SPRINTF.
30936         * lib/stdio_.h (sprintf): New declaration.
30937         * modules/stdio (Makefile.am): Substitute also GNULIB_SPRINTF_POSIX,
30938         REPLACE_SPRINTF.
30939
30940 2007-03-06  Bruno Haible  <bruno@clisp.org>
30941
30942         * modules/vsprintf-posix-tests: New file.
30943         * tests/test-vsprintf-posix.c: New file.
30944         * tests/test-sprintf-posix.h: New file.
30945
30946         * modules/vsprintf-posix: New file.
30947         * lib/vsprintf.c: New file.
30948         * m4/vsprintf-posix.m4: New file.
30949         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VSPRINTF_POSIX,
30950         REPLACE_VSPRINTF.
30951         * lib/stdio_.h (vsprintf): New declaration.
30952         * modules/stdio (Makefile.am): Substitute also GNULIB_VSPRINTF_POSIX,
30953         REPLACE_VSPRINTF.
30954
30955 2007-03-06  Bruno Haible  <bruno@clisp.org>
30956
30957         * modules/vsnprintf (Depend-on): Remove minmax.
30958
30959 2007-03-06  Bruno Haible  <bruno@clisp.org>
30960
30961         * modules/snprintf-posix-tests: New file.
30962         * tests/test-snprintf-posix.c: New file.
30963
30964         * modules/snprintf-posix: New file.
30965         * m4/snprintf-posix.m4: New file.
30966         * m4/snprintf.m4 (gl_REPLACE_SNPRINTF): New macro, extracted from
30967         gl_FUNC_SNPRINTF.
30968         (gl_FUNC_SNPRINTF): Invoke it.
30969         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_SNPRINTF.
30970         * lib/stdio_.h (snprintf): Define as a replacement if REPLACE_SNPRINTF
30971         is set.
30972         * modules/stdio (Makefile.am): Substitute also REPLACE_SNPRINTF.
30973
30974 2007-03-06  Bruno Haible  <bruno@clisp.org>
30975
30976         * modules/vsnprintf-posix-tests: New file.
30977         * tests/test-vsnprintf-posix.c: New file.
30978         * tests/test-snprintf-posix.h: New file.
30979
30980         * modules/vsnprintf-posix: New file.
30981         * m4/vsnprintf-posix.m4: New file.
30982         * m4/vsnprintf.m4 (gl_REPLACE_VSNPRINTF): New macro, extracted from
30983         gl_FUNC_VSNPRINTF.
30984         (gl_FUNC_VSNPRINTF): Invoke it.
30985         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_VSNPRINTF.
30986         * lib/stdio_.h (vsnprintf): Define as a replacement if
30987         REPLACE_VSNPRINTF is set.
30988         * modules/stdio (Makefile.am): Substitute also REPLACE_VSNPRINTF.
30989
30990 2007-03-06  Bruno Haible  <bruno@clisp.org>
30991
30992         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Test for vasnprintf here.
30993         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): ... not here.
30994
30995 2007-03-06  Bruno Haible  <bruno@clisp.org>
30996
30997         * lib/math_.h (acosl): Declare also if HAVE_DECL_ACOSL is set.
30998         (asinl): Declare also if HAVE_DECL_ASINL is set.
30999         (atanl): Declare also if HAVE_DECL_ATANL is set.
31000         (ceill): Declare also if HAVE_DECL_CEILL is set.
31001         (cosl): Declare also if HAVE_DECL_COSL is set.
31002         (expl): Declare also if HAVE_DECL_EXPL is set.
31003         (floorl): Declare also if HAVE_DECL_FLOORL is set.
31004         (frexpl): Declare also if HAVE_DECL_FREXPL is set.
31005         (ldexpl): Declare also if HAVE_DECL_LDEXPL is set.
31006         (logl): Declare also if HAVE_DECL_LOGL is set.
31007         (sinl): Declare also if HAVE_DECL_SINL is set.
31008         (sqrtl): Declare also if HAVE_DECL_SQRTL is set.
31009         (tanl): Declare also if HAVE_DECL_TANL is set.
31010         * modules/math (Makefile.am): Substitute the values of HAVE_DECL_*.
31011         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Set HAVE_DECL_* to 1.
31012         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Fix tests for the
31013         declaration of frexpl, ldexpl.
31014         * modules/printf-frexpl (Depends-on): Add math.
31015         * lib/printf-frexp.c (frexpl, ldexpl): Undo last change.
31016
31017 2007-03-05  Bruno Haible  <bruno@clisp.org>
31018
31019         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Also test whether
31020         frexpl and ldexpl are declared.
31021         * lib/printf-frexp.c (frexpl, ldexpl): Provide fallback declarations.
31022
31023 2007-03-05  Bruno Haible  <bruno@clisp.org>
31024
31025         * gnulib-tool (func_get_automake_snippet): Don't synthesize an
31026         EXTRA_lib_SOURCES augmentation for the relocatable-prog-wrapper module.
31027
31028 2007-03-05  Bruno Haible  <bruno@clisp.org>
31029
31030         * lib/stdio_.h: Include <stddef.h>.
31031
31032 2007-03-05  Bruno Haible  <bruno@clisp.org>
31033
31034         * m4/printf.m4 (gl_SNPRINTF_DIRECTIVE_N): New macro.
31035
31036 2007-03-05  Bruno Haible  <bruno@clisp.org>
31037
31038         * m4/printf.m4: Update with info about OpenBSD 3.9, HP-UX 10.20,
31039         NetBSD 4, from Ralf Wildenhues.
31040
31041 2007-03-04  Bruno Haible  <bruno@clisp.org>
31042
31043         * lib/vasprintf.h: Update #if logic for the case when the functions
31044         exist but are overridden.
31045
31046 2007-03-04  Bruno Haible  <bruno@clisp.org>
31047
31048         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Exclude two buggy
31049         implementations: glibc-2.4 and MacOS X 10.3.
31050         * tests/test-vasnprintf-posix.c (test_function): Test also the case
31051         that exhibits the bugs in glibc-2.4 and MacOS X 10.3.
31052         * tests/test-vasprintf-posix.c (test_function): Likewise.
31053
31054 2007-03-04  Bruno Haible  <bruno@clisp.org>
31055
31056         * modules/vasprintf-posix-tests: New file.
31057         * tests/test-vasprintf-posix.c: New file.
31058
31059         * modules/vasprintf-posix: New file.
31060         * lib/vasprintf.h (asprintf, vasprintf): Rename if REPLACE_VASPRINTF is
31061         defined.
31062         * m4/vasprintf-posix.m4: New file.
31063         * m4/vasprintf.m4 (gl_REPLACE_VASPRINTF): New macro, extracted from
31064         gl_FUNC_VASPRINTF.
31065         (gl_FUNC_VASPRINTF): Invoke it.
31066         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Define REPLACE_VASNPRINTF
31067         here.
31068         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Not here.
31069
31070 2007-03-04  Bruno Haible  <bruno@clisp.org>
31071
31072         * lib/sys_time_.h: Rename GETTIMEOFDAY_REPLACEMENT to
31073         REPLACE_GETTIMEOFDAY.
31074         * modules/sys_time (Makefile.am): Likewise.
31075         * m4/sys_time_h.m4: Likewise.
31076         * m4/gettimeofday.m4: Likewise.
31077
31078 2007-03-04  Bruno Haible  <bruno@clisp.org>
31079
31080         * modules/vasnprintf-posix-tests: New file.
31081         * tests/test-vasnprintf-posix.c: New file.
31082
31083         * modules/vasnprintf-posix: New file.
31084         * lib/vasnprintf.c: Include isnan.h, isnanl.h, printf-frexp.h,
31085         printf-frexpl.h.
31086         (VASNPRINTF): Handle the 'a' and 'A' directives here, if needed.
31087         * lib/vasnprintf.h (asnprintf, vasnprintf): Rename if
31088         REPLACE_VASNPRINTF is defined.
31089         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): New macro, extracted from
31090         gl_FUNC_VASNPRINTF.
31091         (gl_FUNC_VASNPRINTF): Invoke it.
31092         * m4/vasnprintf-posix.m4: New file.
31093         * m4/printf.m4: New file.
31094
31095 2007-03-04  Bruno Haible  <bruno@clisp.org>
31096
31097         Compile progreloc.c only if --enable-relocatable is specified.
31098         * m4/relocatable.m4 (gl_RELOCATABLE): Arrange to compile progreloc.c
31099         if --enable-relocatable was specified.
31100         * modules/relocatable-prog (Makefile.am): Remove progreloc.c from
31101         lib_SOURCES.
31102
31103 2007-03-04  Jim Meyering  <jim@meyering.net>
31104
31105         * lib/acl.c (ACL_NOT_WELL_SUPPORTED): New macro.
31106         Use it consistently, rather than enumerating errno constants.
31107
31108 2007-03-04  Bruno Haible  <bruno@clisp.org>
31109
31110         * modules/xvasprintf-tests: New file.
31111         * tests/test-xvasprintf.c: New file.
31112
31113         * modules/vasprintf-tests: New file.
31114         * tests/test-vasprintf.c: New file.
31115
31116         * modules/vasnprintf-tests: New file.
31117         * tests/test-vasnprintf.c: New file.
31118
31119         * modules/vsnprintf-tests: New file.
31120         * tests/test-vsnprintf.c: New file.
31121
31122         * modules/snprintf-tests: New file.
31123         * tests/test-snprintf.c: New file.
31124
31125 2007-03-04  Bruno Haible  <bruno@clisp.org>
31126
31127         Compile relocatable.c only if --enable-relocatable is specified.
31128         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY_BODY): Renamed from
31129         gl_RELOCATABLE_LIBRARY.
31130         (gl_RELOCATABLE_LIBRARY, gl_RELOCATABLE_LIBRARY_SEPARATE): New macros.
31131         * m4/relocatable.m4 (gl_RELOCATABLE): Invoke gl_RELOCATABLE_LIBRARY.
31132         (gl_RELOCATABLE_BODY): Require gl_RELOCATABLE_LIBRARY_BODY instead of
31133         gl_RELOCATABLE_LIBRARY.
31134         * modules/relocatable-lib (configure.ac): Invoke gl_RELOCATABLE_LIBRARY.
31135         (Makefile.am): Remove lib_SOURCES.
31136         * modules/relocatable-lib-lgpl (configure.ac): Invoke
31137         gl_RELOCATABLE_LIBRARY.
31138         (Makefile.am): Remove lib_SOURCES.
31139         * modules/relocatable-prog (Makefile.am): Don't compile relocatable.c
31140         always.
31141         * modules/relocatable-prog-wrapper (configure.ac): Invoke
31142         gl_RELOCATABLE_LIBRARY_SEPARATE instead of gl_RELOCATABLE_LIBRARY.
31143
31144 2007-03-04  Bruno Haible  <bruno@clisp.org>
31145
31146         * modules/argmatch-tests: New file.
31147         * tests/test-argmatch.c: New file.
31148
31149         * tests/test-allocsa.c (main): Halve the number of loop runs.
31150
31151         * modules/alloca-opt-tests: New file.
31152         * tests/test-alloca-opt.c: New file.
31153
31154 2007-03-04  Jim Meyering  <jim@meyering.net>
31155
31156         Work around difference between Linux ACLs and Solaris 10 ZFS.
31157         * lib/acl.c (set_acl): Revert to using chmod_or_fchmod also
31158         for EINVAL.
31159
31160 2007-03-03  Bruno Haible  <bruno@clisp.org>
31161
31162         * modules/relocatable-prog (Depends-on): Add back progreloc's
31163         dependencies: canonicalize-lgpl, xalloc, xreadlink, stdbool, unistd.
31164
31165 2007-03-03  Bruno Haible  <bruno@clisp.org>
31166
31167         * modules/relocatable-lib-lgpl: Renamed from modules/relocatable-lib.
31168         * modules/relocatable-lib: New file.
31169
31170 2007-03-03  Bruno Haible  <bruno@clisp.org>
31171
31172         * modules/relocatable-prog: Renamed from modules/relocatable.
31173         * doc/relocatable-maint.texi: Talk about module 'relocatable-prog'.
31174
31175 2007-03-03  Bruno Haible  <bruno@clisp.org>
31176
31177         * modules/relocatable-script (Files): Add doc/relocatable.texi,
31178         m4/relocatable-lib.m4.
31179         (Depends-on): Remove 'relocatable'.
31180         (configure.ac): Add gl_RELOCATABLE_NOP.
31181
31182 2007-03-03  Bruno Haible  <bruno@clisp.org>
31183
31184         * modules/relocatable-prog-wrapper: New file.
31185         * modules/relocatable (Depends-on): Add it. Remove all other
31186         dependencies except progname.
31187         (Files): Remove build-aux/install-reloc, lib/relocwrapper.c.
31188
31189         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): New macro.
31190         (gl_FUNC_STRERROR): Nop.
31191         * lib/strerror.c: Compile the file only if !HAVE_STRERROR.
31192
31193         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): New macro.
31194         * lib/setenv.c: Compile the file only if _LIBC || !HAVE_SETENV.
31195
31196         * m4/readlink.m4 (gl_FUNC_READLINK_SEPARATE): New macro.
31197         (gl_FUNC_READLINK): Update.
31198
31199         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL_SEPARATE): New macro.
31200
31201 2007-03-03  Bruno Haible  <bruno@clisp.org>
31202
31203         * lib/xreadlink.c: Include <unistd.h> unconditionally.
31204         * modules/xreadlink (Depends-on): Add unistd.
31205         * modules/xreadlink-with-size (Depends-on): Likewise.
31206
31207 2007-03-03  Bruno Haible  <bruno@clisp.org>
31208
31209         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_UNSETENV): New macros,
31210         extracted from gt_FUNC_SETENV.
31211         (gt_FUNC_SETENV): Remove macro.
31212         * modules/setenv (configure.ac): Add gl_FUNC_SETENV, gl_FUNC_UNSETENV,
31213         remove gt_FUNC_SETENV.
31214
31215 2007-03-03  Bruno Haible  <bruno@clisp.org>
31216
31217         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY): Define
31218         ENABLE_RELOCATABLE here.
31219         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): Don't define it here.
31220
31221 2007-03-03  Bruno Haible  <bruno@clisp.org>
31222
31223         * modules/rbtreehash-list-tests (Depends-on): Add progname.
31224         * tests/test-rbtreehash_list.c: Include progname.h.
31225         (main): Call set_program_name.
31226
31227         * modules/rbtree-oset-tests (Depends-on): Add progname.
31228         * tests/test-rbtree_oset.c: Include progname.h.
31229         (main): Call set_program_name.
31230
31231         * modules/rbtree-list-tests (Depends-on): Add progname.
31232         * tests/test-rbtree_list.c: Include progname.h.
31233         (main): Call set_program_name.
31234
31235         * modules/linked-list-tests (Depends-on): Add progname.
31236         * tests/test-linked_list.c: Include progname.h.
31237         (main): Call set_program_name.
31238
31239 2007-03-03  Bruno Haible  <bruno@clisp.org>
31240
31241         * lib/glob-libc.h (_Restrict_): New macro, copied from lib/regex.h.
31242         All uses of __restrict changed to _Restrict_.
31243         * lib/glob_.h (__restrict): Remove macro.
31244
31245 2007-03-02  Bruno Haible  <bruno@clisp.org>
31246
31247         * modules/gettext (configure.ac): Require gettext infrastructure
31248         from version 0.16.1.
31249
31250 2007-03-02  Bruno Haible  <bruno@clisp.org>
31251
31252         * modules/linkedhash-list-tests (Depends-on): Add progname.
31253         * tests/test-linkedhash_list.c: Include progname.h.
31254         (main): Call set_program_name.
31255
31256         * modules/carray-list-tests (Depends-on): Add progname.
31257         * tests/test-carray_list.c: Include progname.h.
31258         (main): Call set_program_name.
31259
31260         * modules/avltreehash-list-tests (Depends-on): Add progname.
31261         * tests/test-avltreehash_list.c: Include progname.h.
31262         (main): Call set_program_name.
31263
31264         * modules/avltree-oset-tests (Depends-on): Add progname.
31265         * tests/test-avltree_oset.c: Include progname.h.
31266         (main): Call set_program_name.
31267
31268         * modules/avltree-list-tests (Depends-on): Add progname.
31269         * tests/test-avltree_list.c: Include progname.h.
31270         (main): Call set_program_name.
31271
31272         * modules/array-oset-tests (Depends-on): Add progname.
31273         * tests/test-array_oset.c: Include progname.h.
31274         (main): Call set_program_name.
31275
31276         * modules/array-list-tests (Depends-on): Add progname.
31277         * tests/test-array_list.c: Include progname.h.
31278         (main): Call set_program_name.
31279
31280         * modules/argp-tests (Depends-on): Add progname.
31281         * tests/test-argp.c: Include argp.h first. Include progname.h.
31282         (main): Call set_program_name.
31283
31284 2007-03-02  Paul Eggert  <eggert@cs.ucla.edu>
31285
31286         * doc/gnulib-tool.texi (Initial import): Reword description of
31287         _FILE_OFFSET_BITS and _GNU_SOURCE, since they sometimes have a
31288         limited effect even if defined after the first system include.
31289
31290 2007-03-01  Bruno Haible  <bruno@clisp.org>
31291
31292         * build-aux/config.libpath: Update to libtool-1.5.22.
31293         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
31294
31295 2007-03-01  Bruno Haible  <bruno@clisp.org>
31296
31297         * doc/relocatable-maint.texi: Recommend to set foo_CPPFLAGS, not
31298         foo_CFLAGS.
31299         Reported by Ralf Wildenhues.
31300
31301 2007-03-01  Bruno Haible  <bruno@clisp.org>
31302
31303         * build-aux/install-reloc: Remove object files left over by some
31304         compilers.
31305         Reported by Ralf Wildenhues.
31306
31307 2007-03-01  Bruno Haible  <bruno@clisp.org>
31308
31309         * build-aux/install-reloc: Break long lines.
31310
31311 2007-03-01  Bruno Haible  <bruno@clisp.org>
31312
31313         * doc/relocatable.texi: Document that it may not work on OpenBSD.
31314         Reported by Ralf Wildenhues.
31315
31316 2007-03-01  Bruno Haible  <bruno@clisp.org>
31317
31318         * doc/gnulib-tool.texi (Initial import): Remove paragraph about
31319         include ordering constraints.
31320
31321 2007-03-01  Paul Eggert  <eggert@cs.ucla.edu>
31322
31323         Followup to the 2007-02-12 patch, using suggestions from Bruno Haible in
31324         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00136.html>.
31325         * doc/gnulib-tool.texi (Initial import): Mention _FILE_OFFSET_BITS
31326         as another example.
31327         * lib/time_.h: Fix misspelling.
31328         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
31329         Require gl_HEADER_TIME_H_DEFAULTS.
31330         * m4/strptime.m4 (gl_FUNC_STRPTIME): Likewise.
31331         * m4/time_r.m4 (gl_TIME_R): Likewise.
31332         * m4/timegm.m4 (gl_FUNC_TIMEGM): Likewise.
31333
31334 2007-03-01  Bruno Haible  <bruno@clisp.org>
31335
31336         * m4/utimecmp.m4 (gl_UTIMECMP): Don't require gl_TIMESPEC.
31337         * m4/utimens.m4 (gl_UTIMENS): Likewise.
31338
31339 2007-03-01  Jim Meyering  <jim@meyering.net>
31340
31341         * modules/xreadlink (Maintainer): Add my name.
31342         * modules/xreadlink-with-size (Depends-on): Alphabetize.
31343
31344 2007-02-26  Ben Pfaff  <blp@cs.stanford.edu>
31345             Bruno Haible  <bruno@clisp.org>
31346
31347         * build-aux/install-reloc: Compile also c-ctype.c.
31348         * build-aux/relocatable.sh.in: New file.
31349         * doc/relocatable.texi: New file.
31350         * doc/relocatable-maint.texi: New file.
31351         * doc/gnulib.texi: Include relocatable-maint.texi.
31352         * lib/progreloc.c: Include unistd.h unconditionally.
31353         * lib/relocwrapper.c: Include unistd.h unconditionally.
31354         Include c-ctype.h.
31355         (add_dotbin): Use c_tolower.
31356         * m4/relocatable-lib.m4: New file, extracted from m4/relocatable.m4.
31357         (gl_RELOCATABLE_LIBRARY): Renamed from AC_RELOCATABLE_LIBRARY.
31358         (gl_RELOCATABLE_NOP): Renamed from AC_RELOCATABLE_NOP.
31359         * m4/relocatable.m4 (AC_RELOCATABLE_LIBRARY, AC_RELOCATABLE_NOP): Move
31360         to m4/relocatable-lib.m4.
31361         (gl_RELOCATABLE): Renamed from AC_RELOCATABLE. Set also
31362         RELOCATABLE_CONFIG_H_DIR, RELOCATABLE_SRC_DIR, RELOCATABLE_BUILD_DIR.
31363         (gl_RELOCATABLE_BODY): Renamed from AC_RELOCATABLE_BODY. Don't
31364         require obsolete macro AC_EXEEXT. Don't check for unistd.h. Don't set
31365         SET_RELOCATABLE. Instead set RELOCATABLE_LDFLAGS, INSTALL_PROGRAM_ENV.
31366         * modules/relocatable: New file.
31367         * modules/relocatable-lib: New file.
31368         * modules/relocatable-script: New file.
31369
31370 2007-02-28  Bruno Haible  <bruno@clisp.org>
31371
31372         Import --enable-relocatable infrastructure.
31373         * build-aux/config.libpath: New file, from GNU gettext.
31374         * build-aux/install-reloc: New file, from GNU gettext.
31375         * build-aux/reloc-ldflags: New file, from GNU gettext.
31376         * lib/relocatable.h: New file, from GNU gettext.
31377         * lib/relocatable.c: New file, from GNU gettext.
31378         * lib/relocwrapper.c: New file, from GNU gettext.
31379         * m4/relocatable.m4: New file, from GNU gettext.
31380
31381 2007-02-28  Bruno Haible  <bruno@clisp.org>
31382
31383         * MODULES.html.sh (File system functions): Add xreadlink-with-size.
31384
31385         * modules/xreadlink: New file, from GNU gettext with modifications.
31386         * lib/xreadlink.c: New file, from GNU gettext.
31387         * lib/xreadlink.h: Add comments.
31388         (xreadlink): New declaration.
31389
31390         * modules/xreadlink-with-size: Renamed from modules/xreadlink.
31391         (Files): Remove m4/xreadlink.m4. Replace lib/xreadlink.c with
31392         lib/xreadlink-with-size.c.
31393         (configure.ac): Remove gl_XREADLINK invocation.
31394         (Makefile.am): Augment lib_SOURCES.
31395         * m4/xreadlink.m4: Remove file.
31396         * lib/xreadlink-with-size.c: Renamed from lib/xreadlink.c.
31397         (xreadlink_with_size): Renamed from xreadink.
31398         * lib/xreadlink.h (xreadlink_with_size): Renamed from xreadink.
31399         * modules/canonicalize (Depends-on): Replace xreadlink with
31400         xreadlink-with-size.
31401         * lib/canonicalize.c (canonicalize_filename_mode): Update.
31402
31403 2007-02-25  Jim Meyering  <jim@meyering.net>
31404
31405         * build-aux/announce-gen: When complaining about excess arguments,
31406         list them.
31407
31408 2007-02-25  Paul Eggert  <eggert@cs.ucla.edu>
31409
31410         * README: Document signed integer overflow situation more
31411         accurately.
31412
31413 2007-02-25  Bruno Haible  <bruno@clisp.org>
31414
31415         * lib/vasnprintf.c (VASNPRINTF): Fix estimate of size needed for a
31416         'a' or 'A' conversion.
31417
31418 2007-02-25  Bruno Haible  <bruno@clisp.org>
31419
31420         * modules/filename: Renamed from modules/pathname.
31421         (Files): Replace lib/pathname.h with lib/filename.h. Replace
31422         lib/concatpath.c with lib/concat-filename.c.
31423         (Makefile.am): Update.
31424         (Include): Replace pathname.h with filename.h.
31425         * lib/filename.h: Renamed from lib/pathname.h.
31426         (concatenated_filename): Renamed from concatenated_pathname.
31427         * lib/concat-filename.c: Renamed from lib/concatpath.c.
31428         (concatenated_filename): Renamed from concatenated_pathname.
31429         * lib/findprog.c: Include filename.h instead of pathname.h.
31430         (find_in_path): Update.
31431         * lib/javacomp.c: Include filename.h instead of pathname.h.
31432         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
31433         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
31434         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
31435         is_oldgcj_14_13_usable, is_javac_usable): Update.
31436         * lib/javaexec.c: Include filename.h instead of pathname.h.
31437         (execute_java_class): Update.
31438         * modules/findprog: Update.
31439         * modules/javacomp: Update.
31440         * modules/javaexec: Update.
31441         * MODULES.html.sh (File system functions): Add 'filename', remove
31442         'pathname'.
31443
31444 2007-02-25  Bruno Haible  <bruno@clisp.org>
31445
31446         * modules/printf-frexpl-tests: New file.
31447         * tests/test-printf-frexpl.c: New file.
31448
31449         * modules/printf-frexpl: New file.
31450         * lib/printf-frexpl.h: New file.
31451         * lib/printf-frexpl.c: New file.
31452         * m4/printf-frexpl.m4: New file.
31453
31454 2007-02-25  Bruno Haible  <bruno@clisp.org>
31455
31456         * modules/printf-frexp-tests: New file.
31457         * tests/test-printf-frexp.c: New file.
31458
31459         * modules/printf-frexp: New file.
31460         * lib/printf-frexp.h: New file.
31461         * lib/printf-frexp.c: New file.
31462         * m4/printf-frexp.m4: New file.
31463
31464 2007-02-25  Bruno Haible  <bruno@clisp.org>
31465
31466         Assume automake >= 1.10 for the tests.
31467         * modules/arcfour-tests (TESTS): Remove $(EXEEXT) suffix.
31468         * modules/arctwo-tests: Likewise.
31469         * modules/argp-tests: Likewise.
31470         * modules/avltree-list-tests: Likewise.
31471         * modules/avltree-oset-tests: Likewise.
31472         * modules/avltreehash-list-tests: Likewise.
31473         * modules/carray-list-tests: Likewise.
31474         * modules/crc-tests: Likewise.
31475         * modules/des-tests: Likewise.
31476         * modules/gc-arcfour-tests: Likewise.
31477         * modules/gc-arctwo-tests: Likewise.
31478         * modules/gc-des-tests: Likewise.
31479         * modules/gc-hmac-md5-tests: Likewise.
31480         * modules/gc-hmac-sha1-tests: Likewise.
31481         * modules/gc-md2-tests: Likewise.
31482         * modules/gc-md4-tests: Likewise.
31483         * modules/gc-md5-tests: Likewise.
31484         * modules/gc-pbkdf2-sha1-tests: Likewise.
31485         * modules/gc-rijndael-tests: Likewise.
31486         * modules/gc-sha1-tests: Likewise.
31487         * modules/gc-tests: Likewise.
31488         * modules/getaddrinfo-tests: Likewise.
31489         * modules/hmac-md5-tests: Likewise.
31490         * modules/hmac-sha1-tests: Likewise.
31491         * modules/linked-list-tests: Likewise.
31492         * modules/linkedhash-list-tests: Likewise.
31493         * modules/lock-tests: Likewise.
31494         * modules/md2-tests: Likewise.
31495         * modules/md4-tests: Likewise.
31496         * modules/md5-tests: Likewise.
31497         * modules/rbtree-list-tests: Likewise.
31498         * modules/rbtree-oset-tests: Likewise.
31499         * modules/rbtreehash-list-tests: Likewise.
31500         * modules/read-file-tests: Likewise.
31501         * modules/rijndael-tests: Likewise.
31502         * modules/stdint-tests: Likewise.
31503         * modules/tls-tests: Likewise.
31504
31505 2007-02-24  Bruno Haible  <bruno@clisp.org>
31506
31507         * lib/isnanl.h (isnanl): Define through isnan if isnan is a macro.
31508         * m4/isnan.m4 (gl_FUNC_ISNAN_NO_LIBM): Don't check for isnan as a
31509         function; instead check whether isnan with a double argument links.
31510         * m4/isnanl.m4 (gl_FUNC_ISNANL_NO_LIBM): Don't check for isnanl as a
31511         function; instead check whether isnan with a 'long double' argument
31512         links.
31513         Reported by Eric Blake <ebb9@byu.net>.
31514
31515 2007-02-24  Bruno Haible  <bruno@clisp.org>
31516
31517         * lib/isnan.c: Support the 'long double' case if USE_LONG_DOUBLE is
31518         defined.
31519         * lib/isnanl.c: Remove all code. Just include isnan.c.
31520         * modules/isnanl-nolibm (Files): Add lib/isnan.c.
31521
31522 2007-02-25  Jim Meyering  <jim@meyering.net>
31523
31524         Avoid conflicting types for 'unsetenv' on FreeBSD.
31525         * lib/putenv.c (_unsetenv): Rename from "unsetenv", to avoid
31526         conflicting with FreeBSD's (5.0 and 6.1) function declaration
31527         in stdlib.h.
31528
31529 2007-02-24  Bruno Haible  <bruno@clisp.org>
31530
31531         * modules/isnanl-nolibm-tests: New file.
31532         * tests/test-isnanl.c: New file.
31533
31534         * modules/isnanl-nolibm: New file.
31535         * lib/isnanl.h: New file.
31536         * lib/isnanl.c: New file.
31537         * m4/isnanl.m4: New file.
31538
31539 2007-02-24  Bruno Haible  <bruno@clisp.org>
31540
31541         * modules/isnan-nolibm-tests: New file.
31542         * tests/test-isnan.c: New file.
31543
31544         * modules/isnan-nolibm: New file.
31545         * lib/isnan.h: New file.
31546         * lib/isnan.c: New file.
31547         * m4/isnan.m4: New file.
31548
31549 2007-02-24  Bruno Haible  <bruno@clisp.org>
31550
31551         * lib/frexpl.c (frexpl): Correct return values for x = 1.0L. Don't
31552         assume that an exponent fits in 20 bits.
31553
31554 2007-02-24  Jim Meyering  <jim@meyering.net>
31555
31556         * m4/regex.m4: Update the description of the configure-time option,
31557         --without-included-regex, to state accurately what the defaults are,
31558         and perhaps to give people an idea why using this option is risky.
31559
31560 2007-02-24  Paul Eggert  <eggert@cs.ucla.edu>
31561
31562         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check for a nanosleep that
31563         loops on small arguments.  This attempts to avoid the problem
31564         Bruno Haible reported for AIX 4.3.2 in
31565         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00309.html>.
31566
31567 2007-02-23  Bruno Haible  <bruno@clisp.org>
31568
31569         * m4/perl.m4 (gl_PERL): Require version 5.005, not 5.003.
31570         Needed for help2man.
31571
31572 2007-02-23  Karl Berry  <karl@gnu.org>
31573
31574         * doc/gnulib-tool.texi (CVS Issues): mention that when foo_.h
31575         exists, foo.h should be cvs-ignored, not committed.
31576
31577 2007-02-23  Eric Blake  <ebb9@byu.net>
31578
31579         * lib/getdate.h (includes):  Include <time.h>, not "timespec.h".
31580         * lib/stat-time.h (includes): Likewise.
31581         * lib/utimecmp.c (includes): Likewise.
31582         * lib/utimens.h (includes): Likewise.
31583         * lib/getdate.y (includes): Also include "timespec.h" for use
31584         internal to the module.
31585         * modules/utimens (Depends-on): Revert yesterday's patch.
31586         * modules/nanosleep (Depends-on): Add missing dependency.
31587
31588 2007-02-22  Bruno Haible  <bruno@clisp.org>
31589
31590         * lib/glob.c: Don't include getlogin_r.h.
31591
31592 2007-02-22  Jim Meyering  <jim@meyering.net>
31593
31594         * modules/utimens (Depends-on): Add timespec, required for
31595         utimens.h's inclusion of timespec.h.
31596
31597 2007-02-21  Paul Eggert  <eggert@cs.ucla.edu>
31598
31599         * lib/getcwd.c (__getcwd): Undo previous change; it mishandled
31600         long unreadable paths in GNU/Linux.  Problem reported by Andreas
31601         Schwab in
31602         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00261.html>.
31603         I'll try to think of a better way to fix the Solaris problem.
31604
31605         * lib/getcwd.c (__getcwd): Don't assume getcwd (NULL, 0) works
31606         like glibc; on Solaris 10, it fails with errno == EINVAL.
31607         POSIX says the behavior is unspecified if the first argument is NULL,
31608         so play it safe and never pass NULL to the system getcwd.
31609
31610 2007-02-21  Jim Meyering  <jim@meyering.net>
31611
31612         * lib/gettimeofday.c (rpl_gettimeofday): Remove declaration
31613         of gettimeofday.  It would conflict with the one now always
31614         provided via sys_time_.h.  Reported by Matthew Woehlke, as
31615         an IRIX 6.5 build failure.
31616
31617 2007-02-20  Paul Eggert  <eggert@cs.ucla.edu>
31618
31619         Minor fixups to port to Solaris 10 with Sun C 5.8.
31620         * lib/getcwd.c [!_LIBC]: Include dirfd.h, since we use dirfd.
31621         * modules/getcwd (Depends-on): Add dirfd.
31622         * lib/putenv.c (putenv): #undef it.
31623         (rpl_putenv): New decl.
31624         (malloc, free): Include <stdlib.h> rather than prototyping separately.
31625
31626 2007-02-20  Bruno Haible  <bruno@clisp.org>
31627
31628         * modules/stdio-tests: New file.
31629         * tests/test-stdio.c: New file.
31630
31631         * modules/vsnprintf (Files): Remove lib/vsnprintf.h.
31632         (Depends-on): Add stdio.
31633         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
31634         (Include): Use <stdio.h> instead of vsnprintf.h.
31635         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
31636         HAVE_DECL_VSNPRINTF.
31637         * lib/vsnprintf.c: Include <stdio.h> instead of vsnprintf.h.
31638
31639         * modules/snprintf (Files): Remove lib/snprintf.h.
31640         (Depends-on): Add stdio.
31641         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
31642         (Include): Use <stdio.h> instead of snprintf.h.
31643         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
31644         HAVE_DECL_SNPRINTF.
31645         * lib/snprintf.c: Include <stdio.h> instead of snprintf.h.
31646         * lib/getaddrinfo.c: Likewise.
31647
31648         * modules/stdio: New file.
31649         * lib/stdio_.h: New file, incorporating snprintf.h and vsnprintf.h.
31650         * lib/snprintf.h: Remove file.
31651         * lib/vsnprintf.h: Remove file.
31652         * lib/.cppi-disable: Remove snprintf.h.
31653         * m4/stdio_h.m4: New file.
31654         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdio.
31655
31656 2007-02-20  Jim Meyering  <jim@meyering.net>
31657
31658         * lib/ftruncate.c [HAVE_CHSIZE]: Document that this code is
31659         used by e.g., mingw.  From Bruno Haible.
31660
31661 2007-02-19  Bruno Haible  <bruno@clisp.org>
31662
31663         * lib/string_.h: Use "#pragma GCC system_header" to suppress some gcc
31664         warnings.
31665         Reported by Ben Pfaff <blp@cs.stanford.edu>.
31666
31667 2007-02-19  Bruno Haible  <bruno@clisp.org>
31668
31669         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Don't request a complaint mail
31670         from mingw users.
31671
31672 2007-02-19  Bruno Haible  <bruno@clisp.org>
31673
31674         * lib/stdlib_.h: Use "#pragma GCC system_header" to suppress some gcc
31675         warnings.
31676         Reported by Joel E. Denny <jdenny@ces.clemson.edu> via Paul Eggert.
31677
31678 2007-02-19  Jim Meyering  <jim@meyering.net>
31679
31680         Don't use FD after a successful "fdopendir (fd)".
31681         * lib/getcwd.c (__getcwd) [AT_FDCWD]: fdopendir (fd) usually closes fd.
31682         Reset it by calling dirfd on the just-obtained DIR*.
31683
31684         * m4/ftruncate.m4: Adjust comment to give this module a 3-year reprieve.
31685         Prompted by a report from Bruno Haible that mingw lacks ftruncate.
31686
31687 2007-02-18  Bruno Haible  <bruno@clisp.org>
31688
31689         * lib/readlink.c: Include <unistd.h>.
31690         * m4/readlink.m4 (gl_FUNC_READLINK): Require gl_UNISTD_H_DEFAULTS. Set
31691         HAVE_READLINK.
31692         * modules/readlink (Depends-on): Add unistd.
31693         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
31694         (Include): Add <unistd.h>.
31695
31696         * lib/getlogin_r.h: Remove file.
31697         * lib/getlogin_r.c: Include <unistd.h> instead of getlogin_r.h.
31698         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE): Remove macro.
31699         (gl_GETLOGIN_R): Inline it here. Require gl_UNISTD_H_DEFAULTS. Set
31700         HAVE_DECL_GETLOGIN_R.
31701         * modules/getlogin_r (Files): Remove lib/getlogin_r.h.
31702         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
31703         (Include): Use <unistd.h> instead of getlogin_r.h.
31704
31705         * lib/getcwd.h: Remove file.
31706         * lib/getcwd.c: Include <unistd.h> instead of getcwd.h.
31707         * lib/xgetcwd.c: Likewise.
31708         * m4/getcwd.m4 (gl_FUNC_GETCWD): Require gl_UNISTD_H_DEFAULTS. Set
31709         REPLACE_GETCWD. Don't define __GETCWD_PREFIX.
31710         * modules/getcwd (Files): Remove lib/getcwd.h.
31711         (Depends-on): Add unistd.
31712         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
31713         (Include): Use <unistd.h> instad of getcwd.h.
31714
31715         * lib/ftruncate.c: Include <unistd.h> first.
31716         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Require gl_UNISTD_H_DEFAULTS.
31717         Set HAVE_FTRUNCATE.
31718         * modules/ftruncate (Depends-on): Add unistd.
31719         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
31720
31721         * lib/fchdir.c: Include <unistd.h> first.
31722         * lib/dirent_.h: Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT.
31723         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_UNISTD_H_DEFAULTS instead
31724         of gl_HEADER_UNISTD_DEFAULTS. Set REPLACE_FCHDIR. Don't set UNISTD_H.
31725         * modules/fchdir (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
31726         (Makefile.am): Substitute also REPLACE_FCHDIR into dirent.h.
31727
31728         * lib/dup2.c: Include <unistd.h> first.
31729         * m4/dup2.m4 (gl_FUNC_DUP2): Require gl_UNISTD_H_DEFAULTS. Set
31730         HAVE_DUP2.
31731         * modules/dup2 (Depends-on): Add unistd.
31732         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
31733
31734         * lib/chown.c: Include <unistd.h> first. Undefine chown later.
31735         * m4/chown.m4 (gl_FUNC_CHOWN): Require gl_UNISTD_H_DEFAULTS. Set
31736         REPLACE_CHOWN. Don't define chown as a macro here.
31737         * modules/chown (Depends-on): Add unistd.
31738         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
31739
31740         * lib/unistd_.h: Test HAVE_UNISTD_H determined at configure time.
31741         Add definition for GL_LINK_WARNING.
31742         (chown, dup2): New declarations.
31743         (fchdir): Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT. Provide optional
31744         link warning.
31745         (ftruncate): New declaration.
31746         (getcwd): New declaration, taken from old getcwd.h.
31747         (getlogin_r): New declaration, taken from old getlogin_r.h.
31748         (readlink): New declaration.
31749         * m4/unistd_h.m4 (gl_UNISTD_H): Renamed from gl_HEADER_UNISTD. Don't
31750         set UNISTD_H. Inline gl_PREREQ_UNISTD. Set HAVE_UNISTD_H.
31751         (gl_PREREQ_UNISTD): Remove macro.
31752         (gl_UNISTD_MODULE_INDICATOR): New macro.
31753         (gl_UNISTD_H_DEFAULTS): Renamed from gl_HEADER_UNISTD_DEFAULTS. Set
31754         many new variables. Don't set UNISTD_H.
31755         * modules/unistd (Description): Change.
31756         (Depends-on): Add link-warning.
31757         (configure.ac): Update.
31758         (Makefile.am): Create unistd.h always. Substitute many new variables
31759         into it.
31760
31761 2007-02-18  Bruno Haible  <bruno@clisp.org>
31762
31763         * lib/stdlib_.h (getsubopt): New declaration, copied from getsubopt.h.
31764         * modules/stdlib (stdlib.h): Also substitute GNULIB_GETSUBOPT and
31765         HAVE_GETSUBOPT.
31766         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Also initialize
31767         GNULIB_GETSUBOPT and HAVE_GETSUBOPT.
31768         * lib/getsubopt.h: Remove file.
31769         * modules/getsubopt (Files): Remove lib/getsubopt.h.
31770         (Depends-on): Add stdlib.
31771         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
31772         (Includes): Use <stdlib.h> instead of getsubopt.h.
31773         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Require gl_STDLIB_H_DEFAULTS.
31774         Set HAVE_GETSUBOPT.
31775         * lib/getsubopt.c: Don't include getsubopt.h.
31776
31777 2007-02-18  Bruno Haible  <bruno@clisp.org>
31778
31779         * modules/fchdir (Depends-on): Add dup2.
31780
31781 2007-02-18  Bruno Haible  <bruno@clisp.org>
31782
31783         * lib/stdlib_.h: Handle glibc's special invocation convention
31784         specially.
31785
31786 2007-02-18  Bruno Haible  <bruno@clisp.org>
31787
31788         * modules/stdlib-tests: New file.
31789         * tests/test-stdlib.c: New file.
31790
31791         * modules/mkstemp (Files): Remove lib/mkstemp.h.
31792         (Depends-on): Add stdlib.
31793         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
31794         (Includes): Use <stdlib.h> instead of mkstemp.h.
31795         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require gl_STDLIB_H_DEFAULTS. Set
31796         REPLACE_MKSTEMP. Remove definition of __MKSTEMP_PREFIX.
31797         * lib/mkstemp.c: Don't include mkstemp.h.
31798         * lib/mkstemp-safer.c: Include <stdlib.h> instead of mkstemp.h.
31799         * lib/stdlib--.h: Don't include mkstemp.h.
31800
31801         * modules/mkdtemp (Files): Remove lib/mkdtemp.h.
31802         (Depends-on): Add stdlib.
31803         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
31804         (Includes): Use <stdlib.h> instead of mkdtemp.h.
31805         * m4/mkdtemp.m4 (gt_FUNC_MKDTEMP): Require gl_STDLIB_H_DEFAULTS. Set
31806         HAVE_MKDTEMP.
31807         * lib/mkdtemp.c: Don't include mkdtemp.h.
31808         * lib/clean-temp.c: Don't include mkdtemp.h.
31809
31810         * modules/exit (Files): Remove lib/exit.h.
31811         (Depends-on): Add stdlib.
31812         (Makefile.am): Remove lib_SOURCES.
31813         (Include): Use <stdlib.h> instead of exit.h.
31814         * lib/argmatch.c: Don't include exit.h.
31815         * lib/execute.c: Likewise.
31816         * lib/pagealign_alloc.c: Likewise.
31817         * lib/pipe.c: Likewise.
31818         * lib/wait-process.c: Likewise.
31819         * lib/copy-file.c: Include <stdlib.h> instead of exit.h.
31820         * lib/exitfail.c: Likewise.
31821         * lib/savewd.c: Likewise.
31822         * lib/xsetenv.c: Likewise.
31823
31824         * modules/stdlib: New file.
31825         * lib/stdlib_.h: New file, incorporating exit.h, mkdtemp.h, mkstemp.h
31826         and extra comments about mkstemp().
31827         * lib/exit.h: Remove file.
31828         * lib/mkdtemp.h: Remove file.
31829         * lib/mkstemp.h: Remove file.
31830         * m4/stdlib_h.m4: New file.
31831         * MODULES.html.sh (Support for systems lacking ANSI C 89): Add stdlib.
31832
31833 2007-02-18  Bruno Haible  <bruno@clisp.org>
31834
31835         * modules/math-tests: New file.
31836         * tests/test-math.c: New file.
31837
31838         * modules/math: New file.
31839         * modules/mathl (Files): Remove lib/mathl.h.
31840         (Depends-on): Add math.
31841         (Makefile.am): Don't mention mathl.h.
31842         (Include): Use <math.h> instead of mathl.h.
31843         * lib/math_.h: New file.
31844         * lib/mathl.h: Remove file.
31845         * lib/acosl.c: Include <config.h> and <math.h> first. Don't include
31846         mathl.h.
31847         * lib/asinl.c: Likewise.
31848         * lib/atanl.c: Likewise.
31849         * lib/ceill.c: Likewise.
31850         * lib/cosl.c: Likewise.
31851         * lib/expl.c: Likewise.
31852         * lib/floorl.c: Likewise.
31853         * lib/frexpl.c: Likewise.
31854         * lib/ldexpl.c: Likewise.
31855         * lib/logl.c: Likewise.
31856         * lib/sincosl.c: Likewise.
31857         * lib/sinl.c: Likewise.
31858         * lib/sqrtl.c: Likewise.
31859         * lib/tanl.c: Likewise.
31860         * lib/trigl.c: Likewise.
31861         * m4/math_h.m4: New file.
31862         * MODULES.html.sh (Mathematics): Add math.
31863
31864 2007-02-17  Bruno Haible  <bruno@clisp.org>
31865
31866         * modules/wctype-tests: New file.
31867         * tests/test-wctype.c: New file.
31868
31869         * modules/wchar-tests: New file.
31870         * tests/test-wchar.c: New file.
31871
31872         * modules/unistd-tests: New file.
31873         * tests/test-unistd.c: New file.
31874
31875         * modules/time-tests: New file.
31876         * tests/test-time.c: New file.
31877
31878         * modules/sysexits-tests: New file.
31879         * tests/test-sysexits.c: New file.
31880
31881         * modules/sys_time-tests: New file.
31882         * tests/test-sys_time.c: New file.
31883
31884         * modules/sys_stat-tests: New file.
31885         * tests/test-sys_stat.c: New file.
31886
31887         * modules/sys_socket-tests: New file.
31888         * tests/test-sys_socket.c: New file.
31889
31890         * modules/sys_select-tests: New file.
31891         * tests/test-sys_select.c: New file.
31892
31893         * modules/string-tests: New file.
31894         * tests/test-string.c: New file.
31895
31896         * modules/stdbool-tests: New file.
31897         * tests/test-stdbool.c: New file.
31898
31899         * modules/netinet_in-tests: New file.
31900         * tests/test-netinet_in.c: New file.
31901
31902         * modules/inttypes-tests: New file.
31903         * tests/test-inttypes.c: New file.
31904
31905         * modules/fcntl-tests: New file.
31906         * tests/test-fcntl.c: New file.
31907
31908         * modules/byteswap-tests: New file.
31909         * tests/test-byteswap.c: New file.
31910
31911         * modules/arpa_inet-tests: New file.
31912         * tests/test-arpa_inet.c: New file.
31913
31914 2007-02-17  Bruno Haible  <bruno@clisp.org>
31915
31916         * lib/inttypes_.h: Add definition for GL_LINK_WARNING.
31917         (imaxabs, imaxdiv, strtoimax, strtoumax): Don't declare the function
31918         if the corresponding module is not enabled. Emit link warnings if
31919         the function is used nevertheless.
31920         * m4/inttypes.m4 (gl_INTTYPES_H): Never use the existing <inttypes.h>.
31921         Don't AC_SUBST HAVE_DECL_IMAXABS, HAVE_DECL_IMAXDIV,
31922         HAVE_DECL_STRTOIMAX, HAVE_DECL_STRTOUMAX.
31923         (gl_INTTYPES_MODULE_INDICATOR, gl_INTTYPES_H_DEFAULTS): New macros.
31924         * modules/inttypes (Depends-on): Add link-warning.
31925         (Makefile.am): Copy the contents of build-aux/link-warning.h into
31926         inttypes.h. Substitute also GNULIB_IMAXABS, GNULIB_IMAXDIV,
31927         GNULIB_STRTOIMAX, GNULIB_STRTOUMAX.
31928         * modules/imaxabs (configure.ac): Invoke gl_INTTYPES_MODULE_INDICATOR.
31929         * modules/imaxdiv (configure.ac): Likewise.
31930         * modules/strtoimax (configure.ac): Likewise.
31931         * modules/strtoumax (configure.ac): Likewise.
31932
31933 2007-02-17  Bruno Haible  <bruno@clisp.org>
31934
31935         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Include the contents of
31936         gl_STRING_MODULE_INDICATOR_DEFAULTS.
31937         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Remove macro.
31938         (gl_HEADER_STRING_H_BODY, gl_STRING_MODULE_INDICATOR): Update.
31939
31940 2007-02-17  Bruno Haible  <bruno@clisp.org>
31941
31942         * modules/link-warning: New file.
31943         * build-aux/link-warning.h: New file, extracted from lib/string_.h.
31944         * lib/string_.h (GL_LINK_WARNING): Remove definition.
31945         * modules/string (Depends-on): Add link-warning.
31946         (Makefile.am): Copy the contents of build-aux/link-warning.h into
31947         string.h.
31948         * MODULES.html.sh (Support for building libraries and executables): Add
31949         link-warning.
31950
31951 2007-02-17  Bruno Haible  <bruno@clisp.org>
31952
31953         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strcasecmp,
31954         strncasecmp, strchr, strchrnul, strdup, strndup, strnlen, strcspn,
31955         strpbrk, strspn, strrchr, strsep, strstr, strcasestr, strtok_r): Break
31956         long lines.
31957
31958 2007-02-17  Ben Pfaff  <blp@cs.stanford.edu>
31959             Bruno Haible  <bruno@clisp.org>
31960
31961         * modules/tmpfile: New file.
31962         * lib/tmpfile.c: New file.
31963         * m4/tmpfile.m4: New file.
31964         * MODULES.html.sh (func_all_modules): New section "Input/output".
31965
31966 2007-02-15  Bruno Haible  <bruno@clisp.org>
31967
31968         * lib/clean-temp.c [WIN32 && !CYGWIN]: Include <windows.h>.
31969         (supports_delete_on_close): New function.
31970         (open_temp, fopen_temp): Use _O_TEMPORARY when supported.
31971
31972 2007-02-14  Bruno Haible  <bruno@clisp.org>
31973
31974         * modules/mbspcasecmp-tests: New file.
31975         * tests/test-mbspcasecmp.sh: New file.
31976         * tests/test-mbspcasecmp.c: New file.
31977
31978         New module mbspcasecmp.
31979         * modules/mbspcasecmp: New file.
31980         * lib/mbspcasecmp.c: New file.
31981         * lib/string_.h (strncasecmp): Change warning message.
31982         (mbspcasecmp): New declaration.
31983         * m4/mbspcasecmp.m4: New file.
31984         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
31985         GNULIB_MBSPCASECMP.
31986         * modules/string (string.h): Also substitute GNULIB_MBSPCASECMP.
31987         * MODULES.html.sh (Internationalization functions): Add mbspcasecmp.
31988
31989 2007-02-14  Bruno Haible  <bruno@clisp.org>
31990
31991         * modules/mbsncasecmp-tests: New file.
31992         * tests/test-mbsncasecmp.sh: New file.
31993         * tests/test-mbsncasecmp.c: New file.
31994
31995         New module mbsncasecmp.
31996         * modules/mbsncasecmp: New file.
31997         * lib/mbsncasecmp.c: New file.
31998         * lib/string_.h (mbsncasecmp): New declaration.
31999         * m4/mbsncasecmp.m4: New file.
32000         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
32001         GNULIB_MBSNCASECMP.
32002         * modules/string (string.h): Also substitute GNULIB_MBSNCASECMP.
32003         * MODULES.html.sh (Internationalization functions): Add mbsncasecmp.
32004
32005 2007-02-14  Paul Eggert  <eggert@cs.ucla.edu>
32006
32007         * lib/exclude.c (FNM_EXTMATCH): Define if system does not.
32008         Verify that it doesn't overlap with our flags.
32009         (fnmatch_no_wildcards): Don't use strcasecmp or strncasecmp, which
32010         do not have the desired effect in multibyte locales; instead, use
32011         mbscasecmp.
32012         * modules/exclude (Depends-on): Depend on mbscasecmp, not strcase.
32013         Add dependency on xalloc.  Depend on fnmatch, not fnmatch-gnu, since
32014         we don't require GNU fnmatch ourselves (if our users require it, they
32015         should do so explicitly).
32016
32017         Fix regex code so it doesn't rely on strcasecmp.
32018         * lib/regex_internal.h: Include <langinfo.h> only if _LIBC is defined.
32019         Otherwise, include gnulib's langinfo.h.
32020         * lib/regcomp.c (init_dfa): Don't use strcasecmp, as it can have
32021         undesirable behavior in non-C locales.  Instead, rely on localecharset.
32022         * m4/regex.m4 (gl_PREREQ_REGEX): Don't require AM_LANGINFO_CODESET.
32023         * modules/regex (FILES): Remove m4/codeset.m4.
32024         (Depends-on): Add localcharset.  Remove strcase.
32025
32026 2007-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32027
32028         * m4/unlinkdir.m4 (gl_UNLINKDIR): Fix m4 quoting bug.
32029         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Likewise.
32030
32031 2007-02-13  Bruno Haible  <bruno@clisp.org>
32032
32033         * m4/intdiv0.m4 (gt_INTDIV0): Assume ANSI C. Fix underquoting bug.
32034         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
32035
32036 2007-02-12  Bruno Haible  <bruno@clisp.org>
32037
32038         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
32039         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): If
32040         GNULIB_POSIXCHECK and the gnulib module not enabled, provoke a link-
32041         time warning rather than a link error.
32042
32043 2007-02-12  Bruno Haible  <bruno@clisp.org>
32044
32045         * m4/locale-fr.m4 (gt_LOCALE_FR): Fix m4 quoting bug.
32046         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
32047         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
32048
32049 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
32050
32051         * lib/string_.h (strncasecmp): Fix typo: this macro takes 3
32052         args, not 2.
32053
32054 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
32055
32056         New module 'time', so that apps can include <time.h> as per
32057         POSIX and GNU instead of separate include files like time_r.h
32058         and timegm.h.  This implementation tries out a simpler approach
32059         for replacing decls in standard include files (as compared to
32060         the string module), somewhat as an experiment.
32061
32062         * config/srclist.txt: Comment out mktime.c for now.
32063         * doc/gnulib-tool.texi (Initial import): Don't use time_r as an example
32064         since it doesn't apply any more.  Use generic wording instead.
32065         * MODULES.html.sh (Support for systems lacking POSIX:2001): New module
32066         'time'.
32067         * lib/time_.h, m4/time_h.m4, modules/time: New files.
32068         * lib/strptime.h, lib/time_r.h, lib/timegm.h: Remove.
32069         * lib/mktime.c: Include config.h depending on _LIBC, not HAVE_CONFIG_H.
32070         Don't include <sys/types.h>; no longer needed since we assume C89.
32071         * lib/mktime.c: Don't include "time_r.h"; no longer needed.
32072         * lib/strftime.c: Likewise.
32073         * lib/time_r.c: Likewise.
32074         * lib/nanosleep.c (nanosleep): #undef after include files, not before.
32075         * lib/nanosleep.c: Include <time.h> first, to check interface.
32076         * lib/strptime.c: Likewise.
32077         * lib/time_r.c: Likewise.
32078         * lib/timegm.c: Likewise.
32079         * lib/strptime.c: Don't include strptime.h or time_r.h; no longer
32080         needed.
32081         * lib/timegm.c: Don't include timegm.h; no longer needed.
32082         * lib/timespec.h: Don't include <sys/time.h> before <time.h>;
32083         time.h now handles any problems in that area.
32084         (struct timespec, nanosleep): Remove; time.h now arranges for these.
32085         * lib/xnanosleep.c: Don't include timespec.h; no longer needed now
32086         that time.h defines struct timespec.
32087         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check that nanosleep is declared.
32088         Set REPLACE_NANOSLEEP.  Don't AC_DEFINE nanosleep; the time module now
32089         handles that.
32090         * m4/strptime.m4 (gl_FUNC_STPRTIME): Set REPLACE_STRPTIME.
32091         * m4/time_r.m4 (gl_TIME_R): Don't define HAVE_TIME_R_POSIX; no longer
32092         needed.  Set REPLACE_LOCALTIME.
32093         * m4/timegm.m4 (gl_FUNC_TIMEGM): Set REPLACE_TIMEGM.
32094         * m4/timespec.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Move to time_h.m4.
32095         (gl_TIMESPEC): Don't check for sys/time.h or struct timespec or
32096         nanosleep; time_h.m4 now does that.  Don't require
32097         gl_USE_SYSTEM_EXTENSIONS; no longer needed directly, and the time
32098         module handles this now.
32099         * modules/getdate (Depends-on): Remove timespec.  Add time.
32100         * modules/nanosleep (Depends-on): Likewise.
32101         * modules/stat-time (Depends-on): Likewise.
32102         * modules/nanosleep (Include): Include time.h, not timespec.h.
32103         * modules/strptime (Files): Remove lib/strptime.h.
32104         (Depends-on): Add extensions, time.
32105         (Include): Include time.h, not strptime.h.
32106         * modules/time_r (Files): Remove lib/time_r.h.
32107         (Depends-on): Add time.
32108         (Include): Include time.h, not time_r.h.
32109         * modules/timegm: Likewise.
32110         * modules/timespec (Description): Now does timespec-related decls
32111         of our own, instead of struct timespec itself.
32112         (Depends-on): Add time; remove extensions.
32113         (Maintainer): Add self.
32114         * modules/utimecmp (Depends-on): Add time; remove timespec.
32115         * modules/utimens (Depends-on): Likewise.
32116         * modules/xnanosleep (Depends-on): Likewise.
32117
32118 2007-02-11  Bruno Haible  <bruno@clisp.org>
32119
32120         * lib/c-strstr.c: Include allocsa.h.
32121         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
32122         * lib/c-strcasestr.c: Include allocsa.h.
32123         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
32124         * lib/strcasestr.c: Include allocsa.h.
32125         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
32126         * lib/mbsstr.c: Include allocsa.h.
32127         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
32128         allocsa/freesa instead of malloc/free.
32129         * lib/mbscasestr.c: Include allocsa.h.
32130         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
32131         allocsa/freesa instead of malloc/free.
32132         * modules/c-strstr (Depends-on): Add allocsa.
32133         * modules/c-strcasestr (Depends-on): Likewise.
32134         * modules/strcasestr (Depends-on): Likewise.
32135         * modules/mbsstr (Depends-on): Likewise.
32136         * modules/mbscasestr (Depends-on): Likewise.
32137
32138 2007-02-11  Bruno Haible  <bruno@clisp.org>
32139
32140         * lib/mbsspn.c (mbsspn): Fix bug. Remove unnecessary strlen call.
32141
32142         * modules/mbsspn-tests: New file.
32143         * tests/test-mbsspn.sh: New file.
32144         * tests/test-mbsspn.c: New file.
32145
32146 2007-02-11  Bruno Haible  <bruno@clisp.org>
32147
32148         * lib/mbspbrk.c (mbspbrk): Remove unneeded cast.
32149
32150         * modules/mbspbrk-tests: New file.
32151         * tests/test-mbspbrk.sh: New file.
32152         * tests/test-mbspbrk.c: New file.
32153
32154 2007-02-11  Bruno Haible  <bruno@clisp.org>
32155
32156         * lib/mbscspn.c (mbscspn): Remove unnecessary strlen call and
32157         unneeded cast.
32158
32159         * modules/mbscspn-tests: New file.
32160         * tests/test-mbscspn.sh: New file.
32161         * tests/test-mbscspn.c: New file.
32162
32163 2007-02-11  Bruno Haible  <bruno@clisp.org>
32164
32165         * modules/mbscasecmp-tests: New file.
32166         * tests/test-mbscasecmp.sh: New file.
32167         * tests/test-mbscasecmp.c: New file.
32168
32169 2007-02-11  Bruno Haible  <bruno@clisp.org>
32170
32171         Ensure O(n) worst-case complexity of mbscasestr.
32172         * lib/mbscasestr.c: Include stdbool.h.
32173         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
32174         functions.
32175         (mbscasestr): Add some bookkeeping. Invoke knuth_morris_pratt_* when
32176         the bookkeeping indicates that it's worth it.
32177         * modules/mbscasestr (Depends-on): Add stdbool, mbslen, strnlen.
32178
32179         * modules/mbscasestr-tests: New file.
32180         * tests/test-mbscasestr1.c: New file.
32181         * tests/test-mbscasestr2.sh: New file.
32182         * tests/test-mbscasestr2.c: New file.
32183         * tests/test-mbscasestr3.sh: New file.
32184         * tests/test-mbscasestr3.c: New file.
32185         * tests/test-mbscasestr4.sh: New file.
32186         * tests/test-mbscasestr4.c: New file.
32187         * m4/locale-tr.m4: New file.
32188
32189 2007-02-11  Bruno Haible  <bruno@clisp.org>
32190
32191         Ensure O(n) worst-case complexity of mbsstr.
32192         * lib/mbsstr.c: Include stdbool.h.
32193         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
32194         functions.
32195         (mbsstr): Add some bookkeeping. Invoke knuth_morris_pratt_* when the
32196         bookkeeping indicates that it's worth it.
32197         * modules/mbsstr (Depends-on): Add stdbool, mbslen, strnlen.
32198
32199         * modules/mbsstr-tests: New file.
32200         * tests/test-mbsstr1.c: New file.
32201         * tests/test-mbsstr2.sh: New file.
32202         * tests/test-mbsstr2.c: New file.
32203         * tests/test-mbsstr3.sh: New file.
32204         * tests/test-mbsstr3.c: New file.
32205         * m4/locale-fr.m4: New file.
32206
32207 2007-02-11  Bruno Haible  <bruno@clisp.org>
32208
32209         * lib/mbsrchr.c (mbsrchr): Fix bug.
32210
32211         * modules/mbsrchr-tests: New file.
32212         * tests/test-mbsrchr.sh: New file.
32213         * tests/test-mbsrchr.c: New file.
32214
32215 2007-02-11  Bruno Haible  <bruno@clisp.org>
32216
32217         * lib/mbschr.c (mbschr): Fix bug.
32218
32219         * modules/mbschr-tests: New file.
32220         * tests/test-mbschr.sh: New file.
32221         * tests/test-mbschr.c: New file.
32222         * m4/locale-zh.m4: New file.
32223
32224 2007-02-11  Bruno Haible  <bruno@clisp.org>
32225
32226         Support for copying multibyte string iterators.
32227         * lib/mbiter.h: Include <string.h>.
32228         (mbiter_multi_copy): New function.
32229         (mbi_copy): New macro.
32230         * lib/mbuiter.h: Include <string.h>.
32231         (mbuiter_multi_copy): New function.
32232         (mbui_copy): New macro.
32233
32234 2007-02-11  Bruno Haible  <bruno@clisp.org>
32235
32236         New module mbslen.
32237         * modules/mbslen: New file.
32238         * lib/mbslen.c: New file.
32239         * lib/string_.h (mbslen): New declaration.
32240         * m4/mbslen.m4: New file.
32241         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
32242         GNULIB_MBSLEN.
32243         * modules/string (string.h): Also substitute GNULIB_MBSLEN.
32244         * MODULES.html.sh (Internationalization functions): Add mbslen.
32245
32246 2007-02-11  Bruno Haible  <bruno@clisp.org>
32247
32248         Ensure O(n) worst-case complexity of strcasestr substitute.
32249         * lib/strcasestr.c: Include stdbool.h.
32250         (knuth_morris_pratt): New function.
32251         (strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when the
32252         bookkeeping indicates that it's worth it.
32253         * modules/strcasestr (Depends-on): Add stdbool, strnlen.
32254
32255         * modules/strcasestr-tests: New file.
32256         * tests/test-strcasestr.c: New file.
32257
32258 2007-02-11  Bruno Haible  <bruno@clisp.org>
32259
32260         Ensure O(n) worst-case complexity of c_strcasestr.
32261         * lib/c-strcasestr.c: Include stdbool.h, string.h.
32262         (knuth_morris_pratt): New function.
32263         (c_strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when
32264         the bookkeeping indicates that it's worth it.
32265         * modules/c-strcasestr (Depends-on): Add stdbool, strnlen.
32266
32267         * modules/c-strcasestr-tests: New file.
32268         * tests/test-c-strcasestr.c: New file.
32269
32270 2007-02-11  Bruno Haible  <bruno@clisp.org>
32271
32272         Ensure O(n) worst-case complexity of c_strstr.
32273         * lib/c-strstr.c: Include stdbool.h, string.h.
32274         (knuth_morris_pratt): New function.
32275         (c_strstr): Add some bookkeeping. Invoke knuth_morris_pratt when the
32276         bookkeeping indicates that it's worth it.
32277         * modules/c-strstr (Depends-on): Add stdbool, strnlen.
32278
32279         * lib/c-strstr.c: Complete rewrite for maintainability.
32280
32281         * modules/c-strstr-tests: New file.
32282         * tests/test-c-strstr.c: New file.
32283
32284 2007-02-11  Bruno Haible  <bruno@clisp.org>
32285
32286         * m4/javacomp.m4 (gt_JAVACOMP): Work around a 'tr' bug in coreutils
32287         5.2.1 and earlier, whereby \055 was treated just like the range
32288         delimiter '-'.
32289         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
32290
32291 2007-02-08  Bruno Haible  <bruno@clisp.org>
32292
32293         * modules/regex (Depends-on): Add stdbool.
32294         Reported by Dalibor Topic <robilad@kaffe.org>.
32295
32296 2007-02-05  Paul Eggert  <eggert@cs.ucla.edu>
32297
32298         * m4/regex.m4 (gl_REGEX): Check for glibc bug #3957.
32299         Prefer returning from main to exiting from it.
32300         Remove unnecessary parens after sizeof.
32301
32302 2007-02-05  Bruno Haible  <bruno@clisp.org>
32303
32304         New module mbssep.
32305         * modules/mbssep: New file.
32306         * lib/mbssep.c: New file.
32307         * lib/string_.h (strsep): Add a conditional link warning.
32308         (mbssep): New declaration.
32309         * m4/mbssep.m4: New file.
32310         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
32311         GNULIB_MBSSEP.
32312         * modules/string (string.h): Also substitute GNULIB_MBSSEP.
32313         * MODULES.html.sh (Internationalization functions): Add mbssep.
32314
32315 2007-02-05  Bruno Haible  <bruno@clisp.org>
32316
32317         * lib/strsep.c (strsep): Fix actions in case of no delimiters.
32318         Optimize search in case of 1 delimiter.
32319
32320 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
32321
32322         * lib/acl.h: Include sys/types.h before sys/acl.h.
32323
32324 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
32325
32326         Merge upstream fix for glibc bugzilla #3957:
32327
32328         2007-02-05  Jakub Jelinek  <jakub@redhat.com>
32329
32330         * lib/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
32331         bit for RE_HAT_LISTS_NOT_NEWLINE.
32332         (build_charclass_op): Remove bogus comment.
32333
32334 2007-02-05  Simon Josefsson  <simon@josefsson.org>
32335
32336         * lib/gc.h, lib/gc-libgcrypt.c: Support SHA-256/384/512.
32337
32338 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
32339
32340         * lib/getsubopt.c [!_LIBC]: Include config.h and getsubopt.h.
32341         * lib/memmem.c [!defined _LIBC]: Include config.h.
32342
32343 2007-02-04  Bruno Haible  <bruno@clisp.org>
32344
32345         * lib/string_.h (GL_LINK_WARNING2): Put the word "warning:" into the
32346         warning message.
32347
32348 2007-02-04  Bruno Haible  <bruno@clisp.org>
32349
32350         New module mbstok_r.
32351         * modules/mbstok_r: New file.
32352         * lib/mbstok_r.c: New file.
32353         * lib/string_.h (strtok_r): Change argument names to match the
32354         comments. Add a conditional link warning.
32355         (mbstok_r): New declaration.
32356         * m4/mbstok_r.m4: New file.
32357         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
32358         GNULIB_MBSTOK_R.
32359         * modules/string (string.h): Also substitute GNULIB_MBSTOK_R.
32360         * MODULES.html.sh (Internationalization functions): Add mbstok_r.
32361
32362 2007-02-04  Bruno Haible  <bruno@clisp.org>
32363
32364         New module mbsspn.
32365         * modules/mbsspn: New file.
32366         * lib/mbsspn.c: New file.
32367         * lib/string_.h (strspn): Add a conditional link warning.
32368         (mbsspn): New declaration.
32369         * m4/mbsspn.m4: New file.
32370         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
32371         GNULIB_MBSSPN.
32372         * modules/string (string.h): Also substitute GNULIB_MBSSPN.
32373         * MODULES.html.sh (Internationalization functions): Add mbsspn.
32374
32375 2007-02-04  Bruno Haible  <bruno@clisp.org>
32376
32377         New module mbspbrk.
32378         * modules/mbspbrk: New file.
32379         * lib/mbspbrk.c: New file.
32380         * lib/string_.h (strpbrk): Add a conditional link warning.
32381         (mbspbrk): New declaration.
32382         * m4/mbspbrk.m4: New file.
32383         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
32384         GNULIB_MBSPBRK.
32385         * modules/string (string.h): Also substitute GNULIB_MBSPBRK.
32386         * MODULES.html.sh (Internationalization functions): Add mbspbrk.
32387
32388 2007-02-04  Bruno Haible  <bruno@clisp.org>
32389
32390         New module mbscspn.
32391         * modules/mbscspn: New file.
32392         * lib/mbscspn.c: New file.
32393         * lib/string_.h (strcspn): Add a conditional link warning.
32394         (mbscspn): New declaration.
32395         * m4/mbscspn.m4: New file.
32396         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
32397         GNULIB_MBSCSPN.
32398         * modules/string (string.h): Also substitute GNULIB_MBSCSPN.
32399         * MODULES.html.sh (Internationalization functions): Add mbscspn.
32400
32401 2007-02-04  Bruno Haible  <bruno@clisp.org>
32402
32403         New module mbscasestr, reduced goal of strcasestr.
32404         * modules/mbscasestr: New file.
32405         * lib/mbscasestr.c: New file, copied from lib/strcasestr.c.
32406         (mbscasestr): Renamed from strcasestr.
32407         * lib/strcasestr.c: Don't include mbuiter.h.
32408         (strcasestr): Remove support for multibyte locales.
32409         * lib/string_.h (strcasestr): Don`t rename. Declare only if missing.
32410         Change the conditional link warning.
32411         (mbscasestr): New declaration.
32412         * m4/mbscasestr.m4: New file.
32413         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Enable the replacement only if
32414         the system does not have strcasestr. Set HAVE_STRCASESTR instead of
32415         REPLACE_STRCASESTR.
32416         (gl_PREREQ_STRCASESTR): Don't require gl_FUNC_MBRTOWC.
32417         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
32418         HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
32419         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSCASESTR.
32420         * modules/string (string.h): Also substitute GNULIB_MBSCASESTR.
32421         Substitute HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
32422         * modules/strcasestr (Files): Remove m4/mbrtowc.m4.
32423         (Depends-on): Remove mbuiter.
32424         * MODULES.html.sh (Internationalization functions): Add mbscasestr.
32425
32426 2007-02-04  Bruno Haible  <bruno@clisp.org>
32427
32428         Simplify handling of strncasecmp.
32429         * lib/string_.h (strncasecmp): Remove test for GNULIB_STRCASE. Change
32430         the conditional link warning.
32431         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
32432         HAVE_STRCASECMP, not REPLACE_STRCASECMP.
32433         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Don't initialize GNULIB_STRCASE.
32434         * modules/strcase (configure.ac): Don't invoke
32435         gl_STRING_MODULE_INDICATOR.
32436         * modules/string (string.h): Don't substitute GNULIB_STRCASE.
32437
32438 2007-02-04  Bruno Haible  <bruno@clisp.org>
32439
32440         New module mbscasecmp, reduced goal of strcasecmp.
32441         * modules/mbscasecmp: New file.
32442         * lib/mbscasecmp.c: New file, copied from lib/strcasecmp.c.
32443         (mbscasecmp): Renamed from strcasecmp.
32444         * lib/strcasecmp.c: Don't include mbuiter.h.
32445         (strcasecmp): Remove support for multibyte locales.
32446         * lib/string_.h (strcasecmp): Don`t rename. Declare only if missing.
32447         Change the conditional link warning.
32448         (mbscasecmp): New declaration.
32449         * m4/mbscasecmp.m4: New file.
32450         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Enable the replacement only if
32451         the system lacks strcasecmp. Set HAVE_STRCASECMP instead of
32452         REPLACE_STRCASECMP.
32453         (gl_PREREQ_STRCASECMP): Don't require gl_FUNC_MBRTOWC.
32454         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
32455         GNULIB_MBSCASECMP.
32456         * modules/string (string.h): Also substitute GNULIB_MBSCASECMP.
32457         Substitute HAVE_STRCASECMP instead of REPLACE_STRCASECMP.
32458         * modules/strcase (Files): Remove m4/mbrtowc.m4.
32459         (Depends-on): Remove mbuiter.
32460         * MODULES.html.sh (Internationalization functions): Add mbscasecmp.
32461
32462 2007-02-04  Bruno Haible  <bruno@clisp.org>
32463
32464         New module mbsstr. Remove module strstr.
32465         * modules/mbsstr: New file.
32466         * modules/strstr: Remove file.
32467         * lib/mbsstr.c: Renamed from lib/strstr.c.
32468         (mbsstr): Renamed from strstr.
32469         * lib/string_.h (strstr): Remove declaration. Change the conditional
32470         link warning.
32471         (mbsstr): New declaration.
32472         * m4/mbsstr.m4: New file.
32473         * m4/strstr.m4: Remove file.
32474         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Don't initialize
32475         REPLACE_STRSTR.
32476         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSSTR.
32477         Don't initialize GNULIB_STRSTR.
32478         * modules/string (string.h): Also substitute GNULIB_MBSSTR. Don't
32479         substitute GNULIB_STRSTR and REPLACE_STRSTR.
32480         * MODULES.html.sh (Internationalization functions): Add mbsstr.
32481         (Support for systems lacking ANSI C 89): Remove strstr.
32482
32483 2007-02-04  Bruno Haible  <bruno@clisp.org>
32484
32485         New module mbsrchr.
32486         * modules/mbsrchr: New file.
32487         * lib/mbsrchr.c: New file.
32488         * lib/string_.h (strrchr): Add a conditional link warning.
32489         (mbsrchr): New declaration.
32490         * m4/mbsrchr.m4: New file.
32491         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
32492         GNULIB_MBSRCHR.
32493         * modules/string (string.h): Also substitute GNULIB_MBSRCHR.
32494         * MODULES.html.sh (Internationalization functions): Add mbsrchr.
32495
32496 2007-02-04  Bruno Haible  <bruno@clisp.org>
32497
32498         New module mbschr.
32499         * modules/mbschr: New file.
32500         * lib/mbschr.c: New file.
32501         * lib/string_.h (strchr): Add a conditional link warning.
32502         (mbschr): New declaration.
32503         * m4/mbschr.m4: New file.
32504         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
32505         GNULIB_MBSCHR.
32506         * modules/string (string.h): Also substitute GNULIB_MBSCHR.
32507         * MODULES.html.sh (Internationalization functions): Add mbschr.
32508
32509 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
32510
32511         * lib/stdbool_.h: Mention that bool bit-fields aren't supported.
32512
32513         * modules/stdarg (configure.ac-early): Require AC_PROG_CC_STDC.
32514
32515 2007-02-04  Bruno Haible  <bruno@clisp.org>
32516
32517         New module description section 'configure.ac-early'.
32518         * gnulib-tool (sed_extract_prog): Recognize configure.ac-early.
32519         (func_get_autoconf_early_snippet): New function.
32520         (func_import, func_create_testdir): Use it. Remove special cases for
32521         modules 'extensions' and 'lock'.
32522         * modules/extensions (configure.ac-early): Require
32523         gl_USE_SYSTEM_EXTENSIONS.
32524         * modules/lock (configure.ac-early): Require gl_LOCK_EARLY.
32525
32526 2007-02-04  Bruno Haible  <bruno@clisp.org>
32527
32528         Make use of gcj-4.3's -fsource and -ftarget option.
32529         * m4/javacomp.m4 (gt_JAVACOMP): Test whether gcj is in version >= 4.3,
32530         and if so try the options -fsource and -ftarget.
32531         * lib/javacomp.c (compile_using_gcj): Add fsource_option,
32532         source_version, ftarget_option, target_version arguments.
32533         (is_envjavac_gcj43, is_envjavac_gcj43_usable): New functions.
32534         (is_envjavac_oldgcj_14_14_usable): Renamed from
32535         is_envjavac_gcj_14_14_usable.
32536         (is_envjavac_oldgcj_14_13_usable): Renamed from
32537         is_envjavac_gcj_14_13_usable.
32538         (is_gcj_present): Update.
32539         (is_gcj_43, is_gcj43_usable): New functions.
32540         (is_oldgcj_14_14_usable): Renamed from is_gcj_14_14_usable. Update.
32541         (is_oldgcj_14_13_usable): Renamed from is_gcj_14_13_usable. Update.
32542         (compile_java_class): Test whether gcj is in version >= 4.3, and if so
32543         try the options -fsource and -ftarget.
32544
32545 2007-02-03  Paul Eggert  <eggert@cs.ucla.edu>
32546
32547         * lib/xalloc.h (x2nrealloc): Fix an unlikely bug in the overflow
32548         checking code.  Set N = ceil (1.5 * N) rather than to a slightly
32549         larger value.
32550
32551 2007-02-03  Jim Meyering  <jim@meyering.net>
32552
32553         Give tools a better chance to allocate space for very large buffers.
32554         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
32555
32556         Make pwd and readlink work also when run with an unreadable parent dir
32557         on systems with openat support.
32558         * lib/getcwd.c (__getcwd) [HAVE_PARTLY_WORKING_GETCWD]: Use the system
32559         provided getcwd function, even when we have openat support.
32560         Reported by Dmitry V. Levin in <http://bugzilla.redhat.com/227168>.
32561
32562 2007-02-02  Bruno Haible  <bruno@clisp.org>
32563
32564         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
32565         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): Provoke a link
32566         error only if GNULIB_POSIXCHECK is defined. Needed to avoid artificial
32567         portability problems if one of these functions is only used on specific
32568         platforms.
32569         Reported by Paul Eggert.
32570
32571 2007-02-02  Paul Eggert  <eggert@cs.ucla.edu>
32572
32573         Avoid mempcpy in the regex code, as the string.h mempcpy stuff
32574         is causing more trouble than it's curing.
32575         * lib/regex_internal.h (__mempcpy): Remove.
32576         * lib/regcomp.c (regerror): Rewrite to avoid the need for mempcpy
32577         (and make the code a tad smaller to boot).
32578         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for mempcpy.
32579
32580 2007-02-02  Jim Meyering  <jim@meyering.net>
32581
32582         * modules/arpa_inet: Put AC_PROG_MKDIR_P in the configure.ac:
32583         section, not in the Makefile.am: one.
32584
32585 2007-02-02  Eric Blake  <ebb9@byu.net>
32586
32587         * lib/strchrnul.c: Always include config.h first.
32588
32589         * modules/mountlist (Depends-on): Revert 2007-01-31 change,
32590         gnulib strstr is not necessary here.
32591
32592 2007-02-02  Simon Josefsson  <simon@josefsson.org>
32593
32594         * m4/socklen.m4: Fix typo.
32595
32596 2007-02-02  Eric Blake  <ebb9@byu.net>
32597
32598         * modules/arpa_inet (Makefile.am): Use MKDIR_P to avoid races.
32599         * modules/netinet_in (Makefile.am): Likewise.
32600
32601 2007-02-01  Bruno Haible  <bruno@clisp.org>
32602
32603         * lib/string_.h (GL_LINK_WARNING): New macro.
32604         (strcasecmp, strstr, strcasestr): If provided by the system,
32605         conditionally define as a macro that leads to a warning instead of to
32606         an error.
32607         (strncasecmp): Conditionally define as a macro that leads to a warning.
32608
32609 2007-02-01  Karl Berry  <karl@gnu.org>
32610
32611         * config/srclist.txt (strtok_r.c): lose sync, no more strtok_r.h.
32612
32613 2007-02-01  Bruno Haible  <bruno@clisp.org>
32614
32615         * MODULES.html.sh (Unicode string functions): Update after 2007-01-27
32616         renamings.
32617
32618 2007-02-01  Eric Blake  <ebb9@byu.net>
32619
32620         * modules/regex (Depends-on): Revert dependence on mempcpy.
32621         * lib/regex_internal.h [! _LIBC && !__mempcpy]: Undo string
32622         module's definition of mempcpy.
32623         Reported by Paul Eggert.
32624
32625 2007-02-01  Paul Eggert  <eggert@cs.ucla.edu>
32626
32627         * lib/string_.h: If the gnulib module XYZ is not present, undefine
32628         the symbol XYZ before redefining it.  This fixes a problem with
32629         programs that don't use XYZ, when compiled on systems that define
32630         XYZ to something else.
32631
32632 2007-01-31  Paul Eggert  <eggert@cs.ucla.edu>
32633
32634         * lib/mkdir-p.c (make_dir_parents): Close a race condition that
32635         occurs when "mkdir -m foo" creates a setgid directory that is (1)
32636         writeable to group or other and (2) is intended to have a special
32637         mode bit that is set or cleared.  In such a case, the directory
32638         should be neither group- nor other-writeable until the special
32639         mode bits are right.
32640
32641 2007-01-31  Eric Blake  <ebb9@byu.net>
32642
32643         * modules/mountlist (Depends-on): Add strstr.
32644
32645         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Correct m4 usage
32646         bug.
32647         * modules/string (Makefile.am): Remove redundant replacement.
32648         * modules/regex (Depends-on): Add mempcpy.
32649
32650 2007-01-31  Bruno Haible  <bruno@clisp.org>
32651
32652         New module description field 'Link'.
32653         * gnulib-tool (func_usage): Document --extract-link-directive.
32654         (sed_extract_prog): Recognize 'Link' directive.
32655         (func_get_link_directive): New function.
32656         (func_import): Show summary of link directives.
32657         Handle --extract-link-directive option.
32658         * modules/acl (Link): New section.
32659         * modules/clock-time (Link): New section.
32660         * modules/euidaccess (Link): New section.
32661         * modules/gettext (Link): New section.
32662         * modules/iconv (Link): New section.
32663         * modules/lock (Link): New section.
32664         * modules/nanosleep (Link): New section.
32665         * modules/readline (Link): New section.
32666
32667 2007-01-27  Bruno Haible  <bruno@clisp.org>
32668
32669         Enforce the use of gnulib modules for unportable <string.h> functions.
32670         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): New macro.
32671         (gl_STRING_MODULE_INDICATOR_DEFAULTS): New macro.
32672         (gl_HEADER_STRING_H_BODY): Require it.
32673         * lib/string_.h: If the gnulib module XYZ is not present, redefine
32674         the symbol XYZ to one that gives a link error.
32675         * modules/string (Makefile.am): Also substitute the GNULIB_* variables.
32676         * modules/memmem (configure.ac): Invoke gl_STRING_MODULE_INDICATOR.
32677         * modules/mempcpy (configure.ac): Likewise.
32678         * modules/memrchr (configure.ac): Likewise.
32679         * modules/stpcpy (configure.ac): Likewise.
32680         * modules/stpncpy (configure.ac): Likewise.
32681         * modules/strcase (configure.ac): Likewise.
32682         * modules/strcasestr (configure.ac): Likewise.
32683         * modules/strchrnul (configure.ac): Likewise.
32684         * modules/strdup (configure.ac): Likewise.
32685         * modules/strndup (configure.ac): Likewise.
32686         * modules/strnlen (configure.ac): Likewise.
32687         * modules/strpbrk (configure.ac): Likewise.
32688         * modules/strsep (configure.ac): Likewise.
32689         * modules/strstr (configure.ac): Likewise.
32690         * modules/strtok_r (configure.ac): Likewise.
32691
32692 2007-01-31  Jean-Louis Martineau  <martineau@zmanda.com>  (tiny change)
32693
32694         * lib/gai_strerror.c (values): Add EAI_OVERFLOW.
32695
32696 2007-01-30  Jim Meyering  <jim@meyering.net>
32697
32698         * lib/mpsort.c (mpsort): Remove spurious "return" in void function.
32699
32700 2007-01-29  Bruno Haible  <bruno@clisp.org>
32701
32702         * lib/allocsa.h: Use '#if HAVE_*' instead of '#ifdef HAVE_*'.
32703         * lib/execute.c: Likewise.
32704         * lib/pipe.c: Likewise.
32705         * lib/printf-args.h: Likewise.
32706         * lib/printf-args.c: Likewise.
32707         * lib/printf-parse.c: Likewise.
32708         * lib/vasnprintf.c: Likewise.
32709
32710 2007-01-29  Eric Blake  <ebb9@byu.net>
32711
32712         * lib/memrchr.c: Assume <string.h> unconditionally, to pull in
32713         declaration.
32714
32715 2007-01-29  Paul Eggert  <eggert@cs.ucla.edu>
32716
32717         * lib/strptime.h (strptime): Use 'restrict' for args where
32718         POSIX requires this.
32719         * lib/strptime.c (strptime): Likewise.
32720         Change license notice from LGPL to GPL, since gnulib-tool will
32721         change this as needed.
32722         Include <config.h> if _LIBC is not defined, not if HAVE_CONFIG_H is
32723         defined.
32724         Include "strptime.h" first, to check interface.
32725         Do not #undef _LIBC and _NL_CURRENT.
32726         Do not include <stdlib.h>; no longer needed.
32727         Include "time_r.h" and declare ptime_locale_status
32728         only if _LIBC is not defined.
32729         (__P): Remove unused macro.
32730         (match_string): Bring back glibc version, but use it only if _LIBC
32731         is defined.
32732         (__strptime_internal): Compile tm_gmtoff code if _LIBC is defined, too.
32733         Remove unnecessary assertion and abort() call.
32734         Use #ifdef _NL_CURRENT rather than #if 0, for benefit of glibc.
32735         * m4/strptime.m4: Fix serial number comment.
32736         (gl_FUNC_STRPTIME): Require AC_C_RESTRICT, gl_TM_GMTOFF.
32737         * modules/strptime (Files): Add m4/tm_gmtoff.m4.
32738         (Depends-on): Add time_r.
32739
32740 2007-01-29  Bruno Haible  <bruno@clisp.org>
32741
32742         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
32743         strptime.
32744         * modules/strptime (Depends-on): Add stdbool.
32745         * lib/strptime.h: Include <time.h> always. Add comments.
32746
32747 2007-01-29  Yoann Vandoorselaere  <yoann@prelude-ids.org>
32748
32749         * modules/strptime: New file.
32750         * lib/strptime.h: New file.
32751         * lib/strptime.c: New file.
32752         * m4/strptime.m4: New file.
32753
32754 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
32755
32756         * MODULES.html.sh: New module mpsort.
32757         * lib/mpsort.c, lib/mpsort.h, m4/mpsort.m4, modules/mpsort: New files.
32758
32759         * lib/regex.h (_Restrict_): Renamed from __restrict, to avoid
32760         a circularity problem with HP-UX ia64 reported by Bob Proulx in
32761         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00394.html>.
32762         All uses changed.
32763         (_Restrict_arr_): Renamed from __restrict_arr, for similar reasons.
32764         All uses changed.
32765         * lib/regcomp.c, lib/regexec.c: Change all uses from __restrict
32766         to _Restrict_.
32767         * lib/regexec.c (regexec): Declare pmatch with _Restrict_arr_, so that
32768         the parameter matches the prototype.
32769
32770 2007-01-28  Jim Meyering  <jim@meyering.net>
32771
32772         * modules/sys_time (Makefile.am) [MOSTLYCLEANFILES]: Do use
32773         sys/time.h here, reverting that part of the previous patch:
32774         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/8959>.
32775
32776 2007-01-28  Bruno Haible  <bruno@clisp.org>
32777
32778         * modules/sys_time (Makefile.am): Build sys/time.h only when it's the
32779         value of $(SYS_TIME_H).
32780         [MOSTLYCLEANFILES]: Now that sys/time.h is created only when needed,
32781         remove it conditionally, too. [added by Jim Meyering]
32782         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Set SYS_TIME_H.
32783         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
32784         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Set SYS_TIME_H when setting
32785         GETTIMEOFDAY_REPLACEMENT to 1.
32786
32787 2007-01-28  Bruno Haible  <bruno@clisp.org>
32788
32789         * m4/unistd_h.m4 (gl_HEADER_UNISTD_DEFAULTS): New macro.
32790         (gl_HEADER_UNISTD): Require it. Don't set UNISTD_H to empty here.
32791         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_HEADER_UNISTD_DEFAULTS.
32792         Set UNISTD_H instead of UNISTD_H2.
32793         * modules/fchdir (BUILT_SOURCES): Drop $(UNISTD_H2).
32794
32795 2007-01-28  Bruno Haible  <bruno@clisp.org>
32796
32797         * modules/mbchar (Makefile.am): Add mbchar.c to lib_SOURCES.
32798         * m4/mbchar.m4 (gl_MBCHAR): Remove AC_LIBOBJ invocation.
32799
32800 2007-01-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32801
32802         * gnulib-tool (func_emit_lib_Makefile_am, func_add_or_update)
32803         (func_create_testdir): Ensure C locale for `grep' and `tr'
32804         character ranges.
32805         (func_create_megatestdir): Avoid one `grep'.  Fix bug in
32806         ACLOCAL_AMFLAGS parsing state machine.
32807
32808 2007-01-27  Bruno Haible  <bruno@clisp.org>
32809
32810         * modules/unistr/base: Update.
32811
32812 2007-01-27  Bruno Haible  <bruno@clisp.org>
32813
32814         Rename u32-mbtouc -> u32-mbtouc-unsafe, u32-mbtouc-safe -> u32-mbtouc,
32815         u32_mbtouc -> u32_mbtouc_unsafe, u32_mbtouc_safe -> u32_mbtouc.
32816         * modules/unistr/u32-mbtouc-unsafe: Renamed from
32817         modules/unistr/u32-mbtouc.
32818         * lib/unistr/u32-mbtouc-unsafe.c: Renamed from lib/unistr/u32-mbtouc.c.
32819         * lib/unistr.h: Update.
32820         * lib/linebreak.c: Update.
32821         * modules/unistr/u32-mbtouc: Renamed from
32822         modules/unistr/u32-mbtouc-safe.
32823         * lib/unistr/u32-mbtouc.c: Renamed from lib/unistr/u32-mbtouc-safe.c.
32824         * lib/unistr.h: Update.
32825         * lib/unistr/u32-to-u8.c: Update.
32826         * lib/unistr/u32-to-u16.c: Update.
32827
32828 2007-01-27  Bruno Haible  <bruno@clisp.org>
32829
32830         Rename utf16-ucs4 -> utf16-ucs4-unsafe, utf16-ucs4-safe -> utf16-ucs4,
32831         u16_mbtouc -> u16_mbtouc_unsafe, u16_mbtouc_safe -> u16_mbtouc.
32832         * modules/utf16-ucs4-unsafe: Renamed from modules/utf16-ucs4.
32833         * lib/utf16-ucs4-unsafe.h: Renamed from lib/utf16-ucs4.h.
32834         * lib/unistr/utf16-ucs4-unsafe.c: Renamed from lib/unistr/utf16-ucs4.c.
32835         * modules/unistr/u16-mbtouc-unsafe: Renamed from
32836         modules/unistr/u16-mbtouc.
32837         * lib/unistr/u16-mbtouc-unsafe.c: Renamed from lib/unistr/u16-mbtouc.c.
32838         * lib/unistr.h: Update.
32839         * lib/linebreak.c: Update.
32840         * modules/linebreak: Update.
32841         * modules/utf16-ucs4: Renamed from modules/utf16-ucs4-safe.
32842         * lib/utf16-ucs4.h: Renamed from lib/utf16-ucs4-safe.h.
32843         * lib/unistr/utf16-ucs4.c: Renamed from lib/unistr/utf16-ucs4-safe.c.
32844         * modules/unistr/u16-mbtouc: Renamed from
32845         modules/unistr/u16-mbtouc-safe.
32846         * lib/unistr/u16-mbtouc.c: Renamed from lib/unistr/u16-mbtouc-safe.c.
32847         * lib/unistr.h: Update.
32848         * lib/unistr/u16-to-u8.c: Update.
32849         * modules/unistr/u16-to-u8: Update.
32850         * lib/unistr/u16-to-u32.c: Update.
32851         * modules/unistr/u16-to-u32: Update.
32852
32853 2007-01-27  Bruno Haible  <bruno@clisp.org>
32854
32855         Rename utf8-ucs4 -> utf8-ucs4-unsafe, utf8-ucs4-safe -> utf8-ucs4,
32856         u8_mbtouc -> u8_mbtouc_unsafe, u8_mbtouc_safe -> u8_mbtouc.
32857         * modules/utf8-ucs4-unsafe: Renamed from modules/utf8-ucs4.
32858         * lib/utf8-ucs4-unsafe.h: Renamed from lib/utf8-ucs4.h.
32859         * lib/unistr/utf8-ucs4-unsafe.c: Renamed from lib/unistr/utf8-ucs4.c.
32860         * modules/unistr/u8-mbtouc-unsafe: Renamed from
32861         modules/unistr/u8-mbtouc.
32862         * lib/unistr/u8-mbtouc-unsafe.c: Renamed from lib/unistr/u8-mbtouc.c.
32863         * lib/unistr.h: Update.
32864         * lib/striconveh.c: Update.
32865         * modules/striconveh: Update.
32866         * lib/linebreak.c: Update.
32867         * modules/linebreak: Update.
32868         * modules/utf8-ucs4: Renamed from modules/utf8-ucs4-safe.
32869         * lib/utf8-ucs4.h: Renamed from lib/utf8-ucs4-safe.h.
32870         * lib/unistr/utf8-ucs4.c: Renamed from lib/unistr/utf8-ucs4-safe.c.
32871         * modules/unistr/u8-mbtouc: Renamed from modules/unistr/u8-mbtouc-safe.
32872         * lib/unistr/u8-mbtouc.c: Renamed from lib/unistr/u8-mbtouc-safe.c.
32873         * lib/unistr.h: Update.
32874         * lib/striconveh.c: Update.
32875         * modules/striconveh: Update.
32876         * lib/unistr/u8-to-u16.c: Update.
32877         * modules/unistr/u8-to-u16: Update.
32878         * lib/unistr/u8-to-u32.c: Update.
32879         * modules/unistr/u8-to-u32: Update.
32880
32881 2007-01-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32882
32883         Sync from Libtool.
32884         * lib/argz.c: Do not include strings.h nor memory.h, include
32885         string.h unconditionally.  Patch by Simon Josefsson.
32886
32887 2007-01-27  Bruno Haible  <bruno@clisp.org>
32888
32889         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): New macro, extracted
32890         from gl_HEADER_STRING_H_BODY.
32891         (gl_HEADER_STRING_H_BODY): Require it.
32892         * m4/memmem.m4 (gl_FUNC_MEMMEM): Require gl_HEADER_STRING_H_DEFAULTS.
32893         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
32894         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
32895         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
32896         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
32897         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP): Likewise.
32898         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
32899         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
32900         * m4/strdup.m4 (gl_FUNC_STRDUP): Likewise.
32901         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
32902         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
32903         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Likewise.
32904         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
32905         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
32906         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
32907
32908 2007-01-27  Bruno Haible  <bruno@clisp.org>
32909
32910         * gnulib-tool (func_emit_lib_Makefile_am): If $for_test is true, turn
32911         check_PROGRAMS into noinst_PROGRAMS.
32912         (func_emit_tests_Makefile_am): Likewise. Also don't initialize
32913         check_PROGRAMS in this case.
32914         (func_import): Set for_test to false.
32915         (func_create_testdir): Set for_test to true.
32916
32917 2007-01-27  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
32918             Bruno Haible  <bruno@clisp.org>
32919
32920         * modules/strcasestr (Files): Remove lib/strcasestr.h.
32921         (Depends-on): Add string.
32922         (Includes): Use <string.h> instead of strcasestr.h.
32923         * modules/string (Makefile.am): Also substitute the value of
32924         REPLACE_STRCASESTR.
32925         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Don't define strcasestr here;
32926         assume strcasestr is declared in <string.h> not <strings.h>. Also
32927         set REPLACE_STRCASESTR.
32928         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Provide a default value for
32929         REPLACE_STRCASESTR.
32930         * lib/strcasestr.h: Remove file.
32931         * lib/strcasestr.c: Include <string.h> instead of strcasestr.h.
32932         * lib/string_.h (strcasestr): New declaration.
32933
32934 2007-01-27  Bruno Haible  <bruno@clisp.org>
32935
32936         * lib/string_.h: Use 'extern'.
32937
32938 2007-01-27  Jim Meyering  <jim@meyering.net>
32939
32940         * lib/regex_internal.c (re_string_reconstruct): Remove declaration
32941         of set-but-not-used local, "q".
32942
32943         * lib/mempcpy.c: Include <config.h> before <string.h>.
32944         This fixes a compilation error on HP-UX, due to the system's
32945         "restrict"-using mempcpy prototype.
32946
32947 2007-01-26  Bruno Haible  <bruno@clisp.org>
32948
32949         Small optimization.
32950         * lib/javacomp.c: Include c-strstr.h.
32951          (is_envjavac_gcj): Use c_strstr instead of strstr.
32952         * modules/javacomp (Depends-on): Add c-strstr, remove strstr.
32953
32954 2007-01-26  Bruno Haible  <bruno@clisp.org>
32955
32956         * MODULES.html.sh (Unicode string functions): Add the new modules.
32957
32958         * modules/uniconv/u32-strconv-to-locale: New file.
32959         * lib/uniconv/u32-strconv-to-locale.c: New file.
32960
32961         * modules/uniconv/u16-strconv-to-locale: New file.
32962         * lib/uniconv/u16-strconv-to-locale.c: New file.
32963
32964         * modules/uniconv/u8-strconv-to-locale: New file.
32965         * lib/uniconv/u8-strconv-to-locale.c: New file.
32966
32967         * modules/uniconv/u32-strconv-from-locale: New file.
32968         * lib/uniconv/u32-strconv-from-locale.c: New file.
32969
32970         * modules/uniconv/u16-strconv-from-locale: New file.
32971         * lib/uniconv/u16-strconv-from-locale.c: New file.
32972
32973         * modules/uniconv/u8-strconv-from-locale: New file.
32974         * lib/uniconv/u8-strconv-from-locale.c: New file.
32975
32976         * modules/uniconv/u32-strconv-to-enc: New file.
32977         * lib/uniconv/u32-strconv-to-enc.c: New file.
32978         * modules/uniconv/u32-strconv-to-enc-tests: New file.
32979         * tests/uniconv/test-u32-strconv-to-enc.c: New file.
32980
32981         * modules/uniconv/u16-strconv-to-enc: New file.
32982         * lib/uniconv/u16-strconv-to-enc.c: New file.
32983         * lib/uniconv/u-strconv-to-enc.h: New file.
32984         * modules/uniconv/u16-strconv-to-enc-tests: New file.
32985         * tests/uniconv/test-u16-strconv-to-enc.c: New file.
32986
32987         * modules/uniconv/u8-strconv-to-enc: New file.
32988         * lib/uniconv/u8-strconv-to-enc.c: New file.
32989         * modules/uniconv/u8-strconv-to-enc-tests: New file.
32990         * tests/uniconv/test-u8-strconv-to-enc.c: New file.
32991
32992         * modules/uniconv/u32-strconv-from-enc: New file.
32993         * lib/uniconv/u32-strconv-from-enc.c: New file.
32994         * modules/uniconv/u32-strconv-from-enc-tests: New file.
32995         * tests/uniconv/test-u32-strconv-from-enc.c: New file.
32996
32997         * modules/uniconv/u16-strconv-from-enc: New file.
32998         * lib/uniconv/u16-strconv-from-enc.c: New file.
32999         * modules/uniconv/u16-strconv-from-enc-tests: New file.
33000         * tests/uniconv/test-u16-strconv-from-enc.c: New file.
33001
33002         * modules/uniconv/u8-strconv-from-enc: New file.
33003         * lib/uniconv/u8-strconv-from-enc.c: New file.
33004         * lib/uniconv/u-strconv-from-enc.h: New file.
33005         * modules/uniconv/u8-strconv-from-enc-tests: New file.
33006         * tests/uniconv/test-u8-strconv-from-enc.c: New file.
33007
33008         * modules/uniconv/u32-conv-from-enc: New file.
33009         * lib/uniconv/u32-conv-from-enc.c: New file.
33010         * modules/uniconv/u32-conv-from-enc-tests: New file.
33011         * tests/uniconv/test-u32-conv-from-enc.c: New file.
33012
33013         * modules/uniconv/u16-conv-from-enc: New file.
33014         * lib/uniconv/u16-conv-from-enc.c: New file.
33015         * lib/uniconv/u-conv-from-enc.h: New file.
33016         * modules/uniconv/u16-conv-from-enc-tests: New file.
33017         * tests/uniconv/test-u16-conv-from-enc.c: New file.
33018
33019         * modules/uniconv/u8-conv-from-enc: New file.
33020         * lib/uniconv/u8-conv-from-enc.c: New file.
33021         * modules/uniconv/u8-conv-from-enc-tests: New file.
33022         * tests/uniconv/test-u8-conv-from-enc.c: New file.
33023
33024         * modules/uniconv/base: New file.
33025         * lib/uniconv.h: New file.
33026
33027 2007-01-26  Paul Eggert  <eggert@cs.ucla.edu>
33028
33029         * doc/gnulib-tool.texi (Initial import): Update to match current
33030         behavior with strdup module.
33031         * lib/.cppi-disable: Remove strcase.h, strdup.h, strndup.h, strnlen.h.
33032         * lib/memmem.h: Remove; all uses removed.  This is now done
33033         by <string.h>.
33034         * lib/mempcpy.h: Likewise.
33035         * lib/memrchr.h: Likewise.
33036         * lib/stpcpy.h: Likewise.
33037         * lib/stpncpy.h: Likewise.
33038         * lib/strcase.h: Likewise.
33039         * lib/strchrnul.h: Likewise.
33040         * lib/strdup.h: Likewise.
33041         * lib/strndup.h: Likewise.
33042         * lib/strnlen.h: Likewise.
33043         * lib/strpbrk.h: Likewise.
33044         * lib/strsep.h: Likewise.
33045         * lib/strstr.h: Likewise.
33046         * lib/strtok_r.h: Likewise.
33047         * lib/string_.h: New file.
33048         * lib/argp-namefrob.h: Don't include no-longer-existent include files.
33049         Rely on <string.h> instead.
33050         * lib/canon-host.c: Likewise.
33051         * lib/chdir-long.c: Likewise.
33052         * lib/concatpath.c: Likewise.
33053         * lib/exclude.c: Likewise.
33054         * lib/fchdir.c: Likewise.
33055         * lib/getaddrinfo.c: Likewise.
33056         * lib/getcwd.c: Likewise.
33057         * lib/getsubopt.c: Likewise.
33058         * lib/glob.c: Likewise.
33059         * lib/hard-locale.c: Likewise.
33060         * lib/iconvme.c: Likewise.
33061         * lib/javacomp.c: Likewise.
33062         * lib/mempcpy.c: Likewise.
33063         * lib/memrchr.c: Likewise.
33064         * lib/regex_internal.h: Likewise.
33065         * lib/stpncpy.c: Likewise.
33066         * lib/strcasecmp.c: Likewise.
33067         * lib/strchrnul.c: Likewise.
33068         * lib/strdup.c: Likewise.
33069         * lib/striconv.c: Likewise.
33070         * lib/striconveh.c: Likewise.
33071         * lib/striconveha.c: Likewise.
33072         * lib/strncasecmp.c: Likewise.
33073         * lib/strndup.c: Likewise.
33074         * lib/strnlen.c: Likewise.
33075         * lib/strsep.c: Likewise.
33076         * lib/strstr.c: Likewise.
33077         * lib/strtok_r.c: Likewise.
33078         * lib/userspec.c: Likewise.
33079         * lib/w32spawn.h: Likewise.
33080         * lib/xstrndup.c: Likewise.
33081         * lib/mountlist.c (strstr): Remove decl.
33082         * m4/string_h.m4: New file.
33083         * m4/memmem.m4 (gl_FUNC_MEMMEM): Set HAVE_DECL_MEMMEM if necessary.
33084         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Set HAVE_MEMPCPY if necessary.
33085         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Set HAVE_MEMRCHR
33086         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Set HAVE_STPCPY if necessary.
33087         * m4/stpncpy.m4 (gl_PREREQ_STPNCPY): Set HAVE_STPNCPY if necessary.
33088         * m4/strcase.m4 (gl_FUNC_STRCASECMP):
33089         Set REPLACE_STRCASECMP if necessary.
33090         (gl_FUNC_STRNCASECMP): Set HAVE_DECL_STRNCASECMP if necessary.
33091         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Set HAVE_STRCHRNUL if necessary.
33092         * m4/strdup.m4 (gl_FUNC_STRDUP): Set HAVE_DECL_STRDUP if necessary.
33093         * m4/strndup.m4 (gl_FUNC_STRNDUP): Set HAVE_DECL_STRNLEN and
33094         HAVE_DECL_STRDUP if necessary.
33095         (gl_PREREQ_STRNLEN): Don't bother to check for strnlen decl,
33096         since gl_FUNC_STRNDUP does that now.
33097         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Set HAVE_DECL_STRNLEN if necessary.
33098         Check for decl here...
33099         (gl_PREREQ_STRNLEN): ... not here.
33100         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Set HAVE_STRPBRK if necessary.
33101         * m4/strsep.m4 (gl_FUNC_STRSEP): Set HAVE_STRSEP if necessary.
33102         * m4/strstr.m4 (gl_FUNC_STRSTR): Set REPLACE_STRSTR if necessary.
33103         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Set HAVE_DECL_STRTOK_R if
33104         necessary.
33105         * modules/string: New file.
33106         * modules/memmem (Files): Remove special-purpose include file.
33107         (Depends-on): Add string.
33108         (Include): Include <string.h>, not the removed file.
33109         * modules/mempcpy: Likewise.
33110         * modules/memrchr: Likewise.
33111         * modules/stpcpy: Likewise.
33112         * modules/stpncpy: Likewise.
33113         * modules/strcase: Likewise.
33114         * modules/strchrnul: Likewise.
33115         * modules/strdup: Likewise.
33116         * modules/strndup: Likewise.
33117         * modules/strnlen: Likewise.
33118         * modules/strpbrk: Likewise.
33119         * modules/strsep: Likewise.
33120         * modules/strstr: Likewise.
33121         * modules/strtok_r: Likewise.
33122         * tests/test-dirname.c: Don't include "strdup.h", since
33123         <string.h> now suffices.
33124         * tests/test-memmem.c: Don't include "memmem.h", since
33125         <string.h> now suffices.
33126
33127 2007-01-25  Bruno Haible  <bruno@clisp.org>
33128
33129         * lib/striconveh.c (mem_cd_iconveh_internal): Ignore *lengthp if
33130         *resultp is 0.
33131
33132         * lib/unistr/u16-to-u8.c (u16_to_u8): Fix u8_uctomb invocation.
33133         * lib/unistr/u32-to-u8.c (u32_to_u8): Likewise.
33134         * lib/unistr/u8-to-u16.c (u8_to_u16): Fix u16_uctomb invocation.
33135         * lib/unistr/u32-to-u16.c (u32_to_u16): Likewise.
33136
33137         * modules/unistr/u8-to-u16 (Depends-on): Add missing modules.
33138         * modules/unistr/u8-to-u32 (Depends-on): Add missing modules.
33139         * modules/unistr/u16-to-u8 (Depends-on): Add missing modules.
33140         * modules/unistr/u16-to-u32 (Depends-on): Add missing modules.
33141         * modules/unistr/u32-to-u8 (Depends-on): Add missing modules.
33142         * modules/unistr/u32-to-u16 (Depends-on): Add missing modules.
33143
33144 2007-01-24  Bruno Haible  <bruno@clisp.org>
33145
33146         Don't AC_REQUIRE autoconf macros that invoke AC_LIBOBJ. See
33147         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00279.html>.
33148         * m4/argp.m4 (gl_ARGP): Invoke, don't require, gl_GETOPT_SUBSTITUTE.
33149         * m4/fts.m4 (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): Invoke, don't require,
33150         gl_FUNC_FTS_CORE.
33151         (gl_FUNC_FTS_CORE): Invoke, don't require, gl_FUNC_OPENAT.
33152         * m4/lstat.m4 (gl_FUNC_LSTAT): Invoke, don't require,
33153         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
33154         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Invoke, don't require, AC_FUNC_MEMCMP.
33155         * m4/mktime.m4 (gl_FUNC_MKTIME): Invoke, don't require, AC_FUNC_MKTIME.
33156         * m4/openat.m4 (gl_FUNC_OPENAT): Invoke, don't require,
33157         gl_FUNC_FCHOWNAT.
33158         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Invoke, don't require,
33159         gl_FUNC_STRFTIME.
33160         * m4/strtod.m4 (gl_FUNC_STRTOD): Invoke, don't require, AC_FUNC_STRTOD.
33161         Reported by Ralf Wildenhues.
33162
33163 2007-01-24  Bruno Haible  <bruno@clisp.org>
33164
33165         Drop AC_REQUIRE calls that are redundant with the module dependencies.
33166         * m4/canon-host.m4 (gl_PREREQ_CANON_HOST): Don't require
33167         gl_GETADDRINFO.
33168         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Don't require AM_STDBOOL_H,
33169         gl_FUNC_MEMPCPY, gl_FUNC_OPENAT, gl_FUNC_MEMRCHR.
33170         * m4/openat.m4 (gl_PREREQ_OPENAT): Don't require gl_SAVE_CWD.
33171
33172 2007-01-24  Paul Eggert  <eggert@cs.ucla.edu>
33173
33174         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Add test for glibc bug 361.
33175         Don't use 'exit'; just return from 'main'.
33176         (_AC_LIBOBJ_FNMATCH): Check for headers and functions just once.
33177
33178         * lib/fnmatch_.h: Readjust white space and comments to match
33179         glibc, to avoid spurious diffs.
33180
33181 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
33182
33183         * lib/fnmatch_loop.c (internal_fnmatch) [!_LIBC]: #if-out the
33184         2004-12-01 change by Jakub Jelinek, since this code won't compile
33185         if !LIBC.  Problem reported by Bob Proulx.
33186
33187 2007-01-23  Bruno Haible  <bruno@clisp.org>
33188
33189         * lib/striconveh.c: Include c-strcaseeq.h.
33190         (mem_iconveh, str_iconveh): Use STRCASEEQ instead of c_strcasecmp.
33191         * modules/striconveh (Depends-on): Add c-strcaseeq.
33192
33193 2007-01-23  Bruno Haible  <bruno@clisp.org>
33194
33195         * MODULES.html.sh (String handling): Add streq, c-strcaseeq.
33196
33197         * modules/c-strcaseeq: New file.
33198         * lib/c-strcaseeq.h: New file.
33199
33200         * modules/streq: New file.
33201         * lib/streq.h: New file.
33202
33203 2007-01-23  Bruno Haible  <bruno@clisp.org>
33204
33205         * modules/striconveha-tests: New file.
33206         * tests/test-striconveha.c: New file.
33207
33208         * lib/striconveha.h: Include <stdbool.h>.
33209         (mem_iconveha, str_iconveha): Add 'transliterate' argument.
33210         * lib/striconveha.c: Include allocsa.h, strdup.h, c-strcase.h.
33211         (mem_iconveha_notranslit): Renamed from mem_iconveha.
33212         (mem_iconveha): New function.
33213         (str_iconveha_notranslit): Renamed from str_iconveha.
33214         (str_iconveha): New function.
33215         * modules/striconveha (Depends-on): Add stdbool, allocsa, strdup,
33216         c-strcase.
33217
33218 2007-01-23  Bruno Haible  <bruno@clisp.org>
33219
33220         * lib/striconveha.c (mem_iconveha): Fix endless recursion. Try all
33221         encodings without forgiving before trying any encoding with handler.
33222         (str_iconveha): Try all encodings without forgiving before trying any
33223         encoding with handler.
33224
33225 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
33226
33227         Import the following changes from libc.
33228
33229         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
33230
33231         * lib/fnmatch_loop.c: Adjust for changed secondary hash function.
33232
33233         2004-12-01  Jakub Jelinek  <jakub@redhat.com>
33234
33235         * lib/fnmatch_loop.c (internal_fnmatch): Clear is_seqval after
33236         normal_bracket label.
33237
33238         2004-09-01  Jakub Jelinek  <jakub@redhat.com>
33239
33240         [BZ #361]
33241         * lib/fnmatch_loop.c (FCT): For backslash between brackets, branch
33242         to normal_bracket after fetching the next character.
33243
33244 2007-01-22  Bruno Haible  <bruno@clisp.org>
33245
33246         * lib/striconveh.h (mem_cd_iconveh, mem_iconveh): Add 'offsets'
33247         argument.
33248         * lib/striconveh.c (iconv_carefully_1): New function.
33249         (mem_cd_iconveh_internal, mem_cd_iconveh, mem_iconveh): Add 'offsets'
33250         argument.
33251         (str_cd_iconveh): Update.
33252         * lib/striconveha.h (mem_iconveha): Add 'offsets' argument.
33253         * lib/striconveha.c (mem_iconveha): Add 'offsets' argument.
33254         * tests/test-striconveh.c (MAGIC): New macro.
33255         (new_offsets): New function.
33256         (main): Test call with and without offsets.
33257
33258 2007-01-22  Bruno Haible  <bruno@clisp.org>
33259
33260         * modules/sys_stat (Makefile.am): Use @MKDIR_P@ instead of $(MKDIR_P).
33261         * modules/sys_select (Makefile.am): Likewise.
33262         * modules/sys_socket (Makefile.am): Likewise.
33263         * modules/sys_time (Makefile.am): Likewise.
33264
33265 2007-01-22  Paul Eggert  <eggert@cs.ucla.edu>
33266
33267         * modules/gettimeofday (License): Change from GPL to LGPL, since
33268         gettimeofday is a library function.
33269
33270 2007-01-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
33271
33272         * lib/poll.c (rpl_poll): Don't check against FD_SETSIZE under Win32.
33273
33274 2007-01-21  Bruno Haible  <bruno@clisp.org>
33275
33276         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): New macro.
33277
33278 2007-01-21  Bruno Haible  <bruno@clisp.org>
33279
33280         * modules/striconveha: New file.
33281         * lib/striconveha.h: New file.
33282         * lib/striconveha.c: New file.
33283         * MODULES.html.sh (Internationalization functions): Add striconveha.
33284         * lib/striconv.c (str_iconv): Optimize the case of an empty input
33285         string.
33286         * lib/striconveh.c (mem_iconveh, str_iconveh): Likewise.
33287
33288 2007-01-21  Bruno Haible  <bruno@clisp.org>
33289
33290         * lib/striconv.c (str_iconv): Guarantee errno is set when strdup fails.
33291         * lib/striconveh.c (str_iconveh): Likewise.
33292
33293 2007-01-21  Bruno Haible  <bruno@clisp.org>
33294
33295         * lib/striconveh.h (mem_iconveh): New declaration.
33296         * lib/striconveh.c (mem_iconveh): New function.
33297         * tests/test-striconveh.c (main): Add tests for mem_iconveh.
33298
33299 2007-01-21  Bruno Haible  <bruno@clisp.org>
33300
33301         * lib/xstriconv.h (xmem_cd_iconv): Change specification.
33302
33303         * lib/striconveh.h (mem_cd_iconveh): Change specification.
33304         * lib/striconveh.c (mem_cd_iconveh): Don't free the user-supplied
33305         original result buffer.
33306         (str_cd_iconveh): Update.
33307         * tests/test-striconveh.c (main): Update.
33308
33309         * lib/striconv.h (mem_cd_iconv): Change specification.
33310         * lib/striconv.c (mem_cd_iconv): Don't free the user-supplied original
33311         result buffer.
33312         (str_cd_iconv): Update.
33313         * tests/test-striconv.c (main): Update.
33314
33315 2007-01-21  Bruno Haible  <bruno@clisp.org>
33316
33317         * gnulib-tool: Fix test whether sed is GNU sed supporting --posix.
33318
33319 2007-01-20  Jim Meyering  <jim@meyering.net>
33320
33321         * lib/userspec.c (parse_with_separator): If a user or group string
33322         starts with "+", skip the corresponding name-to-ID look-up, since
33323         such a look-up must fail: user and group names may not include "+".
33324
33325 2007-01-19  Paul Eggert  <eggert@cs.ucla.edu>
33326
33327         * lib/poll.c: Include sys/time.h and time.h unconditionally,
33328         since we now assume the sys_time module.
33329         * m4/poll.m4 (gl_PREREQ_POLL): Don't require AC_HEADER_TIME or
33330         check for sys/time.h; no longer needed.
33331         * modules/poll (Depends-on): Depend on sys_time.
33332
33333 2007-01-18  Bruno Haible  <bruno@clisp.org>
33334
33335         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove test for <sys/time.h>.
33336         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
33337
33338         * m4/tempname.m4 (gl_PREREQ_TEMPNAME): Remove tests for sys/time.h and
33339         gettimeofday.
33340
33341         * tests/test-gettimeofday.c: Include <time.h>.
33342         (dummy): Remove variable.
33343
33344         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Renamed from
33345         gl_HEADER_SYS_TIME_H.
33346         (gl_HEADER_SYS_TIME_H): New macro.
33347
33348         * lib/sys_time_.h: Test GETTIMEOFDAY_REPLACEMENT instead of
33349         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
33350         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY,
33351         gl_FUNC_GETTIMEOFDAY_CLOBBER): Set GETTIMEOFDAY_REPLACEMENT instead of
33352         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
33353         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H): Initialize
33354         GETTIMEOFDAY_REPLACEMENT instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE
33355         and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
33356         * modules/sys_time (sys/time.h): Substitute GETTIMEOFDAY_REPLACEMENT
33357         instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and
33358         GETTIMEOFDAY_CLOBBERS_LOCALTIME.
33359
33360         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Undo the
33361         last change; it caused a compilation error when cross-compiling to
33362         Cygwin.
33363
33364 2007-01-18  Jim Meyering  <jim@meyering.net>
33365
33366         Use "$(MKDIR_P) sys", not race-prone "test -d sys || mkdir sys".
33367         * modules/sys_stat (Makefile.am): Use "$(MKDIR_P) sys", rather
33368         than the race-prone "test -d sys || mkdir sys".
33369         (configure.ac): Use AC_PROG_MKDIR_P.
33370         * modules/sys_select: Likewise.
33371         * modules/sys_socket: Likewise.
33372         * modules/sys_time: Likewise.
33373
33374 2007-01-18  Eric Blake  <ebb9@byu.net>
33375
33376         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Also
33377         replace gettimeofday.
33378         * lib/gettimeofday.c (rpl_gettimeofday): Declare with replacement
33379         name, to avoid infinite recursion.
33380
33381 2007-01-17  Paul Eggert  <eggert@cs.ucla.edu>
33382
33383         * MODULES.html.sh (Support for systems lacking POSIX:2001): New
33384         module sys_time.
33385         * lib/gethrxtime.c: Include <sys/time.h>, since we can no longer
33386         assume timespec.h defines struct timeval.
33387         * lib/settime.c: Likewise.
33388         * lib/utimens.c: Likewise.
33389         * lib/gettime.c (gettime): Remove test against HAVE_GETTIMEOFDAY,
33390         since we now assume the gettimeofday module.
33391         * lib/tempname.c (__gen_tempname): Likewise.
33392         * lib/gettimeofday.h: Remove.
33393         * lib/gettimeofday.c: Include <sys/time.h> instead of "gettimeofday.h".
33394         Don't include <sys/types.h> and <stdlib.h>; shouldn't be needed.
33395         Include <time.h>, for 'time()'.
33396         (localtime_buffer_addr): Also use this workaround if
33397         TZSET_CLOBBERS_LOCALTIME.  Set to a dummy static variable by default,
33398         to simplify the uses.  All uses changed.
33399         (localtime, gmtime, tzset, gettimeofday): Reformat slightly so
33400         that #undef is inside {}, and 'const' follows type name consistently.
33401         (tzset): Define replacement only if TZSET_CLOBBERS_LOCALTIME.
33402         (gettimeofday): Do not use the maximum possible value for
33403         tv->tv_usec, since that might break usages other than ls.c.
33404         Instead, we'll leave ls.c alone.  This undoes today's patch
33405         by Bruno.  Add a compile-time warning for 1s-clock resolution;
33406         we've never observed the problem but might as well keep the
33407         canary.
33408         * lib/nanosleep.c: Include timespec.h first, for interface check.
33409         * lib/nanosleep.c: Include <sys/time.h> unconditionally, since we
33410         now assume the sys_time module.
33411         * lib/tempname.c: Likewise.
33412         * lib/timespec.h: Likewise.
33413         * lib/nanosleep.c: Don't worry about TIME_WITH_SYS_TIME; no longer
33414         needed.
33415         * lib/strftime.c: Likewise.
33416         * lib/timespec.h: Likewise.
33417         * lib/posixtm.c: Include posixtm.h first, for interface check.
33418         Don't worry about TM_IN_SYS_TIME; that's wayyy obsolete.
33419         * lib/posixtm.h: Include stdbool.h and time.h, for proper interface.
33420         * lib/strftime.c: Don't include <sys/types.h>; shouldn't be needed.
33421         * lib/sys_time_.h: New file.
33422         * lib/timespec.h (struct timespec): Use long int, not long.
33423         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
33424         (gl_FUNC_GETTIMEOFDAY_CLOBBER, gl_PREREQ_GETTIMEOFDAY):
33425         Remove obsolescent call to AC_HEADER_TIME.
33426         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
33427         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
33428         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
33429         * m4/timespec.m4 (gl_TIMESPEC, gl_CHECK_TYPE_STRUCT_TIMESPEC):
33430         Likewise.
33431         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Likewise.
33432         * m4/utimbuf.m4 (gl_CHECK_TYPE_STRUCT_UTIMBUF): Likewise.
33433         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Move sys/time.h tests
33434         into the sys_time module.  Check for gettimeofday just once.
33435         Prefix our variables with gl_, not with ac_ or jm_.  Tighten test
33436         for gettimeofday signature to just check the signature.  Merely
33437         compile it, since linking doesn't test signature.  Improve test for
33438         whether gettimeofday.o is actually needed.
33439         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Renamed from
33440         AC_FUNC_GETTIMEOFDAY_CLOBBER.  All uses changed.  Use
33441         AC_RUN_IFELSE rather than AC_TRY_RUN.  If clobbering, set
33442         and define GETTIMEOFDAY_CLOBBERS_LOCALTIME.
33443         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Don't define
33444         GETTIMEOFDAY_CLOBBERS_LOCALTIME; that's gl_FUNC_GETTIMEOFDAY_CLOBBER's
33445         job.  Don't define tzset; that's gl_FUNC_TZSET_CLOBBER's job.
33446         * m4/mktime.m4 (AC_FUNC_MKTIME): Just include <time.h> rather
33447         than worrying about sys/time.h.
33448         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
33449         Don't bother worrying about TIME_WITH_SYS_TIME.
33450         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
33451         * m4/posixtm.m4 (gl_POSIXTM): Remove obsolescent call to AC_STRUCT_TM.
33452         * m4/sys_time_h.m4: New file.
33453         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Require gl_HEADER_SYS_TIME_H.
33454         Don't include sys/time.h.  Return from main rather than exiting.
33455         Define TZSET_CLOBBERS_LOCALTIME, for consistency with other names;
33456         all uses changed.
33457         * modules/gethrxtime (Depends-on): Add sys_time.
33458         * modules/gettime (Depends-on): Likewise.
33459         * modules/gettimeofday (Depends-on): Likewise.
33460         * modules/nanosleep (Depends-on): Likewise.
33461         * modules/settime (Depends-on): Likewise.
33462         * modules/tempname (Depends-on): Likewise.
33463         * modules/utimens (Depends-on): Likewise.
33464         * modules/gettimeofday (Files): Remove lib/gettimeofday.h.
33465         (Include:) Change back to <sys/time.h>.
33466         (Maintainer:) Add self.
33467         * modules/sys_time: New file.
33468         * modules/tempname (Depends-on): Add gettimeofday.
33469         * tests/test-gettimeofday.c: Include <sys/time.h>
33470         rather than gettimeofday.h.
33471
33472 2007-01-17  Bruno Haible  <bruno@clisp.org>
33473
33474         * gnulib-tool (func_get_license): Revert last patch. Instead, let
33475         the license default to GPL.
33476         (func_create_testdir): Don't complain if a module is LGPL and its
33477         tests module depends on GPLed modules.
33478
33479 2007-01-17  Bruno Haible  <bruno@clisp.org>
33480
33481         * lib/gettimeofday.c (gettimeofday): Add code for the case
33482         HAVE_GETTIMEOFDAY && !GETTIMEOFDAY_CLOBBERS_LOCALTIME. Use the
33483         maximum possible value for tv->tv_usec, rather than the minimum one.
33484
33485 2005-10-08  Martin Lambers  <marlam@marlam.de>
33486 2005-10-08  Paul Eggert  <eggert@cs.ucla.edu>
33487 2007-01-16  Bruno Haible  <bruno@clisp.org>
33488
33489         * modules/gettimeofday (Files): Add lib/gettimeofday.h.
33490         (configure.ac): Remove AC_FUNC_GETTIMEOFDAY_CLOBBER. Add
33491         gl_FUNC_GETTIMEOFDAY.
33492         (Include): Add gettimeofday.h.
33493         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): New macro.
33494         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't invoke gl_PREREQ_GETTIMEOFDAY.
33495         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Define
33496         GETTIMEOFDAY_CLOBBERS_LOCALTIME. Invoke gl_PREREQ_GETTIMEOFDAY here.
33497         (gl_PREREQ_GETTIMEOFDAY): Check for <sys/timeb.h> and _ftime.
33498         * lib/gettimeofday.h: New file.
33499         * lib/gettimeofday.c: Include <sys/timeb.h>.
33500         (localtime_buffer_addr, rpl_localtime, rpl_gmtime, rpl_tzset): Define
33501         only if GETTIMEOFDAY_CLOBBERS_LOCALTIME.
33502         (rpl_gettimeofday) [!HAVE_GETTIMEOFDAY]: Use _ftime() when available;
33503         fall back on time().
33504
33505         * tests/test-gettimeofday.c: New file.
33506         * modules/gettimeofday-tests: New file.
33507
33508 2007-01-16  Eric Blake  <ebb9@byu.net>
33509
33510         * modules/fnmatch (Depends-on): Depend on wchar.
33511         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
33512         * m4/fnmatch.m4: Likewise.
33513         * modules/mbchar (Makefile.am): Assume <wchar.h>.
33514         * m4/mbchar.m4: Likewise.
33515         * modules/mbswidth (Depends-on): Depend on wchar.
33516         * lib/mbswidth.c: Assume <wchar.h>.
33517         * m4/mbswidth.m4: Likewise.
33518         * modules/quotearg (Depends-on): Depend on wchar.
33519         * lib/quotearg.c: Assume <wchar.h>.
33520         * m4/quotearg.m4: Likewise.
33521         * modules/regex (Depends-on): Depend on wchar.
33522         * lib/regex_internal.h: Assume <wchar.h>.
33523         * m4/regex.m4: Likewise.
33524         * modules/stdint (Depends-on): Depend on wchar.
33525         * lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
33526         * m4/stdint.m4: Likewise.
33527         * tests/test-stdint.c [HAVE_WINT_T]: Likewise.
33528         * modules/strftime (Depends-on): Depend on wchar.
33529         * lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
33530         * modules/strtol (Depends-on): Depend on wchar.
33531         * lib/strtol.c: Assume <wchar.h>.
33532         * modules/wcwidth (Depends-on): Depend on wchar.
33533         * lib/wcwidth.h: Assume <wchar.h>.
33534         * m4/wcwidth.m4: Likewise.
33535
33536 2007-01-16  Bruno Haible  <bruno@clisp.org>
33537
33538         * modules/csharpexec-script: New, created from...
33539         * modules/csharpexec: ... this.
33540
33541 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
33542
33543         * modules/javaexec-script: New, created from...
33544         * modules/javaexec: ... this.
33545
33546 2007-01-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
33547
33548         * modules/poll (Dependencies): Add sys_select.
33549
33550 2007-01-15  Jim Meyering  <jim@meyering.net>
33551
33552         * m4/readutmp.m4 (gl_READUTMP): Work around AIX 4.3 struct-
33553         redefinition bug when using both <utmp.h> and <utmpx.h> headers.
33554         * lib/readutmp.h: Likewise.  Reported by Daniel Richard G. in
33555         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9415>.
33556
33557 2007-01-15  Bruno Haible  <bruno@clisp.org>
33558
33559         * modules/striconveh: New file.
33560         * lib/striconveh.h: New file.
33561         * lib/striconveh.c: New file.
33562         * MODULES.html.sh (Internationalization functions): Add striconveh.
33563
33564         * modules/striconveh-tests: New file.
33565         * tests/test-striconveh.c: New file.
33566
33567 2007-01-15  Bruno Haible  <bruno@clisp.org>
33568
33569         * lib/striconv.c (str_cd_iconv): Use the first algorithm if iconv is
33570         not from GNU libiconv or GNU libc.
33571
33572 2007-01-15  Bruno Haible  <bruno@clisp.org>
33573
33574         * doc/gnulib-intro.texi (Copyright): Explain the different license
33575         terms for module descriptions, autoconf macros, tests, documentation.
33576
33577 2007-01-14  Bruno Haible  <bruno@clisp.org>
33578
33579         * modules/striconv-tests: New file.
33580         * tests/test-striconv.c: New file.
33581
33582 2007-01-14  Bruno Haible  <bruno@clisp.org>
33583
33584         * modules/iconv-tests: New file.
33585         * tests/test-iconv.c: New file.
33586
33587 2007-01-14  Bruno Haible  <bruno@clisp.org>
33588
33589         * gnulib-tool (func_get_license): For test modules, use the license of
33590         the main module.
33591
33592 2007-01-14  Bruno Haible  <bruno@clisp.org>
33593
33594         * modules/iconv (Include): Clarify that <iconv.h> can only be included
33595         if iconv is found to exist.
33596
33597 2007-01-14  Bruno Haible  <bruno@clisp.org>
33598
33599         * modules/c-ctype-tests: New file.
33600         * tests/test-c-ctype.c: New file.
33601
33602 2007-01-14  Bruno Haible  <bruno@clisp.org>
33603
33604         * modules/binary-io-tests: New file.
33605         * tests/test-binary-io.sh: New file.
33606         * tests/test-binary-io.c: New file.
33607
33608 2007-01-14  Bruno Haible  <bruno@clisp.org>
33609
33610         * modules/array-oset-tests: New file.
33611         * tests/test-array_oset.c: New file.
33612
33613 2007-01-14  Bruno Haible  <bruno@clisp.org>
33614
33615         * modules/array-list-tests: New file.
33616         * tests/test-array_list.c: New file.
33617
33618 2007-01-14  Bruno Haible  <bruno@clisp.org>
33619
33620         * gnulib-tool (func_create_testdir): Don't unnecessarily run configure
33621         and make.
33622         Reported by Simon Josefsson in
33623         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00139.html>
33624
33625 2007-01-14  Bruno Haible  <bruno@clisp.org>
33626
33627         * modules/allocsa-tests: New file.
33628         * tests/test-allocsa.c: New file.
33629
33630 2007-01-14  Bruno Haible  <bruno@clisp.org>
33631
33632         * modules/fchdir (Depends-on): Add absolute-header.
33633         * modules/unistd (Depends-on): Likewise.
33634
33635 2006-12-30  Bruno Haible  <bruno@clisp.org>
33636
33637         * modules/fchdir: New file.
33638         * modules/unistd (Files): Add lib/unistd_.h.
33639         (Makefile.am): Generate unistd.h from unistd_.h.
33640         * lib/fchdir.c: New file.
33641         * lib/dirent_.h: New file.
33642         * lib/unistd_.h: New file.
33643         * lib/fcntl_.h (open) [FCHDIR_REPLACEMENT]: New replacement.
33644         * m4/fchdir.m4: New file.
33645         * m4/unistd_h.m4 (gl_PREREQ_UNISTD): New macro.
33646         (gl_HEADER_UNISTD): Invoke it.
33647         * lib/dup-safer.c (dup_safer) [FCHDIR_REPLACEMENT]: Use the dup
33648         function.
33649         * lib/backupfile.c (opendir, closedir): Undefine.
33650         * lib/chown.c (open, close): Undefine.
33651         * lib/clean-temp.c (open, close): Undefine.
33652         * lib/copy-file.c (open, close): Undefine.
33653         * lib/execute.c (open, close): Undefine.
33654         * lib/fsusage.c (open, close): Undefine.
33655         * lib/gc-gnulib.c (open, close): Undefine.
33656         * lib/getcwd.c (opendir, closedir): Undefine.
33657         * lib/glob.c (opendir, closedir): Undefine.
33658         * lib/javacomp.c (open, close): Undefine.
33659         * lib/mountlist.c (open, close, opendir, closedir): Undefine.
33660         * lib/openat-proc.c (open, close): Undefine.
33661         * lib/pagealign_alloc.c (open, close): Undefine.
33662         * lib/pipe.c (open, close): Undefine.
33663         * lib/progreloc.c (open, close): Undefine.
33664         * lib/savedir.c (opendir, closedir): Undefine.
33665         * lib/utime.c (open, close): Undefine.
33666         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add fchdir.
33667
33668 2007-01-10  Bruno Haible  <bruno@clisp.org>
33669
33670         * lib/striconv.c (mem_cd_iconv): Align the temporary buffer.
33671
33672 2007-01-12  Eric Blake  <ebb9@byu.net>
33673
33674         Provide a robust <wchar.h>.  Further simplifications are now
33675         possible in other modules, but not included here.
33676         * modules/wchar: New module.
33677         * m4/wchar.m4: New file.
33678         * lib/wchar_.h: Likewise.
33679         * modules/mbchar (Depends-on): Depend on wchar, as the first use
33680         of the new module.
33681         * MODULES.html.sh (Extended multibyte and wide character utilities):
33682         New section.
33683
33684 2007-01-12  Paul Eggert  <eggert@cs.ucla.edu>
33685
33686         * lib/xreadlink.c (SYMLINK_MAX) [!defined SYMLINK_MAX]: Define
33687         to a reasonable default for memory allocation.
33688         (xreadlink): Don't allocate a huge buffer, to work around a buggy
33689         file system that reports garbage st_size values for symlinks.
33690         Problem reported by Liyang Hu.
33691
33692 2007-01-11  Simon Josefsson  <simon@josefsson.org>
33693
33694         * gnulib-tool (func_all_modules): Exclude all .* files (e.g.,
33695         Emacs .#* auto-save files).
33696
33697 2007-01-11  Bruno Haible  <bruno@clisp.org>
33698
33699         * gnulib-tool (func_all_modules): Exclude all files inside the CVS
33700         directory.
33701
33702 2007-01-10  Paul Eggert  <eggert@cs.ucla.edu>
33703
33704         Use @...@ consistently in lib/wctype_.h.
33705         * lib/wctype_.h [HAVE_WINT_T]: Go back to using @...@, but rely
33706         on it being set to 1 or 0.
33707         * m4/wctype.m4 (gl_WCTYPE_H): Set HAVE_WINT_T to 1 or 0, and
33708         go back to AC_SUBSTing it.
33709         * modules/wctype (Makefile.am): Undo previous change.
33710
33711 2007-01-10  Eric Blake  <ebb9@byu.net>
33712
33713         * lib/wctype_.h [HAVE_WINT_T]: Rely on AC_DEFINE.
33714         * m4/wctype.m4 (gl_WCTYPE_H): No need to AC_SUBST(HAVE_WINT_T).
33715         * modules/wctype (Makefile.am): Likewise.
33716         Reported by Chris McGuire.
33717
33718 2007-01-10  Jim Meyering  <jim@meyering.net>
33719
33720         fts.c: a small readability/maintainability improvement
33721         * lib/fts.c (fts_read): Make this code slightly more readable and
33722         maintainable by hoisting the "sp->fts_cur = p" assignments to
33723         immediately follow the statements that set P.  Derived from
33724         the patch by Miloslav Trmac in http://bugzilla.redhat.com/222089.
33725
33726 2007-01-10  Eric Blake  <ebb9@byu.net>
33727
33728         * lib/wctype_.h [HAVE_WINT_T]: Include <stddef.h> before
33729         <wchar.h>, to work around BSDI bug in BSD/OS 4.0.1.
33730         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
33731         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
33732         Reported by Chris McGuire.
33733
33734 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33735
33736         * gnulib-tool (func_all_modules): Use POSIX conforming escaping
33737         in sed script.
33738
33739 2007-01-09  Bruno Haible  <bruno@clisp.org>
33740
33741         * MODULES.html.sh: Accept options --cvs-urls, --git-urls.
33742         (repo_url_prefix, repo_url_suffix, repo_url_suffix_repl): New
33743         variables.
33744         (func_module): Use them.
33745
33746 2007-01-09  Bruno Haible  <bruno@clisp.org>
33747
33748         * modules/unistr/base: New file.
33749         * lib/unistr.h: New file.
33750
33751         * modules/unistr/u8-to-u16: New file.
33752         * lib/unistr/u8-to-u16.c: New file.
33753
33754         * modules/unistr/u8-to-u32: New file.
33755         * lib/unistr/u8-to-u32.c: New file.
33756
33757         * modules/unistr/u16-to-u8: New file.
33758         * lib/unistr/u16-to-u8.c: New file.
33759
33760         * modules/unistr/u16-to-u32: New file.
33761         * lib/unistr/u16-to-u32.c: New file.
33762
33763         * modules/unistr/u32-to-u8: New file.
33764         * lib/unistr/u32-to-u8.c: New file.
33765
33766         * modules/unistr/u32-to-u16: New file.
33767         * lib/unistr/u32-to-u16.c: New file.
33768
33769         * modules/unistr/u8-check: New file.
33770         * modules/unistr/u16-check: New file.
33771         * modules/unistr/u32-check: New file.
33772         * lib/unistr/u8-check.c: New file.
33773         * lib/unistr/u16-check.c: New file.
33774         * lib/unistr/u32-check.c: New file.
33775
33776         * modules/unistr/u8-chr: New file.
33777         * modules/unistr/u16-chr: New file.
33778         * modules/unistr/u32-chr: New file.
33779         * lib/unistr/u8-chr.c: New file.
33780         * lib/unistr/u16-chr.c: New file.
33781         * lib/unistr/u32-chr.c: New file.
33782
33783         * modules/unistr/u8-cmp: New file.
33784         * modules/unistr/u16-cmp: New file.
33785         * modules/unistr/u32-cmp: New file.
33786         * lib/unistr/u8-cmp.c: New file.
33787         * lib/unistr/u16-cmp.c: New file.
33788         * lib/unistr/u32-cmp.c: New file.
33789
33790         * modules/unistr/u8-cpy: New file.
33791         * modules/unistr/u16-cpy: New file.
33792         * modules/unistr/u32-cpy: New file.
33793         * lib/unistr/u8-cpy.c: New file.
33794         * lib/unistr/u16-cpy.c: New file.
33795         * lib/unistr/u32-cpy.c: New file.
33796         * lib/unistr/u-cpy.h: New file.
33797
33798         * modules/unistr/u8-cpy-alloc: New file.
33799         * modules/unistr/u16-cpy-alloc: New file.
33800         * modules/unistr/u32-cpy-alloc: New file.
33801         * lib/unistr/u8-cpy-alloc.c: New file.
33802         * lib/unistr/u16-cpy-alloc.c: New file.
33803         * lib/unistr/u32-cpy-alloc.c: New file.
33804         * lib/unistr/u-cpy-alloc.h: New file.
33805
33806         * modules/unistr/u8-endswith: New file.
33807         * modules/unistr/u16-endswith: New file.
33808         * modules/unistr/u32-endswith: New file.
33809         * lib/unistr/u8-endswith.c: New file.
33810         * lib/unistr/u16-endswith.c: New file.
33811         * lib/unistr/u32-endswith.c: New file.
33812         * lib/unistr/u-endswith.h: New file.
33813
33814         * modules/unistr/u8-mblen: New file.
33815         * modules/unistr/u16-mblen: New file.
33816         * modules/unistr/u32-mblen: New file.
33817         * lib/unistr/u8-mblen.c: New file.
33818         * lib/unistr/u16-mblen.c: New file.
33819         * lib/unistr/u32-mblen.c: New file.
33820
33821         * modules/unistr/u8-mbtouc: New file.
33822         * modules/unistr/u16-mbtouc: New file.
33823         * modules/unistr/u32-mbtouc: New file.
33824         * lib/unistr/u8-mbtouc.c: New file.
33825         * lib/unistr/u16-mbtouc.c: New file.
33826         * lib/unistr/u32-mbtouc.c: New file.
33827
33828         * modules/unistr/u8-mbtouc-safe: New file.
33829         * modules/unistr/u16-mbtouc-safe: New file.
33830         * modules/unistr/u32-mbtouc-safe: New file.
33831         * lib/unistr/u8-mbtouc-safe.c: New file.
33832         * lib/unistr/u16-mbtouc-safe.c: New file.
33833         * lib/unistr/u32-mbtouc-safe.c: New file.
33834
33835         * modules/unistr/u8-move: New file.
33836         * modules/unistr/u16-move: New file.
33837         * modules/unistr/u32-move: New file.
33838         * lib/unistr/u8-move.c: New file.
33839         * lib/unistr/u16-move.c: New file.
33840         * lib/unistr/u32-move.c: New file.
33841         * lib/unistr/u-move.h: New file.
33842
33843         * modules/unistr/u8-next: New file.
33844         * modules/unistr/u16-next: New file.
33845         * modules/unistr/u32-next: New file.
33846         * lib/unistr/u8-next.c: New file.
33847         * lib/unistr/u16-next.c: New file.
33848         * lib/unistr/u32-next.c: New file.
33849
33850         * modules/unistr/u8-prev: New file.
33851         * modules/unistr/u16-prev: New file.
33852         * modules/unistr/u32-prev: New file.
33853         * lib/unistr/u8-prev.c: New file.
33854         * lib/unistr/u16-prev.c: New file.
33855         * lib/unistr/u32-prev.c: New file.
33856
33857         * modules/unistr/u8-set: New file.
33858         * modules/unistr/u16-set: New file.
33859         * modules/unistr/u32-set: New file.
33860         * lib/unistr/u8-set.c: New file.
33861         * lib/unistr/u16-set.c: New file.
33862         * lib/unistr/u32-set.c: New file.
33863         * lib/unistr/u-set.h: New file.
33864
33865         * modules/unistr/u8-startswith: New file.
33866         * modules/unistr/u16-startswith: New file.
33867         * modules/unistr/u32-startswith: New file.
33868         * lib/unistr/u8-startswith.c: New file.
33869         * lib/unistr/u16-startswith.c: New file.
33870         * lib/unistr/u32-startswith.c: New file.
33871         * lib/unistr/u-startswith.h: New file.
33872
33873         * modules/unistr/u8-stpcpy: New file.
33874         * modules/unistr/u16-stpcpy: New file.
33875         * modules/unistr/u32-stpcpy: New file.
33876         * lib/unistr/u8-stpcpy.c: New file.
33877         * lib/unistr/u16-stpcpy.c: New file.
33878         * lib/unistr/u32-stpcpy.c: New file.
33879         * lib/unistr/u-stpcpy.h: New file.
33880
33881         * modules/unistr/u8-stpncpy: New file.
33882         * modules/unistr/u16-stpncpy: New file.
33883         * modules/unistr/u32-stpncpy: New file.
33884         * lib/unistr/u8-stpncpy.c: New file.
33885         * lib/unistr/u16-stpncpy.c: New file.
33886         * lib/unistr/u32-stpncpy.c: New file.
33887         * lib/unistr/u-stpncpy.h: New file.
33888
33889         * modules/unistr/u8-strcat: New file.
33890         * modules/unistr/u16-strcat: New file.
33891         * modules/unistr/u32-strcat: New file.
33892         * lib/unistr/u8-strcat.c: New file.
33893         * lib/unistr/u16-strcat.c: New file.
33894         * lib/unistr/u32-strcat.c: New file.
33895         * lib/unistr/u-strcat.h: New file.
33896
33897         * modules/unistr/u8-strchr: New file.
33898         * modules/unistr/u16-strchr: New file.
33899         * modules/unistr/u32-strchr: New file.
33900         * lib/unistr/u8-strchr.c: New file.
33901         * lib/unistr/u16-strchr.c: New file.
33902         * lib/unistr/u32-strchr.c: New file.
33903
33904         * modules/unistr/u8-strcmp: New file.
33905         * modules/unistr/u16-strcmp: New file.
33906         * modules/unistr/u32-strcmp: New file.
33907         * lib/unistr/u8-strcmp.c: New file.
33908         * lib/unistr/u16-strcmp.c: New file.
33909         * lib/unistr/u32-strcmp.c: New file.
33910
33911         * modules/unistr/u8-strcpy: New file.
33912         * modules/unistr/u16-strcpy: New file.
33913         * modules/unistr/u32-strcpy: New file.
33914         * lib/unistr/u8-strcpy.c: New file.
33915         * lib/unistr/u16-strcpy.c: New file.
33916         * lib/unistr/u32-strcpy.c: New file.
33917         * lib/unistr/u-strcpy.h: New file.
33918
33919         * modules/unistr/u8-strcspn: New file.
33920         * modules/unistr/u16-strcspn: New file.
33921         * modules/unistr/u32-strcspn: New file.
33922         * lib/unistr/u8-strcspn.c: New file.
33923         * lib/unistr/u16-strcspn.c: New file.
33924         * lib/unistr/u32-strcspn.c: New file.
33925         * lib/unistr/u-strcspn.h: New file.
33926
33927         * modules/unistr/u8-strdup: New file.
33928         * modules/unistr/u16-strdup: New file.
33929         * modules/unistr/u32-strdup: New file.
33930         * lib/unistr/u8-strdup.c: New file.
33931         * lib/unistr/u16-strdup.c: New file.
33932         * lib/unistr/u32-strdup.c: New file.
33933         * lib/unistr/u-strdup.h: New file.
33934
33935         * modules/unistr/u8-strlen: New file.
33936         * modules/unistr/u16-strlen: New file.
33937         * modules/unistr/u32-strlen: New file.
33938         * lib/unistr/u8-strlen.c: New file.
33939         * lib/unistr/u16-strlen.c: New file.
33940         * lib/unistr/u32-strlen.c: New file.
33941         * lib/unistr/u-strlen.h: New file.
33942
33943         * modules/unistr/u8-strmblen: New file.
33944         * modules/unistr/u16-strmblen: New file.
33945         * modules/unistr/u32-strmblen: New file.
33946         * lib/unistr/u8-strmblen.c: New file.
33947         * lib/unistr/u16-strmblen.c: New file.
33948         * lib/unistr/u32-strmblen.c: New file.
33949
33950         * modules/unistr/u8-strmbtouc: New file.
33951         * modules/unistr/u16-strmbtouc: New file.
33952         * modules/unistr/u32-strmbtouc: New file.
33953         * lib/unistr/u8-strmbtouc.c: New file.
33954         * lib/unistr/u16-strmbtouc.c: New file.
33955         * lib/unistr/u32-strmbtouc.c: New file.
33956
33957         * modules/unistr/u8-strncat: New file.
33958         * modules/unistr/u16-strncat: New file.
33959         * modules/unistr/u32-strncat: New file.
33960         * lib/unistr/u8-strncat.c: New file.
33961         * lib/unistr/u16-strncat.c: New file.
33962         * lib/unistr/u32-strncat.c: New file.
33963         * lib/unistr/u-strncat.h: New file.
33964
33965         * modules/unistr/u8-strncmp: New file.
33966         * modules/unistr/u16-strncmp: New file.
33967         * modules/unistr/u32-strncmp: New file.
33968         * lib/unistr/u8-strncmp.c: New file.
33969         * lib/unistr/u16-strncmp.c: New file.
33970         * lib/unistr/u32-strncmp.c: New file.
33971
33972         * modules/unistr/u8-strncpy: New file.
33973         * modules/unistr/u16-strncpy: New file.
33974         * modules/unistr/u32-strncpy: New file.
33975         * lib/unistr/u8-strncpy.c: New file.
33976         * lib/unistr/u16-strncpy.c: New file.
33977         * lib/unistr/u32-strncpy.c: New file.
33978         * lib/unistr/u-strncpy.h: New file.
33979
33980         * modules/unistr/u8-strnlen: New file.
33981         * modules/unistr/u16-strnlen: New file.
33982         * modules/unistr/u32-strnlen: New file.
33983         * lib/unistr/u8-strnlen.c: New file.
33984         * lib/unistr/u16-strnlen.c: New file.
33985         * lib/unistr/u32-strnlen.c: New file.
33986         * lib/unistr/u-strnlen.h: New file.
33987
33988         * modules/unistr/u8-strpbrk: New file.
33989         * modules/unistr/u16-strpbrk: New file.
33990         * modules/unistr/u32-strpbrk: New file.
33991         * lib/unistr/u8-strpbrk.c: New file.
33992         * lib/unistr/u16-strpbrk.c: New file.
33993         * lib/unistr/u32-strpbrk.c: New file.
33994         * lib/unistr/u-strpbrk.h: New file.
33995
33996         * modules/unistr/u8-strrchr: New file.
33997         * modules/unistr/u16-strrchr: New file.
33998         * modules/unistr/u32-strrchr: New file.
33999         * lib/unistr/u8-strrchr.c: New file.
34000         * lib/unistr/u16-strrchr.c: New file.
34001         * lib/unistr/u32-strrchr.c: New file.
34002
34003         * modules/unistr/u8-strspn: New file.
34004         * modules/unistr/u16-strspn: New file.
34005         * modules/unistr/u32-strspn: New file.
34006         * lib/unistr/u8-strspn.c: New file.
34007         * lib/unistr/u16-strspn.c: New file.
34008         * lib/unistr/u32-strspn.c: New file.
34009         * lib/unistr/u-strspn.h: New file.
34010
34011         * modules/unistr/u8-strstr: New file.
34012         * modules/unistr/u16-strstr: New file.
34013         * modules/unistr/u32-strstr: New file.
34014         * lib/unistr/u8-strstr.c: New file.
34015         * lib/unistr/u16-strstr.c: New file.
34016         * lib/unistr/u32-strstr.c: New file.
34017         * lib/unistr/u-strstr.h: New file.
34018
34019         * modules/unistr/u8-strtok: New file.
34020         * modules/unistr/u16-strtok: New file.
34021         * modules/unistr/u32-strtok: New file.
34022         * lib/unistr/u8-strtok.c: New file.
34023         * lib/unistr/u16-strtok.c: New file.
34024         * lib/unistr/u32-strtok.c: New file.
34025         * lib/unistr/u-strtok.h: New file.
34026
34027         * modules/unistr/u8-uctomb: New file.
34028         * modules/unistr/u16-uctomb: New file.
34029         * modules/unistr/u32-uctomb: New file.
34030         * lib/unistr/u8-uctomb.c: New file.
34031         * lib/unistr/u16-uctomb.c: New file.
34032         * lib/unistr/u32-uctomb.c: New file.
34033
34034         * MODULES.html.sh (Unicode string functions): Add the new modules.
34035
34036 2007-01-08  Bruno Haible  <bruno@clisp.org>
34037
34038         * gnulib-tool (func_all_modules): Use find, not ls, to traverse the
34039         modules directory. Filter out CVS, ChangeLog, COPYING, README also from
34040         subdirectories.
34041
34042 2007-01-08  Karl Berry  <karl@gnu.org>
34043
34044         * doc/error.texi: mention that main() fns must set program_name
34045         when progname is used.
34046
34047 2007-01-08  Paul Eggert  <eggert@cs.ucla.edu>
34048
34049         * m4/wctype.m4 (gl_WCTYPE_H): Compute ABSOLUTE_WCTYPE_H even if
34050         WCTYPE_H is empty, for the benefit of builds from non-distclean
34051         directories.  Problem reported by Eric Blake in
34052         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00157.html>.
34053
34054 2007-01-08  Bruno Haible  <bruno@clisp.org>
34055
34056         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
34057         PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
34058         * lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
34059         PROVIDE_CANONICALIZE_FILENAME_MODE.
34060         * modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
34061
34062 2007-01-08  Bruno Haible  <bruno@clisp.org>
34063
34064         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove _LGPL_PACKAGE macro definition.
34065         * lib/fts_.h (_LGPL_PACKAGE): Remove macro.
34066         Use !GNULIB_FTS instead of _LGPL_PACKAGE.
34067         * lib/fts.c: Likewise.
34068         * modules/fts (configure.ac): Use gl_MODULE_INDICATOR.
34069
34070 2006-12-25  Bruno Haible  <bruno@clisp.org>
34071
34072         * modules/utf8-ucs4-safe: New file.
34073         * lib/utf8-ucs4-safe.h: New file.
34074         * lib/unistr/utf8-ucs4-safe.c: New file.
34075
34076         * modules/utf16-ucs4-safe: New file.
34077         * lib/utf16-ucs4-safe.h: New file.
34078         * lib/unistr/utf16-ucs4-safe.c: New file.
34079
34080         * MODULES.html.sh (Unicode string functions): Add the new modules.
34081
34082 2007-01-08  Bruno Haible  <bruno@clisp.org>
34083
34084         * modules/utf8-ucs4 (Files, lib_SOURCES): Add unistr/utf8-ucs4.c.
34085         (Depends-on): Add unitypes.
34086         * lib/utf8-ucs4.h: Add double-inclusion guard. Include unitypes.h.
34087         (u8_mbtouc_aux): Move out to separate file.
34088         (u8_mbtouc): Use ucs4_t, uint8_t types.
34089         * lib/unistr/utf8-ucs4.c: New file.
34090
34091         * modules/utf16-ucs4 (Files, lib_SOURCES): Add unistr/utf16-ucs4.c.
34092         (Depends-on): Add unitypes.
34093         * lib/utf16-ucs4.h: Add double-inclusion guard. Include unitypes.h.
34094         (u16_mbtouc_aux): Move out to separate file.
34095         (u16_mbtouc): Use ucs4_t, uint16_t types.
34096         * lib/unistr/utf16-ucs4.c: New file.
34097
34098         * modules/ucs4-utf8 (Files, lib_SOURCES): Add unistr/ucs4-utf8.c.
34099         (Depends-on): Add unitypes.
34100         * lib/ucs4-utf8.h: Add double-inclusion guard. Include unitypes.h.
34101         (u8_uctomb_aux): Move out to separate file.
34102         (u8_uctomb): Use ucs4_t, uint8_t types.
34103         * lib/unistr/ucs4-utf8.c: New file.
34104
34105         * modules/ucs4-utf16 (Files, lib_SOURCES): Add unistr/ucs4-utf16.c.
34106         (Depends-on): Add unitypes.
34107         * lib/ucs4-utf16.h: Add double-inclusion guard. Include unitypes.h.
34108         (u16_uctomb_aux): Move out to separate file.
34109         (u16_uctomb): Use ucs4_t, uint16_t types.
34110         * lib/unistr/ucs4-utf16.c: New file.
34111
34112 2006-12-25  Bruno Haible  <bruno@clisp.org>
34113
34114         * modules/unitypes: New file.
34115         * lib/unitypes.h: New file.
34116         * MODULES.html.sh (func_all_modules): New section "Unicode string
34117         functions". Move ucs4-utf8, ucs4-utf16, utf8-ucs4, utf16-ucs4 to
34118         this section. Add unitypes.
34119
34120 2007-01-08  Bruno Haible  <bruno@clisp.org>
34121
34122         Avoid variable names that conflict with those from libtool.
34123         * m4/lib-link.m4 (AC_LIB_RPATH, AC_LIB_LINKFLAGS_BODY,
34124         AC_LIB_LINKFLAGS_FROM_LIBS): Rename libext to acl_libext,
34125         shlibext to acl_shlibext, libname_spec to acl_libname_spec,
34126         library_names_spec to acl_library_names_spec, hardcode_* to
34127         acl_hardcode_*.
34128         Reported by Ralf Wildenhues.
34129
34130 2007-01-08  Bruno Haible  <bruno@clisp.org>
34131
34132         * m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Remove GC_USE_ARCFOUR macro
34133         definition.
34134         * m4/gc-arctwo.m4 (gl_GC_ARCTWO): Remove GC_USE_ARCTWO macro
34135         definition.
34136         * m4/gc-des.m4 (gl_GC_DES): Remove GC_USE_DES macro definition.
34137         * m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Remove GC_USE_HMAC_MD5 macro
34138         definition.
34139         * m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Remove GC_USE_HMAC_SHA1 macro
34140         definition.
34141         * m4/gc-md2.m4 (gl_GC_MD2): Remove GC_USE_MD2 macro definition.
34142         * m4/gc-md4.m4 (gl_GC_MD4): Remove GC_USE_MD4 macro definition.
34143         * m4/gc-md5.m4 (gl_GC_MD5): Remove GC_USE_MD5 macro definition.
34144         * m4/gc-random.m4 (gl_GC_RANDOM): Remove GC_USE_RANDOM macro
34145         definition.
34146         * m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Remove GC_USE_RIJNDAEL macro
34147         definition.
34148         * m4/gc-sha1.m4 (gl_GC_SHA1): Remove GC_USE_SHA1 macro definition.
34149         * lib/gc-gnulib.c: Use GNULIB_GC_<algorithm> instead of
34150         GC_USE_<algorithm>.
34151         * lib/gc-libgcrypt.c: Likewise.
34152         * modules/gc-arcfour (configure.ac): Use gl_MODULE_INDICATOR.
34153         * modules/gc-arctwo (configure.ac): Likewise.
34154         * modules/gc-des (configure.ac): Likewise.
34155         * modules/gc-hmac-md5 (configure.ac): Likewise.
34156         * modules/gc-hmac-sha1 (configure.ac): Likewise.
34157         * modules/gc-md2 (configure.ac): Likewise.
34158         * modules/gc-md4 (configure.ac): Likewise.
34159         * modules/gc-md5 (configure.ac): Likewise.
34160         * modules/gc-random (configure.ac): Likewise.
34161         * modules/gc-rijndael (configure.ac): Likewise.
34162         * modules/gc-sha1 (configure.ac): Likewise.
34163
34164 2007-01-08  Bruno Haible  <bruno@clisp.org>
34165
34166         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
34167         macro definition.
34168         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
34169         definition.
34170         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
34171         definition.
34172         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
34173         * modules/fcntl-safer (configure.ac): Likewise.
34174         * modules/fopen-safer (configure.ac): Likewise.
34175         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
34176         GNULIB_FWRITEERROR macro definition.
34177
34178 2007-01-08  Bruno Haible  <bruno@clisp.org>
34179
34180         * m4/gnulib-common.m4: New file.
34181         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
34182         (func_get_filelist): Add m4/gnulib-common.m4.
34183
34184 2007-01-08  Bruno Haible  <bruno@clisp.org>
34185
34186         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
34187         command.
34188
34189 2007-01-08  Jim Meyering  <jim@meyering.net>
34190
34191         Use a more robust test for a "can't happen" condition.
34192         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
34193         narrowed the st_size value.  Presuming the "can't happen" condition
34194         is true, that narrowing could conceivably convert an invalid st_size
34195         value into a valid one.  Instead, use a change based on Matthew
34196         Woehlke's original patch.
34197
34198         Slight readability improvement: use an assert-like macro
34199         in place of literal "abort ()" uses.
34200         * lib/fts.c (fts_assert): Define.
34201         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
34202         Use this macro instead of a bare 'abort'.
34203
34204 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
34205
34206         Don't worry about using IRIX 5.3's wctype.h broken definitions;
34207         simply work around them.
34208         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
34209         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
34210         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before
34211         declaring.
34212         Don't bother to define as macros, since the standard doesn't require it.
34213         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
34214         longer worry about IRIX 5.3.
34215         (HAVE_WCTYPE_CTMP_BUG): Remove.
34216
34217 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
34218
34219         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
34220         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
34221         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
34222         Problems reported by Georg Schwarz for IRIX 5.3.
34223
34224         * gnulib-tool (autoconf_minversion): Take the maximum version number
34225         found, not the minimum.  Problem reported by James Youngman.
34226
34227 2007-01-03  Karl Berry  <karl@gnu.org>
34228
34229         * doc/error.texi: new file, explaining interaction with progname.
34230         * doc/gnulib.texi: include it.  Update copyright.
34231
34232 2007-01-03  Simon Josefsson  <simon@josefsson.org>
34233
34234         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
34235         AC_CANONICAL_HOST, to improve autobuild outputs.
34236
34237 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
34238             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
34239
34240         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
34241         sockets, server sockets, and other file descriptors.  Count errors
34242         to compute the return value.  Reorder the code a bit to be easier
34243         to follow.  Don't set event bits that were not requested (except
34244         POLLERR and POLLHUP).
34245
34246 2007-01-01  Bruno Haible  <bruno@clisp.org>
34247
34248         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
34249
34250 2007-01-03  Jim Meyering  <jim@meyering.net>
34251
34252         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
34253
34254 2007-01-02  Bruno Haible  <bruno@clisp.org>
34255
34256         * modules/settime (Include): Require timespec.h.
34257         * modules/nanosleep (Include): Likewise.
34258
34259 2007-01-01  Bruno Haible  <bruno@clisp.org>
34260
34261         * gnulib-tool (func_emit_copyright_notice): Bump year.
34262         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
34263
34264 2007-01-01  Bruno Haible  <bruno@clisp.org>
34265
34266         Improve support for OpenBSD.
34267         * build-aux/config.rpath (libname_spec): Export.
34268         (library_names_spec): New variable. Export.
34269         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
34270         library_names_spec from the config.rpath output. Locate shared library
34271         through the name pattern in library_names_spec.
34272
34273 2007-01-01  Eric Blake  <ebb9@byu.net>
34274
34275         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
34276
34277 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
34278
34279         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
34280         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
34281         assume the C locale, and avoid an "eval" that could cause trouble.
34282         Problem with SORT reported by Bob Proulx.
34283
34284         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
34285         Define.  Trivial patch from Henning Nielsen Lund, originally
34286         sent to bug-grep@gnu.org today.
34287
34288 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
34289
34290         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
34291         struct stat.  Problem reported by Henning Nielsen Lund.
34292         * lib/acl.c: Include acl.h first, to check interface.  Don't
34293         bother to include sys/types.h and sys/stat.h again.
34294
34295 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
34296
34297         Import the following change from libc; problem reported by
34298         Sven Verdoolaege.
34299
34300         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
34301
34302         [BZ #1373]
34303         * lib/argp.h: Remove __NTH for __argp_usage inline function.
34304
34305 2006-12-28  Jim Meyering  <jim@meyering.net>
34306
34307         * build-aux/announce-gen: Do not assume that the package
34308         builds any of tar.gz, tar.bz2, and .xdelta files.
34309         Suggestion from Simon Josefsson.
34310
34311 2006-12-28  Simon Josefsson  <simon@josefsson.org>
34312
34313         * modules/announce-gen: New file.
34314
34315 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
34316
34317         * lib/mbchar.h: Just include <wctype.h>; the wctype module
34318         handles its gotchas now.
34319         * lib/mbswidth.c: Likewise.
34320         * lib/wcwidth.h: Likewise.
34321         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
34322         and iswcntrl; the wctype module does this stuff now.
34323         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
34324         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
34325         * modules/mbchar (Depends-on): Add wctype.
34326         * modules/mbswidth (Depends-on): Likewise.
34327         * modules/wcwidth (Depends-on): Likewise.
34328
34329 2006-12-27  Eric Blake  <ebb9@byu.net>
34330
34331         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
34332         module uses more than what <wctype.h> is required to provide.
34333
34334 2006-12-26  Eric Blake  <ebb9@byu.net>
34335
34336         * gnulib-tool (sed_extract_prog): Avoid space-tab.
34337
34338 2006-12-26  Eric Blake  <ebb9@byu.net>
34339
34340         * modules/absolute-header: New module.
34341         * modules/fcntl (Depends-on): Depend on it.
34342         * modules/inttypes (Depends-on): Likewise.
34343         * modules/stdint (Depends-on): Likewise.
34344         * modules/sys_stat (Depends-on): Likewise.
34345         * modules/wctype (Depends-on): Likewise.
34346         * MODULES.html.sh (Support for building libraries and
34347         executables): Document it.
34348
34349 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
34350
34351         * gnulib-tool (SED): Remove, undoing previous change.
34352         The problem was that it broke coreutils on Solaris, because
34353         "sed --posix" leaked into a makefile.
34354         (sed): New alias, if 'alias' and GNU sed.
34355
34356 2006-12-24  Jim Meyering  <jim@meyering.net>
34357
34358         Work around an fchownat bug in glibc-2.4:
34359         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
34360         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
34361         in spite of the -P option.
34362         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
34363         New macros.
34364         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
34365         * modules/openat (Files): Add lib/fchownat.c.
34366         * lib/openat.c (fchownat): Don't define here.  Move to...
34367         * lib/fchownat.c: ...this new file.
34368
34369 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
34370
34371         Fix bug reported by Bruno Haible in
34372         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
34373         where quotearg.c didn't compile on Mac OS X 10.2 because it
34374         lacks <wchar.h> and wint_t.
34375         * lib/wctype_.h (__wctype_wint_t): New type.
34376         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
34377         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
34378         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
34379         Arg is now of type __wctype_wint_t, not wint_t.
34380         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
34381         substitute HAVE_WINT_T.
34382         * modules/wctype (Files): Add m4/wint_t.m4.
34383         (wctype.h): Substitute HAVE_WINT_T.
34384
34385 2006-12-23  Bruno Haible  <bruno@clisp.org>
34386
34387         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
34388
34389 2006-12-23  Bruno Haible  <bruno@clisp.org>
34390
34391         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
34392         S_ISLNK.
34393         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
34394         mingw.
34395
34396 2006-12-22  Bruno Haible  <bruno@clisp.org>
34397
34398         * lib/copy-file.c: Include acl.h.
34399         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
34400         Close the file descriptors only after being done with copy_acl.
34401         * modules/copy-file (Depends-on): Add acl.
34402
34403 2006-12-22  Bruno Haible  <bruno@clisp.org>
34404
34405         * gnulib-tool (SED): New variable.
34406         Use $SED instead of sed everywhere.
34407
34408 2006-12-22  Bruno Haible  <bruno@clisp.org>
34409
34410         * modules/no-c++: New file.
34411         * m4/no-c++.m4: New file.
34412         * MODULES.html.sh (Support for building libraries and executables):
34413         Add no-c++.
34414
34415 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
34416
34417         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
34418         Include <limits.h>, and use its INT_MAX to rewrite the
34419         j loop so that it does not overflow 'int'.  Problem reported by
34420         Ralf Wildenhues in
34421         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
34422         Play it safe by shifting left by 1 rather than multiplying by 2,
34423         as GCC is less likely to optimize this away when the value
34424         is signed (when it assumes overflow leads to undefined behavior).
34425         Also, don't assume time_t uses two's complement.
34426
34427 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
34428
34429         * MODULES.html.sh: New module wctype.
34430         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
34431         * lib/fnmatch.c: Don't bother to include <wchar.h> before
34432         <wctype.h>, since the new wctype module should fix this.
34433         * lib/quotearg.c: Include <wctype.h> unconditionally, since
34434         the wctype module should arrange for it.
34435         * lib/regex_internal.h: Likewise.
34436         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
34437         since the wctype module should handle this now.
34438         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
34439         * modules/fnmatch (Depends-on): Add wctype.
34440         * modules/quotearg (Depends-on): Likewise.
34441         * modules/regex (Depends-on): Likewise.
34442
34443 2006-12-19  Bruno Haible  <bruno@clisp.org>
34444
34445         * lib/strdup.h [C++]: Wrap definitions in extern "C".
34446         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
34447
34448 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34449
34450         * modules/savewd (Depends-on): Fix dependency on fcntl.
34451
34452 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
34453
34454         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
34455         conforms to C99, rather than relying on the user's environment
34456         setting of STDINT_H.
34457
34458 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
34459         and Eric Blake  <ebb9@byu.net>
34460
34461         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
34462         This is more consistent with the other defines here.
34463         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
34464         Port to z/OS.  Problem reported by Paul Gilmartin.
34465         Change local vars to use gl_ prefix rather than ac_.
34466         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
34467         with other defines.
34468         * modules/double-slash-root: New module.
34469         * modules/dirname (Files): Remove m4/double-slash-root.m4.
34470         (Depends-on): Add double-slash-root.
34471         * MODULES.html.sh (File system functions): Mention new module.
34472
34473 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
34474
34475         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
34476         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
34477         This is for the benefit of gzip, which doesn't do i18n.
34478
34479 2006-12-12  Jim Meyering  <jim@meyering.net>
34480
34481         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
34482         Reported by Andreas Schwab <schwab@suse.de>.
34483
34484 2006-12-12  Bruno Haible  <bruno@clisp.org>
34485
34486         Merge these changes.
34487         2006-09-05  Bruno Haible  <bruno@clisp.org>
34488         * lib/iconvme.c (iconv_string): No need to save and restore errno when
34489         iconv_alloc succeeded.
34490         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
34491         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
34492         test for " && dest " at the end - dest is always != NULL there. Call
34493         iconv with 4xNULL arguments initially, to reset the state. Call iconv
34494         with 2xNULL arguments, also to flush the state storage. Handle the
34495         IRIX iconv behaviour. Realloc the final result, to throw away unused
34496         memory.
34497
34498 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
34499
34500         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
34501         and fchmodat unconditionally, since glibc 2.4 has them.
34502         Problem reported by Arkadiusz Miskiewicz.
34503
34504 2006-12-10  Bruno Haible  <bruno@clisp.org>
34505
34506         * gnulib-tool (func_import): Show the include files only for those
34507         modules that are copied and specified.
34508         Reported by Karl Berry.
34509
34510 2006-12-08  Jim Meyering  <jim@meyering.net>
34511
34512         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
34513         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
34514
34515         * build-aux/announce-gen: Add two new options, both optional:
34516         --bootstrap-tools=TOOL_LIST
34517               a comma-separated list of tools, e.g.,
34518               autoconf,automake,bison,gnulib
34519         --gnulib-snapshot-date=DATE
34520               if gnulib is in the bootstrap tool list,
34521               then report this as the snapshot date.
34522               If not specified, use the current date/time.
34523               If you specify a date here, be sure it's UTC.
34524
34525 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34526
34527         * tests/test-argp-2.sh: Fix test to match actual output.
34528         (func_compare): Fix sed script to be portable.
34529
34530 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
34531
34532         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
34533         workaround for this case.  It is not autoconfigured now; offhand
34534         it's hard to see how to autoconfigure it.
34535
34536 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
34537
34538         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
34539         a directory that is about to be chowned.  Such a directory's
34540         initial file permissions should permit the owner only and this
34541         should not be changed until after the chown, since the group and
34542         other bits would be incorrect if they granted permission before
34543         the chown.
34544
34545         Fix porting problem for iswctype reported by Georg Schwarz in:
34546         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
34547         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
34548         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
34549         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
34550         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
34551
34552 2006-12-03  Jim Meyering  <jim@meyering.net>
34553
34554         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
34555         p->fts_statp may not yet be defined.
34556         (fts_read): Instead, set it in the caller, once p->fts_statp is
34557         sure to be defined, and corresponds to a top-level directory.
34558         This bug made du -x fail.  Here's the coreutils test case:
34559         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
34560         Reported by Mike Frysinger.
34561
34562 2006-12-01  Jim Meyering  <jim@meyering.net>
34563
34564         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
34565         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
34566         Reported by Simon Josefsson.
34567
34568 2006-11-30  Jim Meyering  <jim@meyering.net>
34569
34570         * m4/warning.m4: Use the all-permissive copyright notice
34571         recommended by RMS (rather than LGPL).
34572         * m4/vararrays.m4: Likewise.
34573         * m4/flexmember.m4: Likewise.
34574
34575 2006-11-29  Bruno Haible  <bruno@clisp.org>
34576
34577         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
34578         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
34579         using +=.
34580         Reported by Simon Josefsson <simon@josefsson.org>.
34581
34582 2006-11-28  James Youngman <jay@gnu.org>
34583
34584         * README: Advise users that they might find the bug-gnulib@gnu.org
34585         and autotools-announce@gnu.org mailing lists useful.
34586
34587 2006-11-28  Bruno Haible  <bruno@clisp.org>
34588
34589         * m4/ptrdiff_max.m4: Remove file.
34590
34591 2006-11-21  Bruno Haible  <bruno@clisp.org>
34592
34593         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
34594         _AC_COMPUTE_INT.
34595         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
34596         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
34597         _AC_COMPUTE_INT.
34598         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
34599         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
34600         _AC_COMPUTE_INT.
34601         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
34602
34603 2006-11-28  Jim Meyering  <jim@meyering.net>
34604
34605         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
34606         warning from "gcc -Wshadow" about shadowing the builtin.
34607
34608 2006-11-27  Bruno Haible  <bruno@clisp.org>
34609
34610         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
34611         _AC_COMPUTE_INT.
34612         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
34613
34614 2006-11-27  Bruno Haible  <bruno@clisp.org>
34615             Paul Eggert  <eggert@cs.ucla.edu>
34616
34617         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
34618
34619 2006-11-26  Bruno Haible  <bruno@clisp.org>
34620
34621         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
34622         noinst_LTLIBRARIES.
34623
34624 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
34625             Bruno Haible  <bruno@clisp.org>
34626
34627         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
34628         if compiling with "gcc -ansi".
34629
34630 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
34631
34632         Fix some incompatibilities with gcc -ansi -pedantic.
34633         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
34634         if compiling pedantically with GCC, unless it's C99 or later.
34635         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
34636         it mishandles gcc -ansi -pedantic as well.
34637         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
34638         if gcc -pedantic.
34639         * lib/regexec.c (check_node_accept_bytes): Don't use auto
34640         initializers for struct if -pedantic, unless it's C99 or later.
34641
34642 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
34643
34644         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
34645         Don't close an fd more than once. Identical atimes indicate
34646         success, not failure.
34647
34648 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
34649
34650         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
34651
34652 2006-11-23  Jim Meyering  <jim@meyering.net>
34653
34654         * build-aux/announce-gen: New file.  From coreutils.
34655
34656 2006-11-22  Jim Meyering  <jim@meyering.net>
34657
34658         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
34659         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
34660         (fts_read): Use a temporary to narrow the overused st_size member
34661         before using it in a switch statement.  Reported by Matthew Woehlke.
34662
34663         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
34664         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
34665
34666 2006-11-20  Bruno Haible  <bruno@clisp.org>
34667
34668         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
34669         changequote instead of pairs of brackets.
34670         Reported by Andreas Schwab <schwab@suse.de>.
34671
34672 2006-11-21  Jim Meyering  <jim@meyering.net>
34673
34674         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
34675         so as to remain compatible with older compilers.
34676         Patch from Michael Deutschmann.
34677
34678 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
34679
34680         * MODULES.html.sh (File system functions): Add openat.
34681
34682         * lib/openat.h (rpl_fstatat): New macro, if
34683         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
34684         (fstatat): Define to rpl_fstatat under the same conditions,
34685         unless COMPILING_FSTATAT.
34686         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
34687         seems to have the bug.
34688         * lib/fstatat.c: New file.
34689         * modules/openat (Files): Add it.
34690
34691 2006-11-20  Bruno Haible  <bruno@clisp.org>
34692
34693         * Makefile: New file.
34694
34695 2006-11-20  Jim Meyering  <jim@meyering.net>
34696
34697         The beginnings of syntax-related checks for gnulib.
34698         * lib/Makefile: New file.
34699         * lib/t-idcache: New script.  Ensure that the two halves of
34700         idcache.c stay in sync.
34701
34702         * lib/idcache.c: Adjust comments in user- and group- portions to
34703         be more accurate, and to be consistent with one another.
34704
34705 2006-11-20  Jim Meyering  <jim@meyering.net>
34706
34707         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
34708         continue using the flexible array member (thus, this module performs
34709         half as many malloc calls), with the addition that...
34710         (getgroup, getuser): Consistently record a non-match via an empty
34711         "name" string, and map an empty string match to a NULL return value.
34712         * modules/idcache (Depends-on): Re-add flexmember.
34713
34714         * lib/idcache.c (getuser): Remove all uses of the register keyword.
34715         (getuidbyname, getgroup, getgidbyname): Likewise.
34716
34717         Use cleaner syntax: NULL rather than 0.
34718         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
34719
34720 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
34721
34722         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
34723         It mishandled the case where the group was missing.
34724         Problem reported by Greg Schafer.
34725         * modules/idcache: Likewise.
34726
34727 2006-11-18  Jim Meyering  <jim@meyering.net>
34728
34729         * check-module (%exempt_header): Add exception for some
34730         conditionally-included headers.
34731
34732         * modules/i-ring (Depends-on): Add verify.
34733         (License): Change to LGPL.
34734
34735 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
34736
34737         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
34738         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
34739         and inttostr.h.  Use snprintf rather than uinttostr, so that
34740         LGPLed code doesn't depend on GPLed.
34741
34742 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
34743
34744         * modules/inline (License): Change from GPL to LGPL.
34745
34746 2006-11-17  Jim Meyering  <jim@meyering.net>
34747
34748         * modules/d-type (License): Switch to LGPL.
34749
34750 2006-11-15  Bruno Haible  <bruno@clisp.org>
34751
34752         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
34753
34754 2006-11-15  Eric Blake  <ebb9@byu.net>
34755
34756         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
34757         the module dependency.
34758
34759 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
34760             Bruno Haible  <bruno@clisp.org>
34761
34762         * gnulib-tool (func_create_testdir): Add license consistency check.
34763
34764 2006-11-15  Eric Blake  <ebb9@byu.net>
34765
34766         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
34767         random "(cached)" in configure output.
34768
34769 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34770
34771         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
34772         test for conforming inttypes.h is both announced and cached.
34773
34774         * MODULES.html.sh (seen_modules, seen_files): New variables.
34775         (func_module): Rewrite to use a few less gnulib-tool and sed
34776         invocations.  Avoid a couple of quadratic algorithms for ...
34777         (missed_modules, missed_files): ... these, with ...
34778         (func_append, func_tmpdir): ... these new functions, from
34779         gnulib-tool.  Analogously, install traps for cleanup.
34780
34781         * tests/test-gc.c (main): Remove unused variables.
34782         * tests/test-read-file.c: Include stdlib.h, for 'free'.
34783
34784 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
34785
34786         * modules/inttostr (License): Change to LGPL.
34787
34788 2006-11-14  Eric Blake  <ebb9@byu.net>
34789
34790         * modules/tempname (License): Change to LGPL.
34791
34792 2006-11-14  Eric Blake  <ebb9@byu.net>
34793
34794         * doc/functions.texi (Function Portability): *printf functions on
34795         Cygwin now understand all POSIX size specifiers.
34796
34797 2006-11-14  Bruno Haible  <bruno@clisp.org>
34798
34799         * modules/c-ctype (License): Change to LGPL.
34800
34801 2006-11-12  Bruno Haible  <bruno@clisp.org>
34802
34803         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
34804         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
34805         for GNOME libraries, for which the include files are installed in
34806         subdirectories of $prefix/include.
34807
34808 2006-11-12  Bruno Haible  <bruno@clisp.org>
34809
34810         * m4/lib-link.m4: Require at least autoconf-2.54.
34811         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
34812         name to underscores for the --with option.
34813
34814 2006-11-13  Bruno Haible  <bruno@clisp.org>
34815
34816         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
34817         the tests directory.
34818         Reported by Ralf Wildenhues.
34819
34820 2006-11-13  Bruno Haible  <bruno@clisp.org>
34821
34822         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
34823         (func_emit_initmacro_end): Undo the override here.
34824         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
34825         Works around the famous automake error in coreutils.
34826
34827 2006-11-13  Eric Blake  <ebb9@byu.net>
34828
34829         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
34830         element, not its node.
34831
34832 2006-11-12  Bruno Haible  <bruno@clisp.org>
34833
34834         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
34835         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
34836
34837 2006-11-12  Bruno Haible  <bruno@clisp.org>
34838
34839         * gnulib-tool: New option --local-symlink.
34840         (func_usage): Document it.
34841         (lsymbolic): New variable.
34842         (func_import, func_create_testdir): If --symlink was not specified,
34843         test whether --local-symlink was specified and the file comes from
34844         the local_gnulib_dir.
34845
34846 2006-11-12  Bruno Haible  <bruno@clisp.org>
34847
34848         * gnulib-tool (func_ln): New function.
34849         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
34850
34851 2006-11-12  Bruno Haible  <bruno@clisp.org>
34852
34853         Finish support for source files in subdirectories.
34854         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
34855         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
34856         AUTOMAKE_OPTIONS.
34857         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
34858
34859 2006-11-12  Bruno Haible  <bruno@clisp.org>
34860
34861         * gnulib-tool (func_get_automake_snippet): Synthesize also an
34862         EXTRA_lib_SOURCES augmentation.
34863         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
34864
34865 2006-11-12  Jim Meyering  <jim@meyering.net>
34866
34867         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
34868         file descriptors.  This also averts a failure on systems with
34869         native openat support when a traversed directory lacks "x" access.
34870         * lib/fts_.h: Include "i-ring.h"
34871         (struct FTS) [fts_fd_ring]: New member.
34872         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
34873         (FCHDIR): Add parentheses.
34874         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
34875         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
34876         When descending, rather than simply closing the previous
34877         fts_cwd_fd value, push that file descriptor onto the ring.
34878         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
34879         (fts_open): Initialize the new fd_ring member.
34880         (fts_close): Clear the ring.
34881         (fts_safe_changedir): When possible, use our new fd_ring to skip
34882         the diropen and fstat and dev/ino comparison that would normally
34883         accompany a virtual `chdir ("..")'.
34884
34885         * modules/fts (Depends-on): Add i-ring.
34886         * modules/i-ring: New module.
34887         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
34888         * m4/i-ring.m4: New file.
34889
34890 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34891
34892         * gnulib-tool (func_create_testdir): Fix replacement of
34893         `build-aux' in configure.ac.  Run autotools in gltests
34894         subdirectory.
34895         (func_create_testdir, func_create_megatestdir, test): There is
34896         no need for '--force' in most autotool invocations in a new
34897         tree.  Actually fail the whole test if any of the tools, or the
34898         configure or make stages fail.
34899
34900         Sync from Automake.
34901         * build-aux/gnupload: Revert last change.  Add pointer to upload
34902         instructions of the GNU Maintenance Instructions.
34903         Suggestion by Karl Berry.
34904
34905 2006-11-10  Jim Meyering  <jim@meyering.net>
34906
34907         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
34908
34909 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
34910
34911         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
34912         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
34913         (bind_textdomain_codeset) [! ENABLE_NLS]:
34914         Evaluate all the arguments.  That way, callers get compatible behavior
34915         if the arguments have side effects.  Also, it avoids some GCC
34916         diagnostics in some cases; Joel E. Denny reported problems when Bison
34917         was configured with --enable-gcc-warnigs.
34918
34919 2006-11-10  Jim Meyering  <jim@meyering.net>
34920
34921         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
34922         relevant options in CFLAGS (like -O, -fno-inline) are taken into
34923         account.
34924
34925 2006-11-10  Jim Meyering  <jim@meyering.net>
34926
34927         * modules/inline: New file/module.
34928         * modules/xalloc (Files): Remove m4/inline.m4.
34929         (Depends-on): Add inline, instead.
34930         * modules/oset: Likewise.
34931         * modules/list: Likewise.
34932
34933 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
34934
34935         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
34936         Problem reported by Matthew Woehlke.
34937
34938 2006-11-09  Bruno Haible  <bruno@clisp.org>
34939
34940         * lib/tempname.c (gen_tempname): Remove variant that invokes
34941         __gen_tempname.
34942         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
34943         __gen_tempname.
34944
34945 2006-11-08  Bruno Haible  <bruno@clisp.org>
34946
34947         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
34948         to 'yes' instead of 'cross-compiling'.
34949
34950 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
34951
34952         * lib/quotearg.h (quotearg_free): New decl.
34953         * lib/quotearg.c (quotearg_free): New function.
34954         (slot0, nslots, slotvec0, slotvec):
34955         Now file-scope so that quotearg_free can get at them.
34956
34957 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34958
34959         Sync from Automake.
34960         * build-aux/gnupload: Add missing 'gnu' to example URL.
34961         Report by Karl Berry.
34962
34963 2006-11-08  Bruno Haible  <bruno@clisp.org>
34964
34965         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
34966         Suggested by Paul Eggert.
34967
34968 2006-11-08  Jim Meyering  <jim@meyering.net>
34969
34970         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
34971         It's already included if !_LIBC.
34972         (fts_safe_changedir): Add a comment.
34973
34974 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
34975
34976         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
34977         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
34978         Matthew Woehlke.
34979
34980         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
34981         definitions up, to avoid colliding with change below.
34982         (static_inline) [HAVE_INLINE]: New macro.
34983         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
34984         Provide extern decls when !HAVE_INLINE.  Do not define unless
34985         static_inline is defined, either by us or by xmalloc.c.  Use
34986         static_inline rather than static inline.
34987         (XCALLOC): Optimize sizeof(T) = 1 case.
34988         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
34989
34990 2006-11-07  Bruno Haible  <bruno@clisp.org>
34991
34992         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
34993         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
34994         AC_C_INLINE.
34995         * modules/xalloc (Files): Add m4/inline.m4.
34996
34997 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34998
34999         * README: Fix typo.
35000         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
35001         (Miscellanous Notes): ...from this.
35002
35003 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
35004
35005         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
35006         Mention that offsetof should be used instead of sizeof.
35007         From Bruno Haible.
35008
35009 2006-11-07  Bruno Haible  <bruno@clisp.org>
35010
35011         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
35012
35013 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
35014
35015         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
35016         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
35017         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
35018         (gl_tree_add_before, gl_tree_add_after):
35019         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
35020         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
35021         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
35022         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
35023         (gl_linked_add_after, gl_linked_add_at): Likewise.
35024         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
35025         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
35026         (gl_tree_add_before, gl_tree_add_after): Likewise.
35027         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
35028         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
35029         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
35030
35031 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35032
35033         * lib/gl_oset.h: Use C comment style, not C++ comment style.
35034
35035 2006-11-06  Bruno Haible  <bruno@clisp.org>
35036
35037         * m4/inline.m4: New file.
35038         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
35039         * modules/list (Files): Add m4/inline.m4.
35040         * modules/oset (Files): Likewise.
35041
35042 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
35043
35044         * lib/idcache.c: Include <stddef.h>, for offsetof.
35045         (struct userid.name): Change from char * to a flexible array member.
35046         All uses changed.
35047         * modules/idcache (Depends-on): Add flexmember.
35048
35049         * MODULES.html.sh (Core language properties): New module flexmember.
35050         * modules/flexmember, m4/flexmember.m4: New files.
35051
35052         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
35053         inline functions that are identical with the old xnmalloc_inline,
35054         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
35055         that we can avoid some unnecessary integer multiplications and
35056         divisions in the common case where the element size is known at
35057         compile time.
35058         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
35059         needed.
35060         (xnboundedmalloc): Remove.
35061         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
35062         arguments, for consistency with rest of this header.
35063         (xcharalloc): Rewrite using XNMALLOC.
35064         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
35065         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
35066         versions have been moved to lib/xalloc.h and renamed to be the
35067         non-*_inline versions.
35068         (xmalloc, xrealloc): Implement without reference to the xnmalloc
35069         and xnrealloc functions, since those functions are now inline and
35070         now call us.
35071         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
35072         renaming described above.
35073         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
35074         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
35075         captures the dependency in AC_C_INLINE.
35076
35077         New module canonicalize-lgpl, proposed by Charles Wilson in
35078         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
35079         with a few small changes afterwards.
35080         * MODULES.html.sh (File system functions): New module
35081         canonicalize-lgpl.
35082         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
35083         and canonicalize_file_name.
35084         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
35085         * modules/canonicalize-lgpl: New files.
35086
35087 2006-11-05  Bruno Haible  <bruno@clisp.org>
35088
35089         * gnulib-tool (func_import, func_create_testdir): Create directories
35090         also for files in subdirectories of lib/.
35091
35092 2006-11-05  Bruno Haible  <bruno@clisp.org>
35093
35094         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
35095         ANSI C compliant.
35096
35097 2006-11-03  Bruno Haible  <bruno@clisp.org>
35098
35099         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
35100         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
35101         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
35102         (xnboundedmalloc): New inline function.
35103         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
35104         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
35105         xmalloc.
35106         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
35107         xmalloc.
35108         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
35109         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
35110         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
35111         xmalloc.
35112         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
35113         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
35114         xmalloc.
35115         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
35116         gl_tree_add_after): Use XMALLOC instead of xmalloc.
35117         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
35118         xmalloc.
35119         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
35120         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
35121         gl_tree_add_after): Use XMALLOC instead of xmalloc.
35122         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
35123         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
35124         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
35125         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
35126
35127 2006-11-03  Bruno Haible  <bruno@clisp.org>
35128
35129         * lib/c-ctype.h [C++]: Define functions without name mangling.
35130         * lib/fwriteerror.h [C++]: Likewise.
35131         * lib/gcd.h [C++]: Likewise.
35132         * lib/linebreak.h [C++]: Likewise.
35133
35134 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
35135
35136         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
35137         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
35138         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
35139         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
35140         Check for functions and headers just once.
35141         Check for declaration of canonicalize_file_name.
35142         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
35143
35144 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
35145
35146         * gnulib-tool (func_import): Fix typo in actioncmd.
35147
35148 2006-11-02  Bruno Haible  <bruno@clisp.org>
35149
35150         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
35151         newline sequence in the Makefile.am snippet as a space, like "make"
35152         does.
35153         Reported by Roger Persson <perrog@gmail.com>.
35154
35155 2006-11-01  Bruno Haible  <bruno@clisp.org>
35156
35157         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
35158         already declared in <string.h>.
35159         * lib/strcase.h (strncasecmp): Don't declare it if yes.
35160
35161 2006-11-01  Bruno Haible  <bruno@clisp.org>
35162
35163         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
35164         * lib/strcase.h: Include <string.h>.
35165         (strcasecmp): Define to rpl_strcasecmp here.
35166
35167 2006-11-01  Bruno Haible  <bruno@clisp.org>
35168
35169         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
35170
35171 2006-11-01  Eric Blake  <ebb9@byu.net>
35172
35173         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
35174
35175         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
35176
35177 2006-10-29  Bruno Haible  <bruno@clisp.org>
35178
35179         Make it compile in C++ mode.
35180         * lib/full-write.c (full_rw): Add a cast.
35181
35182 2006-11-01  Bruno Haible  <bruno@clisp.org>
35183
35184         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
35185         be POSIX compliant.
35186         Reported by Roger Persson <perrog@gmail.com>.
35187
35188 2006-11-01  Eric Blake  <ebb9@byu.net>
35189
35190         * lib/getopt_.h: Fix comments.
35191
35192 2006-10-31  Eric Blake  <ebb9@byu.net>
35193
35194         * modules/tmpdir (Depends-on): Add sys_stat.
35195         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
35196         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
35197         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
35198         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
35199         tempname.
35200
35201 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
35202
35203         Avoid some C++ diagnostics reported by Bruno Haible.
35204         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
35205         xmalloc.
35206         (quotearg_alloc): Use xcharalloc rather than xmalloc.
35207         (struct slotvec): Move to top level.
35208         (quotearg_n_options): Rewrite to avoid xmalloc.
35209         * lib/xalloc.h (xcharalloc): New function.
35210         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
35211         [defined __cplusplus]: Add function template that provides result
35212         type propagation.  This part of the change is from Bruno Haible.
35213
35214 2006-10-29  Bruno Haible  <bruno@clisp.org>
35215
35216         Make it compile in C++ mode.
35217         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
35218         * lib/strnlen1.c (strnlen1): Cast memchr result.
35219         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
35220         * lib/clean-temp.c (string_equals, string_hash): Add casts.
35221         (create_temp_dir): Rename local variable 'template'.
35222         (compile_csharp_using_sscli): Add cast.
35223         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
35224         * lib/findprog.c (find_in_path): Likewise.
35225         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
35226         * lib/wait-process.c (register_slave_subprocess): Likewise.
35227
35228 2006-10-22  Bruno Haible  <bruno@clisp.org>
35229
35230         * modules/tsearch: New file.
35231         * lib/tsearch.h: New file.
35232         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
35233         * m4/tsearch.m4: New file.
35234         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
35235
35236 2006-10-29  Eric Blake  <ebb9@byu.net>
35237
35238         * lib/arcfour.c: Assume config.h.
35239         * lib/arctwo.c: Likewise.
35240         * lib/base64.c: Likewise.
35241         * lib/check-version.c: Likewise.
35242         * lib/crc.c: Likewise.
35243         * lib/des.c: Likewise.
35244         * lib/gc-gnulib.c: Likewise.
35245         * lib/gc-libgcrypt.c: Likewise.
35246         * lib/gc-pbkdf2-sha1.c: Likewise.
35247         * lib/getaddrinfo.c: Likewise.
35248         * lib/getdelim.c: Likewise.
35249         * lib/getline.c: Likewise.
35250         * lib/hmac-md5.c: Likewise.
35251         * lib/hmac-sha1.c: Likewise.
35252         * lib/iconvme.c: Likewise.
35253         * lib/md2.c: Likewise.
35254         * lib/md4.c: Likewise.
35255         * lib/memxor.c: Likewise.
35256         * lib/read-file.c: Likewise.
35257         * lib/readline.c: Likewise.
35258         * lib/rijndael-alg-fst.c: Likewise.
35259         * lib/rijndael-api-fst.c: Likewise.
35260         * lib/xgetdomainname.c: Likewise.
35261
35262 2006-10-28  Eric Blake  <ebb9@byu.net>
35263
35264         * lib/xstrndup.c: Assume config.h.
35265
35266 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
35267
35268         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
35269         stat-macros.h is now for our own macros, whereas stat_h is for
35270         macros in the <sys/stat.h> name space.
35271         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
35272         (STAT_MACROS_H): Remove.
35273         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
35274         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
35275         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
35276         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
35277         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
35278         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
35279         Move these macros to ...
35280         * lib/stat_.h: here.  Don't include stat-macros.h.
35281         * lib/canonicalize.c: Don't include stat-macros.h.
35282         * lib/chown.c: Likewise.
35283         * lib/euidaccess.c: Likewise.
35284         * lib/file-type.c: Likewise.
35285         * lib/filemode.c: Likewise.
35286         * lib/glob.c: Likewise.
35287         * lib/isapipe.c: Likewise.
35288         * lib/lchown.c: Likewise.
35289         * lib/lstat.c: Likewise.
35290         * lib/mkdir-p.c: Likewise.
35291         * lib/rmdir.c: Likewise.
35292         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
35293         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
35294         unless mkdir isn't declared, to speed up 'configure'.
35295         Always create sys/stat.h, since it's unlikely any real sys/stat.h
35296         would define all the S_* symbols.
35297         * modules/canonicalize (Depends-on):
35298         Depend on sys_stat, not stat-macros.
35299         * modules/chown: Likewise.
35300         * modules/euidaccess: Likewise.
35301         * modules/filemode: Likewise.
35302         * modules/file-type: Likewise.
35303         * modules/glob: Likewise.
35304         * modules/isapipe: Likewise.
35305         * modules/lchown: Likewise.
35306         * modules/lstat: Likewise.
35307         * modules/mkancesdirs: Likewise.
35308         * modules/rmdir: Likewise.
35309         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
35310         * modules/modechange: Likewise.
35311         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
35312         (configure.ac): Remove gl_STAT_MACROS.
35313         * modules/sys_stat (Depends-on): Remove stat-macros.
35314
35315 2006-10-27  Bruno Haible  <bruno@clisp.org>
35316
35317         * m4/signed.m4: Remove file.
35318         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
35319         invocation.
35320         * modules/vasnprintf (Files): Remove m4/signed.m4.
35321
35322 2006-10-27  Bruno Haible  <bruno@clisp.org>
35323
35324         Update to GNU gettext 0.16.
35325         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
35326         m4/inttypes-h.m4, m4/signed.m4.
35327         * m4/gettext.m4: Update to GNU gettext 0.16.
35328         * m4/intl.m4: New file, from GNU gettext.
35329         * m4/intldir.m4: New file, from GNU gettext.
35330         * config/srclist.txt: Update
35331
35332 2006-10-27  Eric Blake  <ebb9@byu.net>
35333
35334         * MODULES.html.sh: Document tempname.
35335         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
35336         dependencies.
35337         (Files): Move lib/tempname.c...
35338         * modules/tempname: ...to this new module.
35339         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
35340         (gl_PREREQ_TEMPNAME): Move...
35341         * m4/tempname.m4: ...to this new file.
35342         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
35343         * modules/sys_stat (Depends-on): Add stat-macros.
35344         * lib/stat_.h (includes): Pick up stat macros.
35345         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
35346         if stat macros are broken.
35347         * lib/tempname.c (includes): No need to include "stat-macros.h".
35348         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
35349         (direxists, __path_search) [!_LIBC]: Don't compile these in
35350         gnulib; the tmpdir module covers that.
35351         * lib/tempname.h: New file.
35352
35353 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
35354
35355         * COPYING: Explain how gnulib-tool converts licence headers.
35356         Almost all wording by Eric Blake.
35357
35358 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
35359
35360         * lib/mbchar.h (is_basic_table): Make read-only.
35361         * lib/mbchar.c (is_basic_table): Likewise.
35362         Reported by John Darrington.
35363
35364 2006-10-25  Bruno Haible  <bruno@clisp.org>
35365
35366         * lib/progname.h (set_program_name): Undefine before defining.
35367
35368 2006-10-25  Bruno Haible  <bruno@clisp.org>
35369
35370         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
35371         false for non-gcc C++ compilers.
35372         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
35373
35374 2006-10-24  Bruno Haible  <bruno@clisp.org>
35375
35376         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
35377         iconv implementations like Irix iconv.
35378
35379 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
35380
35381         * modules/vararrays: New file.
35382         * m4/vararrays.m4: New file, taken from diffutils.
35383         * MODULES.html.sh: New module vararrays.
35384
35385 2006-10-24  Karl Berry  <karl@gnu.org>
35386
35387         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
35388         Don't call GNU Unix.
35389
35390 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35391
35392         * users.txt: Add Libtool.
35393
35394         Sync from Libtool:
35395
35396         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
35397
35398         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
35399         to gnulib's policy of including config.h unconditionally.
35400
35401 2006-10-24  Bruno Haible  <bruno@clisp.org>
35402
35403         * modules/wcwidth (Files): Add m4/wint_t.m4.
35404         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
35405         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
35406
35407 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
35408
35409         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
35410         to pacify GCC with some -W flags enabled.  Problem reported by
35411         Bruno Haible.
35412
35413 2006-10-24  Jim Meyering  <jim@meyering.net>
35414
35415         * MODULES.html.sh: Remove uinttostr.  It's not a module.
35416         Reported by Karl Berry.
35417
35418 2006-10-23  Bruno Haible  <bruno@clisp.org>
35419
35420         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
35421
35422 2006-10-24  Bruno Haible  <bruno@clisp.org>
35423
35424         * lib/gl_list.h: Use C comment style, not C++ comment style.
35425
35426 2006-10-23  Eric Blake  <ebb9@byu.net>
35427
35428         * lib/getaddrinfo.c (includes): Add missing include.
35429
35430 2006-10-23  Bruno Haible  <bruno@clisp.org>
35431             Paul Eggert  <eggert@cs.ucla.edu>
35432
35433         Ability to rename obstack_free.
35434         * lib/obstack.h (__obstack_free): New macro. Declare instead of
35435         obstack_free.
35436         (obstack_free): Invoke the __obstack_free macro.
35437         * lib/obstack.c (obstack_free): Use __obstack_free macro.
35438
35439 2006-10-23  Bruno Haible  <bruno@clisp.org>
35440             Paul Eggert  <eggert@cs.ucla.edu>
35441
35442         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
35443         __argc, __argv from the declaration. (They are defined as macros on
35444         mingw.)
35445
35446 2006-10-22  Bruno Haible  <bruno@clisp.org>
35447
35448         * doc/gnulib-intro.texi: New file.
35449         * doc/gnulib.texi: Include it.
35450
35451 2006-10-21  Bruno Haible  <bruno@clisp.org>
35452
35453         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
35454         "Introduction", "Miscellanous Notes", "Particular Modules".
35455
35456 2006-10-21  Bruno Haible  <bruno@clisp.org>
35457
35458         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
35459         Change mostlyclean-local rule to avoid sh syntax error from bash
35460         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
35461
35462 2006-10-23  Jim Meyering  <jim@meyering.net>
35463
35464         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
35465         in place of snprintf.
35466
35467         * modules/inttostr (Files): Add lib/uinttostr.c.
35468         * lib/uinttostr.c (inttostr): New file/function.
35469         * lib/inttostr.h (uinttostr): Declare.
35470         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
35471         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
35472         Add uinttostr.
35473         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
35474
35475 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
35476
35477         * lib/canonicalize.c (ELOOP): Define if not already defined.
35478         Problem reported by Bruno Haible in
35479         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
35480
35481 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
35482
35483         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
35484         Problem reported by Perry Smith and Ville Laurikari.
35485
35486         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
35487         uses.
35488
35489 2006-10-19  Bruno Haible  <bruno@clisp.org>
35490
35491         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
35492         for mingw.
35493
35494 2006-10-19  Bruno Haible  <bruno@clisp.org>
35495
35496         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
35497         Needed for mingw.
35498
35499 2006-10-19  Bruno Haible  <bruno@clisp.org>
35500
35501         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
35502
35503 2006-10-19  Bruno Haible  <bruno@clisp.org>
35504
35505         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
35506         it.
35507
35508 2006-10-19  Bruno Haible  <bruno@clisp.org>
35509
35510         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
35511         invocation.
35512
35513 2006-10-19  Bruno Haible  <bruno@clisp.org>
35514
35515         * gnulib-tool (func_create_testdir): Don't include ftruncate and
35516         mountlist by default.
35517
35518 2006-10-16  Bruno Haible  <bruno@clisp.org>
35519
35520         * lib/c-strstr.c: Include c-strstr.h.
35521
35522 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
35523
35524         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
35525         in a slash.
35526
35527 2006-10-18  Bruno Haible  <bruno@clisp.org>
35528
35529         * lib/lock.h [C++]: Wrap definitions in extern "C".
35530
35531 2006-10-18  Bruno Haible  <bruno@clisp.org>
35532
35533         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
35534         gl_LIBOBJS list.
35535
35536 2006-10-18  Bruno Haible  <bruno@clisp.org>
35537
35538         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
35539
35540 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
35541
35542         * lib/xstrtol.h: Include gettext.h.
35543         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
35544         Problem reported by Eric Blake.
35545         * modules/xstrtol (Depends-on): Add gettext-h.
35546
35547 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
35548
35549         * lib/strftime.c (advance): New macro.
35550         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
35551         incomplete type, so you can't add 0 to it.  Problem and patch
35552         reported by Eelco Dolstra for dietlibc.
35553
35554 2006-10-18  Jim Meyering  <jim@meyering.net>
35555
35556         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
35557         type for a local, and rename it: s/up/user_proc/.
35558
35559 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
35560
35561         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
35562         READ_UTMP_USER_PROCESS.
35563         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
35564
35565 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
35566
35567         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
35568         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
35569
35570 2006-10-17  Eric Blake  <ebb9@byu.net>
35571
35572         * lib/sigprocmask.c (sigprocmask): Fix typo.
35573
35574         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
35575
35576         * modules/clean-temp (Makefile.am): Don't add to make output...
35577         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
35578         config.h.
35579
35580 2006-10-17  Bruno Haible  <bruno@clisp.org>
35581
35582         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
35583         differently if DEFAULT_TEXT_DOMAIN is set.
35584
35585 2006-10-16  Bruno Haible  <bruno@clisp.org>
35586
35587         * lib/clean-temp.c: Include fwriteerror.h.
35588
35589 2006-10-16  Bruno Haible  <bruno@clisp.org>
35590
35591         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
35592
35593 2006-10-16  Bruno Haible  <bruno@clisp.org>
35594
35595         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
35596         * lib/sigprocmask.h: Include <sys/types.h>.
35597         (sigset_t): Use the system's definition if present.
35598
35599 2006-10-17  Eric Blake  <ebb9@byu.net>
35600
35601         * lib/xvasprintf.c (includes): Assume config.h.
35602         * lib/xasprintf.c (includes): Likewise.
35603
35604 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
35605
35606         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
35607         at least as wide as intmax_t.
35608
35609 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
35610
35611         (Imported from Automake.)
35612         * build-aux/gnupload: Update to version 1.1 of directive file.
35613
35614 2006-10-16  Eric Blake  <ebb9@byu.net>
35615
35616         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
35617         match Automake 1.10a.
35618
35619 2006-10-14  Bruno Haible  <bruno@clisp.org>
35620
35621         * modules/sigprocmask: New file.
35622         * lib/sigprocmask.h: New file.
35623         * lib/sigprocmask.c: New file.
35624         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
35625         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
35626         request sigprocmask.o.
35627         (gl_PREREQ_SIGPROCMASK): New macro.
35628         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
35629         (Depends-on): Add sigprocmask.
35630         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
35631         gt_SIGNALBLOCKING. Test for 'raise' only once.
35632         * lib/fatal-signal.c: Include sigprocmask.h.
35633         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
35634         unblock_fatal_signals): Define always.
35635         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
35636         sigprocmask.
35637
35638 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
35639
35640         Sync from Automake.
35641         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
35642         which incorrectly sets the mode of an existing destination
35643         directory.  In some cases the unpatched install-sh could do the
35644         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
35645         system.  We hope this is rare in practice, but it's clearly worth
35646         fixing.  Problem reported by Alex Unleashed in
35647         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
35648         Also, don't bother to check for -m bugs unless we're using -m;
35649         suggested by Stepan Kasal.
35650
35651 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35652
35653         Sync from Automake.
35654         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
35655         `-c' flag, so they appear at the same position as in %FASTDEP%
35656         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
35657         which ignores unknown options only after the first non-option.
35658         Bug report against M4 by Nelson H. F. Beebe.
35659
35660 2006-10-13  Jim Meyering  <jim@meyering.net>
35661
35662         Fix a bug in yesterday's change.
35663         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
35664         p->fts_statp->st_dev would be used uninitialized.
35665         Ensures that we always call fts_stat on the very first entry.
35666         Miklos Szeredi reported that find -xdev stopped working.
35667
35668 2006-10-12  Bruno Haible  <bruno@clisp.org>
35669
35670         * gnulib-tool (func_get_automake_snippet): Append an automatically
35671         computed EXTRA_DIST augmentation.
35672         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
35673         * modules/alloca-opt (Makefile.am): Likewise.
35674         * modules/allocsa (Makefile.am): Likewise.
35675         * modules/arcfour (Makefile.am): Likewise.
35676         * modules/arctwo (Makefile.am): Likewise.
35677         * modules/argmatch (Makefile.am): Likewise.
35678         * modules/argz (Makefile.am): Likewise.
35679         * modules/atexit (Makefile.am): Likewise.
35680         * modules/backupfile (Makefile.am): Likewise.
35681         * modules/byteswap (Makefile.am): Likewise.
35682         * modules/c-strtod (Makefile.am): Likewise.
35683         * modules/c-strtold (Makefile.am): Likewise.
35684         * modules/calloc (Makefile.am): Likewise.
35685         * modules/canon-host (Makefile.am): Likewise.
35686         * modules/canonicalize (Makefile.am): Likewise.
35687         * modules/chdir-long (Makefile.am): Likewise.
35688         * modules/chdir-safer (Makefile.am): Likewise.
35689         * modules/check-version (Makefile.am): Likewise.
35690         * modules/chown (Makefile.am): Likewise.
35691         * modules/cloexec (Makefile.am): Likewise.
35692         * modules/close-stream (Makefile.am): Likewise.
35693         * modules/closeout (Makefile.am): Likewise.
35694         * modules/crc (Makefile.am): Likewise.
35695         * modules/csharpexec (Makefile.am): Likewise.
35696         * modules/cycle-check (Makefile.am): Likewise.
35697         * modules/des (Makefile.am): Likewise.
35698         * modules/dev-ino (Makefile.am): Likewise.
35699         * modules/dirfd (Makefile.am): Likewise.
35700         * modules/dirname (Makefile.am): Likewise.
35701         * modules/dup2 (Makefile.am): Likewise.
35702         * modules/eealloc (Makefile.am): Likewise.
35703         * modules/error (Makefile.am): Likewise.
35704         * modules/euidaccess (Makefile.am): Likewise.
35705         * modules/exclude (Makefile.am): Likewise.
35706         * modules/exitfail (Makefile.am): Likewise.
35707         * modules/fcntl-safer (Makefile.am): Likewise.
35708         * modules/fcntl (Makefile.am): Likewise.
35709         * modules/file-type (Makefile.am): Likewise.
35710         * modules/fileblocks (Makefile.am): Likewise.
35711         * modules/filemode (Makefile.am): Likewise.
35712         * modules/filenamecat (Makefile.am): Likewise.
35713         * modules/fnmatch (Makefile.am): Likewise.
35714         * modules/fopen-safer (Makefile.am): Likewise.
35715         * modules/fpending (Makefile.am): Likewise.
35716         * modules/fprintftime (Makefile.am): Likewise.
35717         * modules/free (Makefile.am): Likewise.
35718         * modules/fsusage (Makefile.am): Likewise.
35719         * modules/ftruncate (Makefile.am): Likewise.
35720         * modules/fts (Makefile.am): Likewise.
35721         * modules/gc-arcfour (Makefile.am): Likewise.
35722         * modules/gc-des (Makefile.am): Likewise.
35723         * modules/gc-hmac-md5 (Makefile.am): Likewise.
35724         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
35725         * modules/gc-md4 (Makefile.am): Likewise.
35726         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
35727         * modules/gc-sha1 (Makefile.am): Likewise.
35728         * modules/gc (Makefile.am): Likewise.
35729         * modules/getaddrinfo (Makefile.am): Likewise.
35730         * modules/getcwd (Makefile.am): Likewise.
35731         * modules/getdelim (Makefile.am): Likewise.
35732         * modules/getdomainname (Makefile.am): Likewise.
35733         * modules/getgroups (Makefile.am): Likewise.
35734         * modules/gethostname (Makefile.am): Likewise.
35735         * modules/gethrxtime (Makefile.am): Likewise.
35736         * modules/getline (Makefile.am): Likewise.
35737         * modules/getloadavg (Makefile.am): Likewise.
35738         * modules/getlogin_r (Makefile.am): Likewise.
35739         * modules/getndelim2 (Makefile.am): Likewise.
35740         * modules/getopt (Makefile.am): Likewise.
35741         * modules/getpagesize (Makefile.am): Likewise.
35742         * modules/getpass-gnu (Makefile.am): Likewise.
35743         * modules/getpass (Makefile.am): Likewise.
35744         * modules/getsubopt (Makefile.am): Likewise.
35745         * modules/gettime (Makefile.am): Likewise.
35746         * modules/gettimeofday (Makefile.am): Likewise.
35747         * modules/getugroups (Makefile.am): Likewise.
35748         * modules/getusershell (Makefile.am): Likewise.
35749         * modules/glob (Makefile.am): Likewise.
35750         * modules/group-member (Makefile.am): Likewise.
35751         * modules/hard-locale (Makefile.am): Likewise.
35752         * modules/hash (Makefile.am): Likewise.
35753         * modules/hmac-md5 (Makefile.am): Likewise.
35754         * modules/hmac-sha1 (Makefile.am): Likewise.
35755         * modules/human (Makefile.am): Likewise.
35756         * modules/idcache (Makefile.am): Likewise.
35757         * modules/imaxabs (Makefile.am): Likewise.
35758         * modules/imaxdiv (Makefile.am): Likewise.
35759         * modules/inet_ntop (Makefile.am): Likewise.
35760         * modules/inet_pton (Makefile.am): Likewise.
35761         * modules/intprops (Makefile.am): Likewise.
35762         * modules/inttostr (Makefile.am): Likewise.
35763         * modules/inttypes (Makefile.am): Likewise.
35764         * modules/isapipe (Makefile.am): Likewise.
35765         * modules/javaversion (Makefile.am): Likewise.
35766         * modules/lchmod (Makefile.am): Likewise.
35767         * modules/lchown (Makefile.am): Likewise.
35768         * modules/localcharset (Makefile.am): Likewise.
35769         * modules/long-options (Makefile.am): Likewise.
35770         * modules/lstat (Makefile.am): Likewise.
35771         * modules/malloc (Makefile.am): Likewise.
35772         * modules/mathl (Makefile.am): Likewise.
35773         * modules/mbchar (Makefile.am): Likewise.
35774         * modules/md2 (Makefile.am): Likewise.
35775         * modules/md4 (Makefile.am): Likewise.
35776         * modules/md5 (Makefile.am): Likewise.
35777         * modules/memcasecmp (Makefile.am): Likewise.
35778         * modules/memchr (Makefile.am): Likewise.
35779         * modules/memcmp (Makefile.am): Likewise.
35780         * modules/memcoll (Makefile.am): Likewise.
35781         * modules/memcpy (Makefile.am): Likewise.
35782         * modules/memmem (Makefile.am): Likewise.
35783         * modules/memmove (Makefile.am): Likewise.
35784         * modules/mempcpy (Makefile.am): Likewise.
35785         * modules/memrchr (Makefile.am): Likewise.
35786         * modules/memset (Makefile.am): Likewise.
35787         * modules/memxor (Makefile.am): Likewise.
35788         * modules/mkancesdirs (Makefile.am): Likewise.
35789         * modules/mkdir-p (Makefile.am): Likewise.
35790         * modules/mkdir (Makefile.am): Likewise.
35791         * modules/mkdtemp (Makefile.am): Likewise.
35792         * modules/mkstemp (Makefile.am): Likewise.
35793         * modules/mktime (Makefile.am): Likewise.
35794         * modules/modechange (Makefile.am): Likewise.
35795         * modules/mountlist (Makefile.am): Likewise.
35796         * modules/nanosleep (Makefile.am): Likewise.
35797         * modules/obstack (Makefile.am): Likewise.
35798         * modules/openat (Makefile.am): Likewise.
35799         * modules/pagealign_alloc (Makefile.am): Likewise.
35800         * modules/pathmax (Makefile.am): Likewise.
35801         * modules/physmem (Makefile.am): Likewise.
35802         * modules/poll (Makefile.am): Likewise.
35803         * modules/posixtm (Makefile.am): Likewise.
35804         * modules/posixver (Makefile.am): Likewise.
35805         * modules/putenv (Makefile.am): Likewise.
35806         * modules/quote (Makefile.am): Likewise.
35807         * modules/quotearg (Makefile.am): Likewise.
35808         * modules/raise (Makefile.am): Likewise.
35809         * modules/read-file (Makefile.am): Likewise.
35810         * modules/readline (Makefile.am): Likewise.
35811         * modules/readlink (Makefile.am): Likewise.
35812         * modules/readtokens (Makefile.am): Likewise.
35813         * modules/readutmp (Makefile.am): Likewise.
35814         * modules/realloc (Makefile.am): Likewise.
35815         * modules/regex (Makefile.am): Likewise.
35816         * modules/rename-dest-slash (Makefile.am): Likewise.
35817         * modules/rename (Makefile.am): Likewise.
35818         * modules/rijndael (Makefile.am): Likewise.
35819         * modules/rmdir (Makefile.am): Likewise.
35820         * modules/rpmatch (Makefile.am): Likewise.
35821         * modules/safe-read (Makefile.am): Likewise.
35822         * modules/safe-write (Makefile.am): Likewise.
35823         * modules/same-inode (Makefile.am): Likewise.
35824         * modules/same (Makefile.am): Likewise.
35825         * modules/save-cwd (Makefile.am): Likewise.
35826         * modules/savedir (Makefile.am): Likewise.
35827         * modules/setenv (Makefile.am): Likewise.
35828         * modules/settime (Makefile.am): Likewise.
35829         * modules/sha1 (Makefile.am): Likewise.
35830         * modules/sig2str (Makefile.am): Likewise.
35831         * modules/snprintf (Makefile.am): Likewise.
35832         * modules/stat-macros (Makefile.am): Likewise.
35833         * modules/stat-time (Makefile.am): Likewise.
35834         * modules/stdbool (Makefile.am): Likewise.
35835         * modules/stdint (Makefile.am): Likewise.
35836         * modules/stdlib-safer (Makefile.am): Likewise.
35837         * modules/stpcpy (Makefile.am): Likewise.
35838         * modules/stpncpy (Makefile.am): Likewise.
35839         * modules/strcase (Makefile.am): Likewise.
35840         * modules/strcasestr (Makefile.am): Likewise.
35841         * modules/strchrnul (Makefile.am): Likewise.
35842         * modules/strcspn (Makefile.am): Likewise.
35843         * modules/strdup (Makefile.am): Likewise.
35844         * modules/strerror (Makefile.am): Likewise.
35845         * modules/strftime (Makefile.am): Likewise.
35846         * modules/strndup (Makefile.am): Likewise.
35847         * modules/strnlen (Makefile.am): Likewise.
35848         * modules/strpbrk (Makefile.am): Likewise.
35849         * modules/strsep (Makefile.am): Likewise.
35850         * modules/strstr (Makefile.am): Likewise.
35851         * modules/strtod (Makefile.am): Likewise.
35852         * modules/strtoimax (Makefile.am): Likewise.
35853         * modules/strtok_r (Makefile.am): Likewise.
35854         * modules/strtol (Makefile.am): Likewise.
35855         * modules/strtoll (Makefile.am): Likewise.
35856         * modules/strtoul (Makefile.am): Likewise.
35857         * modules/strtoull (Makefile.am): Likewise.
35858         * modules/strtoumax (Makefile.am): Likewise.
35859         * modules/strverscmp (Makefile.am): Likewise.
35860         * modules/sys_socket (Makefile.am): Likewise.
35861         * modules/sys_stat (Makefile.am): Likewise.
35862         * modules/sysexits (Makefile.am): Likewise.
35863         * modules/time_r (Makefile.am): Likewise.
35864         * modules/timegm (Makefile.am): Likewise.
35865         * modules/timespec (Makefile.am): Likewise.
35866         * modules/tmpfile-safer (Makefile.am): Likewise.
35867         * modules/trim (Makefile.am): Likewise.
35868         * modules/unistd-safer (Makefile.am): Likewise.
35869         * modules/unlinkdir (Makefile.am): Likewise.
35870         * modules/unlocked-io (Makefile.am): Likewise.
35871         * modules/userspec (Makefile.am): Likewise.
35872         * modules/utime (Makefile.am): Likewise.
35873         * modules/utimecmp (Makefile.am): Likewise.
35874         * modules/utimens (Makefile.am): Likewise.
35875         * modules/vasnprintf (Makefile.am): Likewise.
35876         * modules/vasprintf (Makefile.am): Likewise.
35877         * modules/vsnprintf (Makefile.am): Likewise.
35878         * modules/xalloc (Makefile.am): Likewise.
35879         * modules/xgetcwd (Makefile.am): Likewise.
35880         * modules/xnanosleep (Makefile.am): Likewise.
35881         * modules/xreadlink (Makefile.am): Likewise.
35882         * modules/xstrtod (Makefile.am): Likewise.
35883         * modules/xstrtol (Makefile.am): Likewise.
35884         * modules/xstrtold (Makefile.am): Likewise.
35885         * modules/yesno (Makefile.am): Likewise.
35886         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
35887
35888 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
35889
35890         * modules/error (Makefile.am): Distribute files through
35891         EXTRA_DIST, not lib_SOURCES.
35892
35893 2006-10-12  Eric Blake  <ebb9@byu.net>
35894
35895         * modules/error (Makefile.am): Distribute files in /lib.
35896         * modules/obstack (Makefile.am): Likewise.
35897
35898 2006-10-12  Bruno Haible  <bruno@clisp.org>
35899
35900         * modules/acl (Makefile.am): Distribute all files in lib/ through
35901         EXTRA_DIST.
35902         * modules/arcfour (Makefile.am): Likewise.
35903         * modules/arctwo (Makefile.am): Likewise.
35904         * modules/argmatch (Makefile.am): Likewise.
35905         * modules/argz (Makefile.am): Likewise.
35906         * modules/atexit (Makefile.am): Likewise.
35907         * modules/backupfile (Makefile.am): Likewise.
35908         * modules/c-strtod (Makefile.am): Likewise.
35909         * modules/c-strtold (Makefile.am): Likewise.
35910         * modules/calloc (Makefile.am): Likewise.
35911         * modules/canon-host (Makefile.am): Likewise.
35912         * modules/canonicalize (Makefile.am): Likewise.
35913         * modules/chdir-long (Makefile.am): Likewise.
35914         * modules/chdir-safer (Makefile.am): Likewise.
35915         * modules/check-version (Makefile.am): Likewise.
35916         * modules/chown (Makefile.am): Likewise.
35917         * modules/cloexec (Makefile.am): Likewise.
35918         * modules/close-stream (Makefile.am): Likewise.
35919         * modules/closeout (Makefile.am): Likewise.
35920         * modules/crc (Makefile.am): Likewise.
35921         * modules/cycle-check (Makefile.am): Likewise.
35922         * modules/des (Makefile.am): Likewise.
35923         * modules/dirfd (Makefile.am): Likewise.
35924         * modules/dirname (Makefile.am): Likewise.
35925         * modules/dup2 (Makefile.am): Likewise.
35926         * modules/euidaccess (Makefile.am): Likewise.
35927         * modules/exclude (Makefile.am): Likewise.
35928         * modules/exitfail (Makefile.am): Likewise.
35929         * modules/fcntl-safer (Makefile.am): Likewise.
35930         * modules/file-type (Makefile.am): Likewise.
35931         * modules/fileblocks (Makefile.am): Likewise.
35932         * modules/filemode (Makefile.am): Likewise.
35933         * modules/filenamecat (Makefile.am): Likewise.
35934         * modules/fnmatch (Makefile.am): Likewise.
35935         * modules/fopen-safer (Makefile.am): Likewise.
35936         * modules/fpending (Makefile.am): Likewise.
35937         * modules/fprintftime (Makefile.am): Likewise.
35938         * modules/free (Makefile.am): Likewise.
35939         * modules/fsusage (Makefile.am): Likewise.
35940         * modules/ftruncate (Makefile.am): Likewise.
35941         * modules/fts (Makefile.am): Likewise.
35942         * modules/gc (Makefile.am): Likewise.
35943         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
35944         * modules/getaddrinfo (Makefile.am): Likewise.
35945         * modules/getcwd (Makefile.am): Likewise.
35946         * modules/getdelim (Makefile.am): Likewise.
35947         * modules/getdomainname (Makefile.am): Likewise.
35948         * modules/getgroups (Makefile.am): Likewise.
35949         * modules/gethostname (Makefile.am): Likewise.
35950         * modules/gethrxtime (Makefile.am): Likewise.
35951         * modules/getline (Makefile.am): Likewise.
35952         * modules/getloadavg (Makefile.am): Likewise.
35953         * modules/getlogin_r (Makefile.am): Likewise.
35954         * modules/getopt (Makefile.am): Likewise.
35955         * modules/getpass (Makefile.am): Likewise.
35956         * modules/getpass-gnu (Makefile.am): Likewise.
35957         * modules/getsubopt (Makefile.am): Likewise.
35958         * modules/gettime (Makefile.am): Likewise.
35959         * modules/gettimeofday (Makefile.am): Likewise.
35960         * modules/getugroups (Makefile.am): Likewise.
35961         * modules/getusershell (Makefile.am): Likewise.
35962         * modules/glob (Makefile.am): Likewise.
35963         * modules/group-member (Makefile.am): Likewise.
35964         * modules/hard-locale (Makefile.am): Likewise.
35965         * modules/hash (Makefile.am): Likewise.
35966         * modules/hmac-md5 (Makefile.am): Likewise.
35967         * modules/hmac-sha1 (Makefile.am): Likewise.
35968         * modules/human (Makefile.am): Likewise.
35969         * modules/idcache (Makefile.am): Likewise.
35970         * modules/imaxabs (Makefile.am): Likewise.
35971         * modules/imaxdiv (Makefile.am): Likewise.
35972         * modules/inet_ntop (Makefile.am): Likewise.
35973         * modules/inet_pton (Makefile.am): Likewise.
35974         * modules/inttostr (Makefile.am): Likewise.
35975         * modules/isapipe (Makefile.am): Likewise.
35976         * modules/lchown (Makefile.am): Likewise.
35977         * modules/long-options (Makefile.am): Likewise.
35978         * modules/lstat (Makefile.am): Likewise.
35979         * modules/malloc (Makefile.am): Likewise.
35980         * modules/mathl (Makefile.am): Likewise.
35981         * modules/mbchar (Makefile.am): Likewise.
35982         * modules/md2 (Makefile.am): Likewise.
35983         * modules/md4 (Makefile.am): Likewise.
35984         * modules/md5 (Makefile.am): Likewise.
35985         * modules/memcasecmp (Makefile.am): Likewise.
35986         * modules/memchr (Makefile.am): Likewise.
35987         * modules/memcmp (Makefile.am): Likewise.
35988         * modules/memcoll (Makefile.am): Likewise.
35989         * modules/memcpy (Makefile.am): Likewise.
35990         * modules/memmem (Makefile.am): Likewise.
35991         * modules/memmove (Makefile.am): Likewise.
35992         * modules/mempcpy (Makefile.am): Likewise.
35993         * modules/memrchr (Makefile.am): Likewise.
35994         * modules/memset (Makefile.am): Likewise.
35995         * modules/memxor (Makefile.am): Likewise.
35996         * modules/mkancesdirs (Makefile.am): Likewise.
35997         * modules/mkdir (Makefile.am): Likewise.
35998         * modules/mkdir-p (Makefile.am): Likewise.
35999         * modules/mkdtemp (Makefile.am): Likewise.
36000         * modules/mkstemp (Makefile.am): Likewise.
36001         * modules/mktime (Makefile.am): Likewise.
36002         * modules/modechange (Makefile.am): Likewise.
36003         * modules/mountlist (Makefile.am): Likewise.
36004         * modules/nanosleep (Makefile.am): Likewise.
36005         * modules/openat (Makefile.am): Likewise.
36006         * modules/pagealign_alloc (Makefile.am): Likewise.
36007         * modules/physmem (Makefile.am): Likewise.
36008         * modules/poll (Makefile.am): Likewise.
36009         * modules/posixtm (Makefile.am): Likewise.
36010         * modules/posixver (Makefile.am): Likewise.
36011         * modules/putenv (Makefile.am): Likewise.
36012         * modules/quote (Makefile.am): Likewise.
36013         * modules/quotearg (Makefile.am): Likewise.
36014         * modules/raise (Makefile.am): Likewise.
36015         * modules/read-file (Makefile.am): Likewise.
36016         * modules/readline (Makefile.am): Likewise.
36017         * modules/readlink (Makefile.am): Likewise.
36018         * modules/readtokens (Makefile.am): Likewise.
36019         * modules/readutmp (Makefile.am): Likewise.
36020         * modules/realloc (Makefile.am): Likewise.
36021         * modules/regex (Makefile.am): Likewise.
36022         * modules/rename (Makefile.am): Likewise.
36023         * modules/rename-dest-slash (Makefile.am): Likewise.
36024         * modules/rijndael (Makefile.am): Likewise.
36025         * modules/rmdir (Makefile.am): Likewise.
36026         * modules/rpmatch (Makefile.am): Likewise.
36027         * modules/safe-read (Makefile.am): Likewise.
36028         * modules/safe-write (Makefile.am): Likewise.
36029         * modules/same (Makefile.am): Likewise.
36030         * modules/save-cwd (Makefile.am): Likewise.
36031         * modules/savedir (Makefile.am): Likewise.
36032         * modules/setenv (Makefile.am): Likewise.
36033         * modules/settime (Makefile.am): Likewise.
36034         * modules/sha1 (Makefile.am): Likewise.
36035         * modules/sig2str (Makefile.am): Likewise.
36036         * modules/snprintf (Makefile.am): Likewise.
36037         * modules/stdlib-safer (Makefile.am): Likewise.
36038         * modules/stpcpy (Makefile.am): Likewise.
36039         * modules/stpncpy (Makefile.am): Likewise.
36040         * modules/strcase (Makefile.am): Likewise.
36041         * modules/strcasestr (Makefile.am): Likewise.
36042         * modules/strchrnul (Makefile.am): Likewise.
36043         * modules/strcspn (Makefile.am): Likewise.
36044         * modules/strdup (Makefile.am): Likewise.
36045         * modules/strerror (Makefile.am): Likewise.
36046         * modules/strftime (Makefile.am): Likewise.
36047         * modules/strndup (Makefile.am): Likewise.
36048         * modules/strnlen (Makefile.am): Likewise.
36049         * modules/strpbrk (Makefile.am): Likewise.
36050         * modules/strsep (Makefile.am): Likewise.
36051         * modules/strstr (Makefile.am): Likewise.
36052         * modules/strtod (Makefile.am): Likewise.
36053         * modules/strtoimax (Makefile.am): Likewise.
36054         * modules/strtok_r (Makefile.am): Likewise.
36055         * modules/strtol (Makefile.am): Likewise.
36056         * modules/strtoll (Makefile.am): Likewise.
36057         * modules/strtoul (Makefile.am): Likewise.
36058         * modules/strtoull (Makefile.am): Likewise.
36059         * modules/strtoumax (Makefile.am): Likewise.
36060         * modules/strverscmp (Makefile.am): Likewise.
36061         * modules/time_r (Makefile.am): Likewise.
36062         * modules/timegm (Makefile.am): Likewise.
36063         * modules/tmpfile-safer (Makefile.am): Likewise.
36064         * modules/unistd-safer (Makefile.am): Likewise.
36065         * modules/unlinkdir (Makefile.am): Likewise.
36066         * modules/userspec (Makefile.am): Likewise.
36067         * modules/utime (Makefile.am): Likewise.
36068         * modules/utimecmp (Makefile.am): Likewise.
36069         * modules/utimens (Makefile.am): Likewise.
36070         * modules/vasnprintf (Makefile.am): Likewise.
36071         * modules/vasprintf (Makefile.am): Likewise.
36072         * modules/vsnprintf (Makefile.am): Likewise.
36073         * modules/xalloc (Makefile.am): Likewise.
36074         * modules/xgetcwd (Makefile.am): Likewise.
36075         * modules/xnanosleep (Makefile.am): Likewise.
36076         * modules/xreadlink (Makefile.am): Likewise.
36077         * modules/xstrtod (Makefile.am): Likewise.
36078         * modules/xstrtol (Makefile.am): Likewise.
36079         * modules/xstrtold (Makefile.am): Likewise.
36080         * modules/yesno (Makefile.am): Likewise.
36081
36082 2006-10-12  Jim Meyering  <jim@meyering.net>
36083
36084         * m4/getloadavg.m4: Revert the change below.
36085
36086         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
36087         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
36088         fail with a symlink, which is what coreutils' ./bootstrap now
36089         creates by default.
36090
36091 2006-10-12  Bruno Haible  <bruno@clisp.org>
36092
36093         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
36094         mingw.
36095         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
36096         MSVC and mingw explicitly.
36097
36098 2006-10-11  Simon Josefsson  <jas@extundo.com>
36099             Bruno Haible  <bruno@clisp.org>
36100
36101         Add support for multiple gnulib-tool invocations in the scope of a
36102         single configure.ac file.
36103         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
36104         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
36105         with the same contents as the _LIBADD variable.
36106         (func_emit_initmacro_start, func_emit_initmacro_end,
36107         func_emit_initmacro_done): New functions.
36108         (func_import, func_create_testdir): Invoke them. Allow the identifiers
36109         gl_LIBOBJS and gl_LTLIBOBJS.
36110
36111 2006-10-11  Bruno Haible  <bruno@clisp.org>
36112
36113         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
36114         (func_create_testdir): Don't create po/Makefile.am, don't invoke
36115         autoreconf. Instead, invoke autopoint explicitly but move back the
36116         *.m4 files from gnulib.
36117
36118 2006-10-11  Bruno Haible  <bruno@clisp.org>
36119
36120         * gnulib-tool (func_usage): Make module names after --create-testdir
36121         optional.
36122         (func_create_testdir): If no module was specified, use nearly all
36123         modules.
36124
36125 2006-10-12  Jim Meyering  <jim@meyering.net>
36126
36127         Big performance improvement for fts-based tools that use FTS_NOSTAT.
36128         Avoid spurious inode-mismatch problems on non-POSIX file systems.
36129         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
36130         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
36131         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
36132         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
36133         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
36134         (fts_set_stat_required): New function.
36135         (fts_open): Defer the calls to fts_stat, if possible or requested.
36136         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
36137         into fts_stat itself.
36138         (fts_read): Perform any required (deferred) fts_stat call.
36139         (fts_build): Likewise, for the directory we're about to open and read.
36140         In the readdir loop, carefully decide whether each entry will require
36141         an eventual call to fts_stat, using dirent.d_type info if available.
36142         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
36143         a command line argument into this function.  Update all callers.
36144         Map a return value of FTS_DOT to FTS_D for a command line argument.
36145         * modules/fts (Depends-on): Add d-type.  Alphabetize.
36146         Thanks to Miklos Szeredi for his tenacity and for the initial
36147         bug report about "find" failing on a FUSE-based file system.
36148
36149         * lib/fts.c (fts_open): Use consistent indentation.
36150
36151 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
36152
36153         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
36154         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
36155         reported by Jim Meyering.  All uses of cache variables renamed
36156         to match Autoconf's.
36157         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
36158         the other one.
36159
36160         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
36161         Fix misspelling in diagnostic.
36162
36163 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
36164
36165         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
36166         defined.  Problem reported by Matthew Woehlke.
36167
36168         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
36169         Add support for Tandem NonStop R series.
36170         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
36171         Use new macro.
36172
36173         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
36174         (has_trailing_slash): Omit size arg; all callers changed.
36175         Omit 'inline', since it doesn't help performance and we'd
36176         need to configure it.
36177         Don't count //, ///, etc. as having a trailing slash.
36178         As a side effect, this removes a C99ism reported by Matthew Woehlke.
36179         (rpl_rename_dest_slash): On failure, use rename's errno rather
36180         than (in some cases) an incorrect or junk errno.
36181         Simplify code by removing need to compute length; this does
36182         cause it to make two passes instead of one over the file name,
36183         but it's worth it.
36184
36185         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
36186         change, since Autoconf's version may no longer be appropriate now
36187         that we are using CVS Autoconf's version.  Add support for Tandem.
36188
36189 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
36190             Bruno Haible  <bruno@clisp.org>
36191
36192         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
36193         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
36194         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
36195         gl_AC_TYPE_LONG_LONG.
36196
36197         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
36198         instead of HAVE_LONG_LONG.
36199         * lib/printf-args.c (printf_fetchargs): Likewise.
36200         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
36201         * lib/vasnprintf.c (VASNPRINTF): Likewise.
36202         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
36203         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
36204         gl_AC_TYPE_LONG_LONG.
36205
36206 2006-10-11  Bruno Haible  <bruno@clisp.org>
36207
36208         * m4/longlong.m4: Add comments.
36209         * m4/ulonglong.m4: Likewise.
36210
36211 2006-10-10  Bruno Haible  <bruno@clisp.org>
36212
36213         Make it possible to #define stpcpy, strdup to aliases.
36214         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
36215         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
36216
36217 2006-10-10  Bruno Haible  <bruno@clisp.org>
36218
36219         Make it possible to #define gcd to an alias.
36220         * lib/gcd.c: Include config.h.
36221
36222 2006-10-10  Bruno Haible  <bruno@clisp.org>
36223
36224         Make it possible to #define c_isascii to an alias.
36225         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
36226         defined. Undefine the macros before defining them, to avoid gcc
36227         warnings.
36228         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
36229         define NO_C_CTYPE_MACROS early.
36230
36231 2006-10-10  Bruno Haible  <bruno@clisp.org>
36232
36233         Make it possible to #define set_program_name to an alias.
36234         * lib/progname.c: Don't undefine set_program_name; instead, undefine
36235         ENABLE_RELOCATABLE early.
36236
36237 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
36238
36239         Port to Tandem NSK OSS, which has 64-bit signed int but at most
36240         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
36241         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
36242         More generally, don't assume that 64-bit signed int is available
36243         if unsigned int is, and vice versa.
36244         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
36245         unsigned symbols, not on their signed counterparts.
36246         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
36247         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
36248         (UINT64_C, UINTMAX_C):
36249         Likewise.
36250         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
36251         unsigned counterparts.
36252         (Have_long_long, Unsigned): New macros.
36253         (Int): Renamed from INT.
36254         (strtoimax): Use the new macros.
36255         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
36256         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
36257         * modules/inttypes (inttypes.h): Substitute
36258         HAVE_UNSIGNED_LONG_LONG_INT.
36259         * modules/stdint (stdint.h): Likewise.
36260         (Files): Add m4/ulonglong.m4.
36261
36262 2006-10-10  Bruno Haible  <bruno@clisp.org>
36263
36264         Fix a gcc -Wshadow warning.
36265         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
36266         to 'bucket'.
36267         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
36268         gl_linked_indexof_from_to): Likewise.
36269         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
36270         Likewise.
36271         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
36272         Likewise.
36273         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
36274         Reported by Eric Blake.
36275
36276 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
36277
36278         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
36279         for NetBSD.  Problem reported by Bruno Haible.
36280
36281 2006-10-09  Jim Meyering  <jim@meyering.net>
36282
36283         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
36284         Patch from Bruno Haible.
36285
36286 2006-10-09  Jim Meyering  <jim@meyering.net>
36287
36288         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
36289         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
36290         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
36291
36292 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
36293
36294         Don't include <config.h> twice; this doesn't work in some cases,
36295         e.g., when config.h has "#define intmax_t long long int" and
36296         we include <config.h>, <inttypes.h>, <config.h> in that order.
36297         Problem reported by Matthew Woehlke in:
36298         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
36299         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
36300         * lib/fts-cycle.c: Don't include config.h.
36301         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
36302         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
36303         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
36304         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
36305         inttypes.h.
36306         * lib/xstrtoumax.c: Likewise.
36307         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
36308         __strtol and the like, so that this module is more like its siblings.
36309         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
36310         Remove; no longer needed now that we assume gnulib inttypes.h.
36311
36312 2006-10-08  Bruno Haible  <bruno@clisp.org>
36313
36314         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
36315         option.
36316
36317 2006-10-07  Jim Meyering  <jim@meyering.net>
36318
36319         * modules/inttypes (inttypes.h): Revert what seems to have been
36320         an inadvertent part of today's change: use "|", not "/" in the
36321         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
36322
36323 2006-10-07  Bruno Haible  <bruno@clisp.org>
36324
36325         * modules/sublist: New file.
36326
36327 2006-10-07  Bruno Haible  <bruno@clisp.org>
36328
36329         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
36330         * modules/argz (argz.h): Likewise.
36331         * modules/arpa_inet (arpa/inet.h): Likewise.
36332         * modules/byteswap (byteswap.h): Likewise.
36333         * modules/configmake (configmake.h): Likewise.
36334         * modules/fcntl (fcntl.h): Likewise.
36335         * modules/fnmatch (fnmatch.h): Likewise.
36336         * modules/getopt (getopt.h): Likewise.
36337         * modules/glob (glob.h): Likewise.
36338         * modules/inttypes (inttypes.h): Likewise.
36339         * modules/netinet_in (netinet/in.h): Likewise.
36340         * modules/poll (poll.h): Likewise.
36341         * modules/stdbool (stdbool.h): Likewise.
36342         * modules/stdint (stdint.h): Likewise.
36343         * modules/sys_select (sys/select.h): Likewise.
36344         * modules/sys_socket (sys/socket.h): Likewise.
36345         * modules/sys_stat (sys/stat.h): Likewise.
36346         * modules/sysexits (sysexits.h): Likewise.
36347         * modules/unistd (unistd.h): Likewise.
36348         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
36349         Add a "DO NOT EDIT" comment to the generated file.
36350         (func_import): Likewise for gnulib-comp.m4.
36351
36352 2006-10-07  Bruno Haible  <bruno@clisp.org>
36353
36354         * lib/gl_sublist.h: New file.
36355         * lib/gl_sublist.c: New file.
36356
36357 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
36358
36359         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
36360         name (relative to the original working directory) and the file
36361         name component (relative to the temporary working directory).  All
36362         callers changed.
36363         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
36364         * lib/mkdir-p.c (make_dir_parents): Likewise.
36365         * lib/mkdir-p.h (make_dir_parents): Likewise.
36366
36367 2006-10-06  Eric Blake  <ebb9@byu.net>
36368
36369         Define several macros for use by the clean-temp module.
36370         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
36371         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
36372         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
36373
36374         * lib/clean-temp.h (close_stream_temp): New declaration.
36375         * lib/clean-temp.c (includes): Pull in headers according to what
36376         other modules are in use.
36377         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
36378
36379 2006-10-06  Bruno Haible  <bruno@clisp.org>
36380
36381         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
36382         instead of fopen, fwriteerror.
36383
36384 2006-10-06  Bruno Haible  <bruno@clisp.org>
36385
36386         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
36387         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
36388         int.
36389         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
36390         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
36391         Return an error indicator.
36392         Suggested by Eric Blake.
36393
36394 2006-10-06  Bruno Haible  <bruno@clisp.org>
36395
36396         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
36397         Reported by Eric Blake.
36398
36399 2006-10-06  Bruno Haible  <bruno@clisp.org>
36400
36401         * modules/closeout (Description): Mention stderr too.
36402
36403 2006-10-06  Bruno Haible  <bruno@clisp.org>
36404         and Paul Eggert  <eggert@cs.ucla.edu>
36405
36406         * lib/closeout.c (close_stdout): Also close stderr.
36407         * lib/closeout.h: Update comment.
36408
36409 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
36410
36411         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
36412         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
36413         * lib/dirchownmod.c: Include lchown.h.
36414         * lib/lchown.c: Don't include files that lchown.h now includes.
36415         Don't declare chown, since lchown.h now does that.
36416         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
36417         (lchown): Define to rpl_chown if lchown is declared but
36418         does not exist.  Declare using a prototype if lchown is not
36419         declared.  Add a copyright notice.
36420         * lib/mkstemp.h: Include <unistd.h>.
36421         * lib/openat.c: Include lchown.h.
36422
36423         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
36424         we now test for that separately.
36425         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
36426         rather than O_NOFOLLOW, when testing whether it's possible to
36427         avoid a race condition reliably.
36428         * lib/savewd.c (savewd_chdir): Likewise.
36429
36430         Remove macros that are no longer needed now that stdint.h is
36431         reliable.
36432         * lib/fsusage.c (UINTMAX_MAX): Remove.
36433         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
36434         * lib/utimecmp.c (SIZE_MAX): Remove.
36435
36436         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
36437
36438         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
36439         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
36440         O_NOATIME works.
36441
36442 2006-10-05  Bruno Haible  <bruno@clisp.org>
36443
36444         * lib/gl_list.h (gl_sortedlist_search_from_to,
36445         gl_sortedlist_indexof_from_to): New declarations.
36446         (gl_list_implementation): New fields sortedlist_search_from_to,
36447         sortedlist_indexof_from_to.
36448         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
36449         inline functions.
36450         * lib/gl_list.c (gl_sortedlist_search_from_to,
36451         gl_sortedlist_indexof_from_to): New functions.
36452         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
36453         function.
36454         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
36455         (gl_array_sortedlist_search_from_to): New function.
36456         (gl_array_list_implementation): Update.
36457         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
36458         function.
36459         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
36460         (gl_carray_sortedlist_search_from_to): New function.
36461         (gl_carray_list_implementation): Update.
36462         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
36463         gl_linked_sortedlist_indexof_from_to): New functions.
36464         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
36465         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
36466         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
36467         gl_tree_sortedlist_indexof_from_to): New functions.
36468         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
36469         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
36470         Update.
36471         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
36472         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
36473         Update.
36474
36475 2006-10-05  Bruno Haible  <bruno@clisp.org>
36476
36477         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
36478         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
36479         (struct gl_list_implementation): Add fields search_from_to,
36480         indexof_from_to. Remove fields search, indexof.
36481         (gl_list_search): Use the search_from_to method.
36482         (gl_list_search_from, gl_list_search_from_to): New functions.
36483         (gl_list_indexof): Use the indexof_from_to method.
36484         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
36485         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
36486         (gl_list_search_from, gl_list_search_from_to): New functions.
36487         (gl_list_indexof): Use the indexof_from_to method.
36488         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
36489         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
36490         gl_array_indexof. Add start_index, end_index arguments.
36491         (gl_array_search_from_to): Renamed from gl_array_search. Add
36492         start_index, end_index arguments.
36493         (gl_array_remove, gl_array_list_implementation): Update.
36494         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
36495         gl_carray_indexof. Add start_index, end_index arguments.
36496         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
36497         start_index, end_index arguments.
36498         (gl_carray_remove, gl_carray_list_implementation): Update.
36499         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
36500         gl_linked_search. Add start_index, end_index arguments.
36501         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
36502         start_index, end_index arguments.
36503         (gl_linked_remove): Update.
36504         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
36505         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
36506         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
36507         field to 'size_t'.
36508         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
36509         gl_tree_search. Add start_index, end_index arguments.
36510         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
36511         start_index, end_index arguments.
36512         (gl_tree_remove): Update.
36513         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
36514         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
36515         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
36516         function.
36517         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
36518         gl_tree_search. Add start_index, end_index arguments.
36519         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
36520         start_index, end_index arguments.
36521         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
36522         Update.
36523         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
36524
36525 2006-10-05  Bruno Haible  <bruno@clisp.org>
36526
36527         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
36528
36529         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
36530         fwriteerror_temp): New declarations.
36531         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
36532         (descriptors): New variable.
36533         (cleanup): First, close the descriptors.
36534         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
36535         fclose_temp, fwriteerror_temp): New functions.
36536
36537 2006-10-04  Jim Meyering  <jim@meyering.net>
36538
36539         * lib/fts.c (fts_open): Tiny comment change.
36540
36541 2006-10-04  Bruno Haible  <bruno@clisp.org>
36542
36543         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
36544         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
36545         gl_LOCK_BODY.
36546         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
36547         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
36548         gl_LOCK_EARLY_BODY.
36549         (gl_LOCK): Require gl_LOCK_BODY.
36550
36551 2006-10-04  Bruno Haible  <bruno@clisp.org>
36552
36553         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
36554         (gl_oset_search_atleast): New declaration.
36555         (struct gl_oset_implementation): Add field 'search_atleast'.
36556         (gl_oset_search_atleast): New inline function.
36557         * lib/gl_oset.c (gl_oset_search_atleast): New function.
36558         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
36559         (gl_array_oset_implementation): Update.
36560         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
36561         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
36562         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
36563
36564 2006-10-04  Bruno Haible  <bruno@clisp.org>
36565
36566         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
36567
36568 2006-10-03  Bruno Haible  <bruno@clisp.org>
36569
36570         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
36571         from gl_avltreehash_list_implementation.
36572
36573 2006-10-03  Bruno Haible  <bruno@clisp.org>
36574
36575         * lib/gl_oset.c (gl_oset_add): Fix return type.
36576
36577 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
36578
36579         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
36580
36581 2006-10-02  Eric Blake  <ebb9@byu.net>
36582
36583         * modules/strnlen (Depends-on): Add extensions.
36584
36585 2006-10-02  Eric Blake  <ebb9@byu.net>
36586
36587         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
36588         definition in 2.60+.
36589
36590 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
36591
36592         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
36593         checks.
36594
36595 2006-10-02  Bruno Haible  <bruno@clisp.org>
36596
36597         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
36598         to the AUTOMAKE_OPTIONS.
36599         Reported by Jim Meyering.
36600
36601 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
36602
36603         Work around bug in Solaris 10 /proc file system:
36604         /proc/self/fd/NNN/.. isn't the parent directory of
36605         the directory whose file descriptor is NNN.  This needs to
36606         be worked around at run time, not compile time, since a
36607         program might be built on Solaris 8, where things work, and
36608         run on Solaris 10.
36609         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
36610         to use the following interface instead:
36611         (OPENAT_BUFFER_SIZE): New macro.
36612         (openat_proc_name): New function.
36613         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
36614         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
36615         Likewise.
36616         * lib/openat-proc.c: New file.
36617         * modules/openat (Files): Add lib/openat-proc.c.
36618         (Depends-on): Add same-inode, stdbool.
36619         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
36620
36621 2006-09-29  Bruno Haible  <bruno@clisp.org>
36622
36623         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
36624         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
36625         argument. Set stdout_closed before testing for ferror, not after.
36626         (fwriteerror, fwriteerror_no_ebadf): New functions.
36627
36628 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36629
36630         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
36631
36632 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
36633
36634         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
36635         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
36636
36637 2006-09-28  Jim Meyering  <jim@meyering.net>
36638
36639         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
36640         Include <unistd.h>.
36641
36642 2006-09-28  Bruno Haible  <bruno@clisp.org>
36643
36644         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
36645         * modules/linkedhash-list (Depends-on): Likewise.
36646         * modules/rbtreehash-list (Depends-on): Likewise.
36647
36648 2006-09-28  Bruno Haible  <bruno@clisp.org>
36649
36650         * lib/strndup.h: Simplify the redefinition of strndup.
36651         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
36652         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
36653
36654 2006-09-28  Bruno Haible  <bruno@clisp.org>
36655
36656         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
36657         * lib/gl_linkedhash_list.c: Likewise.
36658         * lib/gl_rbtreehash_list.c: Likewise.
36659
36660 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
36661
36662         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
36663         getaddrinfo.
36664
36665         * lib/__fpending.h: Don't include <stdio_ext.h> unless
36666         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
36667         it causes <stdio_ext.h> to cause a compile-time error.
36668         Problem reported by Nelson H. F. Beebe.
36669         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
36670         of HAVE_DECL___PENDING.
36671
36672         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
36673         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
36674         declaration.
36675
36676 2006-09-27  Jim Meyering  <jim@meyering.net>
36677
36678         This file could end up with a definition for a function
36679         named __strndup, rather than rpl_strndup on a system with
36680         incomplete weak_alias support.
36681         * lib/strndup.c (strndup): Rename from __strndup.
36682         Remove #defines that used to map __strndup to strndup.
36683         Don't use K&R prototypes.
36684         Remove LIBC-related code, since this file is not sync'd with glibc.
36685         * lib/strndup.h: Revamp, accordingly.
36686         * m4/strndup.m4: Modernize.
36687
36688 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
36689
36690         * modules/savewd (Depends-on): Add 'raise'.
36691         * lib/savewd.c: Include <signal.h>, for 'raise'.
36692
36693 2006-09-26  Jim Meyering  <jim@meyering.net>
36694
36695         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
36696         when we detect Darwin 8.7.0's acl_get_file bug.
36697         Rearrange to perform the new (below) run-test while $LIBS
36698         contains any acl-related library.  Set USE_ACL at the end.
36699         (gl_ACL_GET_FILE): New function.
36700
36701 2006-09-26  Eric Blake  <ebb9@byu.net>
36702
36703         * lib/verror.c: Include <config.h> unconditionally.
36704
36705 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
36706
36707         * modules/clock-time (Maintainer): Add self.
36708         * modules/getlogin_r (Depends-on): Add extensions.
36709
36710 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36711
36712         * modules/clock-time: New module.
36713         * modules/nanosleep (Depends-on): Add clock-time.
36714         * modules/gethrxtime (Depends-on): Likewise.
36715         * modules/gettime (Depends-on): Likewise.
36716         * modules/settime (Depends-on): Likewise.
36717
36718         * modules/fts-lgpl: Depend on openat.
36719         * modules/mkancesdirs: Depend on savewd.
36720         * modules/mkdir-p: Likewise.
36721
36722 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36723
36724         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
36725
36726         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
36727         `gl_have_arbitrary_file_name_length_limit' to
36728         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
36729         actually works between configure runs.
36730
36731 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36732             Bruno Haible  <bruno@clisp.org>
36733
36734         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
36735
36736 2006-09-25  Jim Meyering  <jim@meyering.net>
36737
36738         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
36739         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
36740
36741 2006-09-25  Eric Blake  <ebb9@byu.net>
36742
36743         * gnulib-tool (func_import, func_create_testdir): Fix typos in
36744         exec's in 2006-09-18 patch when shuffling fds.
36745
36746 2006-09-25  Bruno Haible  <bruno@clisp.org>
36747
36748         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
36749         Reported by Jim Meyering.
36750
36751 2006-09-24  Jim Meyering  <jim@meyering.net>
36752
36753         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
36754         compare a pointer against a literal "0".  That caused failures with
36755         at least HP-UX's hpcc.
36756
36757 2006-09-22  Simon Josefsson  <jas@extundo.com>
36758
36759         * modules/gc-sha1:
36760         * modules/gc-md4:
36761         * modules/gc-hmac-sha1:
36762         * modules/gc-hmac-md5:
36763         * modules/gc-des:
36764         * modules/gc-arcfour: Distribute more files.
36765
36766 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36767
36768         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
36769         (gl_linked_iterator_from_to): Initialize struct completely.
36770         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
36771         (gl_tree_iterator_from_to): Likewise
36772         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
36773         * lib/gl_array_list.c [lint] (gl_array_iterator)
36774         (gl_array_iterator_from_to): Likewise.
36775         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
36776         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
36777         (gl_carray_iterator_from_to): Likewise.
36778
36779         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
36780         * lib/md4.c (md4_process_block): Remove unused variable.
36781         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
36782         parentheses for clarity.
36783
36784 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36785
36786         * modules/bison-i18n (Depends-on): Add gettext.
36787
36788 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36789
36790         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
36791         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
36792         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
36793         also add missing comma that caused broken test.
36794         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
36795         stdlib.h, for `abort'.
36796         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
36797         variables.
36798         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
36799         include unistd.h if present, for `rmdir'.
36800         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
36801         variables.
36802         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
36803         in the process include standard headers for prototypes.
36804         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
36805         gets declared on GNU/Linux.
36806         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
36807         unistd.h, for `rmdir'.
36808         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
36809
36810         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
36811         always true.
36812         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
36813
36814         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
36815
36816 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36817
36818         * gnulib-tool (func_version): Create output all at once.  This
36819         may help avoid triggering unnecessary SIGPIPEs, and at any
36820         rate it doesn't hurt.
36821
36822 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36823             Bruno Haible  <bruno@clisp.org>
36824
36825         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
36826         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
36827         * m4/signed.m4 (bh_C_SIGNED): Likewise.
36828
36829         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
36830         (gl_FUNC_VASPRINTF): Invoke it.
36831
36832 2006-09-22  Bruno Haible  <bruno@clisp.org>
36833
36834         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
36835         getloadavg.c as first argument.
36836
36837 2006-09-22  Bruno Haible  <bruno@clisp.org>
36838
36839         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
36840         at the beginning of the gl_INIT macro.
36841         * modules/getloadavg (configure.ac): Pass $gl_source_base to
36842         gl_GETLOADAVG.
36843
36844 2006-09-22  Bruno Haible  <bruno@clisp.org>
36845
36846         * gnulib-tool (func_create_megatestdir): Don't include the config-h
36847         module.
36848         Suggested by Ralf Wildenhues.
36849
36850 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
36851
36852         Import this patch from libc:
36853
36854         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
36855
36856         * lib/regex_internal.c (re_string_reconstruct): Handle
36857         offset < pstr->valid_raw_len && pstr->offsets_needed case.
36858         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
36859         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
36860         re_string_context_at.
36861
36862         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
36863         now requires it.
36864         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
36865         gl_REGEX now does it for us.
36866         (gl_REGEX): Add test taken from
36867         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
36868
36869         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
36870         Check that large offsets work.  Modernize Autoconf usages.
36871         Prefer "yes" to mean a good thing rather than a bad.
36872         Don't put "#define mkstemp" in config.h, as this might interfere
36873         with standard system headers that "#define mkstemp mkstemp64".
36874
36875         * modules/mkstemp (Depends-on): Add extensions, so that
36876         mkstemp is visible on some platforms.
36877         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
36878         (Include): Change to "mkstemp.h" from <stdlib.h>.
36879         (Files): Add mkstemp.h.
36880
36881         * lib/mkstemp.h: New file, since some standard headers
36882         #define mkstemp.
36883         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
36884         Include "mkstemp.h".
36885         Make the _LIBC code resemble glibc original more,
36886         e.g., use K&R style.
36887         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
36888         (mkstemp): Remove, since mkstemp.h does this for us.
36889         * lib/stdlib--.h: Include mkstemp.h.
36890
36891         Import this patch from libc:
36892
36893         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
36894
36895         * lib/tempname.c (__gen_tempname): Change attempts_min
36896         into a macro.  Use preprocessor to decide how to initialize
36897         attempts [Coverity CID 67].
36898
36899 2006-09-20  Bruno Haible  <bruno@clisp.org>
36900
36901         * lib/mkdtemp.c: Import from libc.
36902         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
36903                 * sysdeps/posix/tempname.c (__gen_tempname): Change
36904                 attempts_min into a macro.  Use preprocessor to decide how to
36905                 initialize attempts [Coverity CID 67].
36906         2001-11-27  Paul Eggert  <eggert@twinsun.com>
36907                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
36908                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
36909
36910 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36911
36912         * gnulib-tool (func_exit): New function, to allow to pass the
36913         exit status portably through the trap.  Use everywhere.
36914         (--help, --version): Signal a write error.
36915         (trap): catch SIGPIPE, for write errors.
36916         Exit at the end of the trap, with the correct exit status.
36917
36918 2006-09-19  Karl Berry  <karl@gnu.org>
36919
36920         * doc/gnulib.texi: note about the license texinfo files.
36921
36922 2006-09-19  Eric Blake  <ebb9@byu.net>
36923
36924         * gnulib-tool: Avoid space-tab.
36925
36926 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
36927
36928         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
36929         that prevented coreutils 6.1 from building.  Problem reported
36930         by Petter Reinholdtsen.
36931
36932 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
36933
36934         * gnulib-tool (avoidlist): Fix typo that broke options like
36935         --avoid=lock that are used by coreutils bootstrap.
36936
36937 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
36938
36939         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
36940         more systematically.
36941
36942 2006-09-18  Jim Meyering  <jim@meyering.net>
36943
36944         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
36945
36946 2006-09-18  Bruno Haible  <bruno@clisp.org>
36947
36948         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
36949
36950 2006-09-18  Bruno Haible  <bruno@clisp.org>
36951
36952         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
36953         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
36954         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
36955         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
36956         * m4/gettext.m4: Require autoconf >= 2.52.
36957         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
36958         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
36959         of gl_cv_header_inttypes_h.
36960
36961 2006-09-18  Bruno Haible  <bruno@clisp.org>
36962
36963         * lib/javaversion.c: Include configmake.h.
36964
36965 2006-09-18  Bruno Haible  <bruno@clisp.org>
36966
36967         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
36968         avoid that the while loops be executed in a subshell.
36969
36970 2006-09-18  Bruno Haible  <bruno@clisp.org>
36971
36972         * MODULES.html.sh (func_module): Break long lines.
36973         Suggested by Bruce Korb <bkorb@gnu.org>.
36974
36975 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36976
36977         Speed up by a factor of 1.12.
36978         * gnulib-tool (nl): New variable.
36979         (func_import): Rewrite include directive extraction to only read each
36980         directive once.
36981
36982 2006-09-17  Bruno Haible  <bruno@clisp.org>
36983
36984         * modules/javaversion (Makefile.am): Remove DEFS setting.
36985         (Depends-on): Add configmake, for PKGDATADIR definition.
36986
36987 2006-09-17  Bruno Haible  <bruno@clisp.org>
36988
36989         * gnulib-tool (func_create_testdir): Rewrite all files at once.
36990
36991 2006-09-17  Bruno Haible  <bruno@clisp.org>
36992
36993         * gnulib-tool (func_append): New function, stolen from libtool.m4.
36994         (func_modules_transitive_closure, func_modules_add_dummy,
36995         func_modules_to_filelist, func_import, func_create_testdir,
36996         func_create_megatestdir, ...): Use it wherever possible.
36997         Suggested by Ralf Wildenhues.
36998
36999 2006-09-16  Karl Berry  <karl@gnu.org>
37000
37001         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
37002         to avoid sectioning errors.
37003         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
37004         [ifinfo]: blank line after @center-ed titles.
37005         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
37006         Spell FSF address consistently with others.
37007         (These changes approved by rms.)
37008
37009 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
37010
37011         Speed up by a factor of 1.61.
37012         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
37013         already checked module names again.
37014
37015 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
37016
37017         Speed up by a factor of 1.13.
37018         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
37019         for new_files, and the input to func_add_or_update.
37020
37021 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
37022
37023         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
37024         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
37025
37026 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
37027
37028         * modules/mkancesdirs (Depends-on): Add fcntl.
37029         * modules/savewd: New file.
37030         * MODULES.html.sh (File system functions): Add savewd.
37031
37032         * modules/configmake (Makefile.am): Add support for the
37033         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
37034
37035 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
37036
37037         * m4/savewd.m4: New file.
37038
37039 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
37040
37041         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
37042         (dirchownmod): New arg FD.  All callers changed.
37043         Use FD rather than opening the directory ourself, as opening is
37044         now the caller's responsibility.
37045         * lib/dirchownmod.h: Likewise.
37046         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
37047         hosts that require <sys/types.h> before <sys/stat.h>.  Include
37048         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
37049         (test_dir): Remove.
37050         (mkancesdirs): Return length of prefix of FILE that has already
37051         been made, or -2 if there is a child doing the work.  Redo
37052         algorithm so that it is O(N) rather than O(N**2).  Optimize away
37053         ".", and treat ".." specially since it might stray back into
37054         already-created areas.  Use a subprocess if necessary.  New arg
37055         WD; all users changed.  MAKE_DIR function should now return 1
37056         if it creates a directory that is not readable.  Return -2 if
37057         a child process is spun off.
37058         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
37059         Adjust signature to match code.
37060         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
37061         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
37062         all users changed.
37063         * lib/savewd.c, lib/savewd.h: New files.
37064
37065 2006-09-15  Jim Meyering  <jim@meyering.net>
37066
37067         * modules/rename-dest-slash: New module.
37068         * MODULES.html.sh (posix_compat): Add it here.
37069
37070         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
37071
37072 2006-09-15  Jim Meyering  <jim@meyering.net>
37073
37074         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
37075         file.
37076
37077         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
37078
37079 2006-09-15  Jim Meyering  <jim@meyering.net>
37080
37081         * lib/rename-dest-slash.c (has_trailing_slash): Use
37082         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
37083         (rpl_rename_dest_slash): Perform the cheaper trailing slash
37084         test before testing whether SRC is a directory.
37085         Suggestions from Bruno Haible.
37086
37087         Avoid a warning about an unused variable.
37088         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
37089         into the #ifdef block where it's used.
37090
37091         * lib/rename-dest-slash.c: New file.
37092
37093 2006-09-14  Bruno Haible  <bruno@clisp.org>
37094
37095         * lib/allocsa.c: Include <config.h> unconditionally.
37096         * lib/asnprintf.c: Likewise.
37097         * lib/asprintf.c: Likewise.
37098         * lib/c-strcasecmp.c: Likewise.
37099         * lib/c-strcasestr.c: Likewise.
37100         * lib/c-strncasecmp.c: Likewise.
37101         * lib/c-strstr.c: Likewise.
37102         * lib/classpath.c: Likewise.
37103         * lib/clean-temp.c: Likewise.
37104         * lib/concatpath.c: Likewise.
37105         * lib/copy-file.c: Likewise.
37106         * lib/csharpcomp.c: Likewise.
37107         * lib/csharpexec.c: Likewise.
37108         * lib/execute.c: Likewise.
37109         * lib/fatal-signal.c: Likewise.
37110         * lib/findprog.c: Likewise.
37111         * lib/fwriteerror.c: Likewise.
37112         * lib/gl_array_list.c: Likewise.
37113         * lib/gl_array_oset.c: Likewise.
37114         * lib/gl_avltree_list.c: Likewise.
37115         * lib/gl_avltree_oset.c: Likewise.
37116         * lib/gl_avltreehash_list.c: Likewise.
37117         * lib/gl_carray_list.c: Likewise.
37118         * lib/gl_linked_list.c: Likewise.
37119         * lib/gl_linkedhash_list.c: Likewise.
37120         * lib/gl_list.c: Likewise.
37121         * lib/gl_oset.c: Likewise.
37122         * lib/gl_rbtree_list.c: Likewise.
37123         * lib/gl_rbtree_oset.c: Likewise.
37124         * lib/gl_rbtreehash_list.c: Likewise.
37125         * lib/imaxabs.c: Likewise.
37126         * lib/imaxdiv.c: Likewise.
37127         * lib/javacomp.c: Likewise.
37128         * lib/javaexec.c: Likewise.
37129         * lib/javaversion.c: Likewise.
37130         * lib/linebreak.c: Likewise.
37131         * lib/localcharset.c: Likewise.
37132         * lib/lock.c: Likewise.
37133         * lib/mbchar.c: Likewise.
37134         * lib/mbswidth.c: Likewise.
37135         * lib/mkdtemp.c: Likewise.
37136         * lib/pipe.c: Likewise.
37137         * lib/printf-args.c: Likewise.
37138         * lib/printf-parse.c: Likewise.
37139         * lib/progname.c: Likewise.
37140         * lib/progreloc.c: Likewise.
37141         * lib/readlink.c: Likewise.
37142         * lib/sh-quote.c: Likewise.
37143         * lib/stpcpy.c: Likewise.
37144         * lib/stpncpy.c: Likewise.
37145         * lib/strcasecmp.c: Likewise.
37146         * lib/strcasestr.c: Likewise.
37147         * lib/strcspn.c: Likewise.
37148         * lib/striconv.c: Likewise.
37149         * lib/strncasecmp.c: Likewise.
37150         * lib/strnlen1.c: Likewise.
37151         * lib/strstr.c: Likewise.
37152         * lib/strtok_r.c: Likewise.
37153         * lib/tls.c: Likewise.
37154         * lib/tmpdir.c: Likewise.
37155         * lib/unicodeio.c: Likewise.
37156         * lib/unsetenv.c: Likewise.
37157         * lib/vasnprintf.c: Likewise.
37158         * lib/vasprintf.c: Likewise.
37159         * lib/wait-process.c: Likewise.
37160         * lib/xallocsa.c: Likewise.
37161         * lib/xsetenv.c: Likewise.
37162         * lib/xstriconv.c: Likewise.
37163
37164 2006-09-13  Simon Josefsson  <jas@extundo.com>
37165
37166         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
37167         that internally, suggested by Ralf Wildenhues
37168         <Ralf.Wildenhues@gmx.de>.
37169
37170 2006-09-13  Simon Josefsson  <jas@extundo.com>
37171
37172         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
37173         @LIBOBJS@.
37174         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
37175
37176 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
37177
37178         * lib/_fpending.c: Include <config.h> unconditionally, since we no
37179         longer worry about uses that don't define HAVE_CONFIG_H.
37180         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
37181         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
37182         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
37183         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
37184         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
37185         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
37186         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
37187         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
37188         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
37189         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
37190         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
37191         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
37192         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
37193         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
37194         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
37195         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
37196         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
37197         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
37198         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
37199         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
37200         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
37201         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
37202         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
37203         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
37204         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
37205         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
37206         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
37207         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
37208         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
37209         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
37210         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
37211         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
37212         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
37213         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
37214         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
37215         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
37216         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
37217         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
37218         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
37219         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
37220         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
37221         Likewise.
37222
37223 2006-09-13  Eric Blake  <ebb9@byu.net>
37224
37225         * lib/getopt.c: Fix typo in last commit.
37226
37227 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
37228
37229         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
37230         dgettext.
37231
37232 2006-09-12  Jim Meyering  <jim@meyering.net>
37233
37234         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
37235         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
37236         Reported by Nelson H. F. Beebe.
37237
37238 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
37239
37240         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
37241         program_invocation_name and program_invocation_short_name are
37242         initialized.
37243         * lib/argp-namefrob.h: Move declarations of program_invocation_name
37244         and program_invocation_short_name to argp.h, so they are visible
37245         to user programs.
37246         * lib/argp.h: Likewise
37247
37248 2006-09-10  Bruno Haible  <bruno@clisp.org>
37249
37250         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
37251         m4/inttypes_h.m4, m4/uintmax_t.m4.
37252
37253 2006-09-10  Bruno Haible  <bruno@clisp.org>
37254
37255         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
37256         gl_AC_TYPE_UINTMAX_T.
37257
37258 2006-09-10  Bruno Haible  <bruno@clisp.org>
37259
37260         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
37261
37262 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
37263
37264         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
37265         convention.  Text proposed by Bruno Haible.
37266         (struct argp_option): Document the use of N_() wrappers.
37267
37268         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
37269         '\v', and translate the two parts separately, instead of feeding
37270         the whole string to gettext.  This allows to exclude
37271         '\v' from the strings visible to the translator by writing doc
37272         strings as N_("..") "\v" N_("..").
37273
37274 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
37275
37276         * config/srclist.txt: Undo latest change; the bug was fixed.
37277
37278 2006-09-09  Bruno Haible  <bruno@clisp.org>
37279
37280         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
37281         assignments if building a library without libtool.
37282         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
37283         in func_emit_lib_Makefile_am.
37284         (func_import): When building a static library libfoo.a, arrange to
37285         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
37286         (func_create_testdir): Likewise.
37287         * modules/gc (configure.ac, Makefile.am): If building statically,
37288         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
37289         * modules/iconvme (configure.ac, Makefile.am): Likewise.
37290         * modules/striconv (configure.ac, Makefile.am): Likewise.
37291         Based on a suggestion by Ralf Wildenhues.
37292
37293 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
37294
37295         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
37296         Check for unistd.h too, since Autoconf doesn't assume POSIX.
37297         Also:
37298
37299         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
37300         Add year_2050_test to catch glibc bug 2821
37301         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
37302
37303         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
37304         Prefer #ifdef to #if.
37305
37306         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
37307         Return from 'main' instead of calling 'exit'.
37308
37309 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
37310
37311         * lib/mktime.c (guess_time_tm): Fix bug where mktime
37312         returned the maximum time_t value rather than (time_t) -1.
37313         Problem originally reported by William Bardwell
37314         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
37315
37316         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
37317         Moved to here ...
37318         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
37319         ... from here.
37320
37321 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
37322
37323         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
37324         2821 is fixed.
37325
37326 2006-09-08  Jim Meyering  <jim@meyering.net>
37327
37328         Don't make generated files read-only.  That would bother too many
37329         people.  However, do retain the ability to work when targets are
37330         read-only: remove the destination and temporary files before writing
37331         them (when generated via sed or echo), or by using the -f option for
37332         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
37333         * modules/alloca-opt, modules/argz, modules/arpa_inet:
37334         * modules/byteswap, modules/configmake, modules/fcntl:
37335         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
37336         * modules/localcharset, modules/netinet_in, modules/poll:
37337         * modules/stdbool, modules/stdint, modules/sys_select:
37338         * modules/sys_socket, modules/sys_stat, modules/sysexits:
37339
37340 2006-09-08  Jim Meyering  <jim@meyering.net>
37341
37342         Avoid new build failure on FreeBSD 6.0.
37343         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
37344         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
37345         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
37346
37347 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
37348
37349         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
37350
37351 2006-09-07  Jim Meyering  <jim@meyering.net>
37352
37353         Fix global typo in last change: use chmod u-w, not chmod u-x.
37354         Spotted by Paul Eggert and Bruce Korb.
37355         * modules/alloca-opt, modules/argz, modules/arpa_inet:
37356         * modules/byteswap, modules/configmake, modules/fcntl:
37357         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
37358         * modules/localcharset, modules/netinet_in, modules/poll:
37359         * modules/stdbool, modules/stdint, modules/sys_select:
37360         * modules/sys_socket, modules/sys_stat, modules/sysexits:
37361
37362 2006-09-06  Jim Meyering  <jim@meyering.net>
37363
37364         Make generated files be read-only.
37365         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
37366         Ensure that each generated file is now read-only.
37367         * modules/argz: Likewise.
37368         * modules/arpa_inet: Likewise.
37369         * modules/byteswap: Likewise.
37370         * modules/configmake: Likewise.
37371         * modules/fcntl: Likewise.
37372         * modules/fnmatch: Likewise.
37373         * modules/getopt: Likewise.
37374         * modules/glob: Likewise.
37375         * modules/inttypes: Likewise.
37376         * modules/netinet_in: Likewise.
37377         * modules/poll: Likewise.
37378         * modules/stdbool: Likewise.
37379         * modules/stdint: Likewise.
37380         * modules/sys_select: Likewise.
37381         * modules/sys_socket: Likewise.
37382         * modules/sys_stat: Likewise.
37383         * modules/sysexits: Likewise.
37384         * modules/localcharset: Same as above, but continue using temporary
37385         file named "t-$@" (why different?) rather than the "$@-t" used
37386         everywhere else.
37387
37388         * modules/sysexits (Makefile.am): Replace literal occurrences
37389         of "sysexit.h" more readable, and more consistent, "$@".
37390
37391 2006-09-06  Bruno Haible  <bruno@clisp.org>
37392
37393         * modules/striconv: New file.
37394         * modules/xstriconv: New file.
37395         * MODULES.html.sh (Internationalization functions): Add striconv,
37396         xstriconv.
37397
37398 2006-09-06  Bruno Haible  <bruno@clisp.org>
37399
37400         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
37401         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
37402         not using libtool correctly.
37403
37404 2006-09-06  Bruno Haible  <bruno@clisp.org>
37405
37406         * lib/striconv.h: New file.
37407         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
37408         iconvstring.c.
37409         * lib/xstriconv.h: New file.
37410         * lib/xstriconv.c: New file.
37411
37412 2006-09-06  Bruno Haible  <bruno@clisp.org>
37413
37414         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
37415         lib_..._LDFLAGS.
37416
37417 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
37418
37419         * lib/argz_.h: Sync from Libtool.
37420
37421         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
37422                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
37423
37424         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
37425
37426 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
37427
37428         * modules/trim: New file.
37429
37430 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
37431
37432         * lib/trim.h: New file.
37433         * lib/trim.c: New file.
37434
37435 2006-09-05  Bruno Haible  <bruno@clisp.org>
37436
37437         * MODULES.html.sh (String handling): Add trim.
37438
37439 2006-09-04  Karl Berry  <karl@gnu.org>
37440
37441         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
37442         until next release.
37443
37444 2006-09-03  Bruno Haible  <bruno@clisp.org>
37445
37446         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
37447         correctly.
37448
37449 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
37450
37451         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
37452         not gl_GETLOADAVG.  Omit unneeded semicolons.
37453         Problems reported by Ralf Wildenhues in
37454         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
37455         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
37456         at the end, which is the usual gnulib style.
37457
37458         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
37459         of doing all the work ourselves.
37460         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
37461         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
37462
37463 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
37464
37465         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
37466         Problem reported by Ralf Wildenhues in
37467         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
37468
37469         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
37470         HAVE_STRUCT_STATFS_F_FSTYPENAME.
37471
37472 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
37473
37474         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
37475         yesterday's patch by changing test -n to test -z.
37476
37477 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
37478
37479         * modules/getloadavg (Files): Add m4/getloadavg.m4.
37480         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
37481         the former is now obsolescent.
37482
37483         * modules/chdir-long (Depends-on): Add fcntl.
37484
37485 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
37486
37487         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
37488         obsolescent, and programs should use gnulib instead.
37489         * m4/getloadavg.m4: New file, with contents taken from Autoconf
37490         but with prefixes changed.
37491
37492 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
37493
37494         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
37495         or stdbool.h, because they might not exist while configuring.
37496
37497         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
37498         Don't include unistd.h or limits.h; not needed, since chdir-long.h
37499         does that for us.
37500         (O_DIRECTORY): Remove.
37501
37502 2006-08-31  Eric Blake  <ebb9@byu.net>
37503
37504         * gnulib-tool: Don't let emacs change spaces to TAB.
37505
37506 2006-08-31  Bruno Haible  <bruno@clisp.org>
37507
37508         * gnulib-tool: When calling func_import more than once, do it in a
37509         subshell.
37510         Reported by Eric Blake <ebb9@byu.net>.
37511
37512 2006-08-31  Bruno Haible  <bruno@clisp.org>
37513
37514         * gnulib-tool (nl): Remove variable.
37515         (sed_transform_lib_file): Use more robust test for config-h module.
37516         (func_import): Fix typo in 2006-08-25 patch.
37517
37518 2006-08-31  Bruno Haible  <bruno@clisp.org>
37519
37520         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
37521         specified, augment Makefile.am variables instead of assigning them.
37522
37523 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
37524
37525         Work around a bug in both the Linux and SunOS 64-bit kernels:
37526         nanosleep mishandles sleeps for longer than 2**31 seconds.
37527         Problem reported by Frank v Waveren in
37528         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
37529         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
37530         Check for nanosleep bug.
37531         (LIB_NANOSLEEP): Append clock_gettime library if needed.
37532
37533 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
37534
37535         Work around a bug in both the Linux and SunOS 64-bit kernels:
37536         nanosleep mishandles sleeps for longer than 2**31 seconds.
37537         Problem reported by Frank v Waveren in
37538         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
37539         * lib/nanosleep.c (BILLION): New constant.
37540         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
37541         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
37542         implementation.
37543
37544 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
37545
37546         * modules/nanosleep (Depends-on): Add gettime.
37547
37548 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
37549         and Simon Josefsson  <jas@extundo.com>
37550         and Oskar Liljeblad  <oskar@osk.mine.nu>
37551
37552         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
37553         * gnulib-tool (func_import): New license type 'unmodifiable license
37554         text'.
37555         * modules/fdl: Use it.  Longer description.
37556         * module/gpl, module/lgpl: New files.
37557
37558 2006-08-30  Jim Meyering  <jim@meyering.net>
37559
37560         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
37561         shadowing the parameter.
37562
37563 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
37564
37565         Sync from Libtool:
37566
37567         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
37568
37569         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
37570         sharing with gnulib.  Report by Eric Blake.
37571
37572 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
37573
37574         * modules/isapipe: New file.
37575         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
37576
37577 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
37578
37579         * modules/configmake (Makefile.am): Add a comment, and omit
37580         the CONFIGMAKE_ prefix from generated macro names.  Suggested
37581         by Bruno Haible.
37582
37583 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
37584
37585         * m4/isapipe.m4: New file.
37586
37587 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
37588
37589         * lib/isapipe.c, lib/isapipe.h: New files.
37590
37591 2006-08-29  Jim Meyering  <jim@meyering.net>
37592
37593         * modules/configmake (Makefile.am): Make configmake.h depend on
37594         Makefile.  Otherwise, a stale configmake.h could hang around.
37595
37596 2006-08-29  Eric Blake  <ebb9@byu.net>
37597
37598         * lib/error.c (error_at_line, print_errno_message): Match libc, after
37599         resolution of upstream bug 3044.
37600
37601 2006-08-29  Bruno Haible  <bruno@clisp.org>
37602
37603         * modules/localcharset (Depends-on): Add configmake.
37604         (Makefile.am): Remove setting of LIBDIR through DEFS.
37605
37606 2006-08-29  Bruno Haible  <bruno@clisp.org>
37607
37608         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
37609         defined.
37610
37611 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
37612
37613         * modules/fcntl: New file.
37614         * modules/chdir-safer (Depends-on): Add fcntl.
37615         * modules/fts: Likewise.
37616         * modules/mkdir-p: Likewise.
37617
37618         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
37619         This undoes the most recent change, since we're now addressing the
37620         problem in a different way.
37621
37622         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
37623         into output, since the output might be called Makefile.am even
37624         if $makefile_name is something different.
37625         (func_import): Use $makefile_am rather than
37626         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
37627         empty.
37628
37629         * modules/inttypes (Files): Add m4/inttypes-h.m4.
37630
37631 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
37632
37633         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
37634         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
37635         recent change to stdint.m4, since we're now addressing the problem in a
37636         different way.
37637
37638 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
37639
37640         * m4/fcntl_h.m4: New file.
37641
37642 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
37643
37644         * lib/fcntl_.h: New file.
37645         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
37646         the fcntl module.
37647         * lib/dirchownmod.c: Likewise.
37648         * lib/fts.c: Likewise.
37649
37650         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
37651         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
37652         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
37653         just before including <inttypes.h>, to avoid circular inclusion.
37654
37655 2006-08-28  Jim Meyering  <jim@meyering.net>
37656
37657         * doc/visibility.texi: Actually read and correct the grammar of the
37658         sentence affected by yesterday's change.
37659
37660 2006-08-28  Eric Blake  <ebb9@byu.net>
37661
37662         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
37663         needs wrapper.
37664
37665 2006-08-28  Eric Blake  <ebb9@byu.net>
37666
37667         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
37668
37669 2006-08-28  Eric Blake  <ebb9@byu.net>
37670
37671         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
37672
37673 2006-08-28  Bruno Haible  <bruno@clisp.org>
37674
37675         * modules/c-strstr: New file, from GNU gettext.
37676         * MODULES.html.sh (String handling): Add c-strstr.
37677
37678 2006-08-28  Bruno Haible  <bruno@clisp.org>
37679
37680         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
37681         macros.
37682         Reported by Eric Blake.
37683
37684 2006-08-28  Bruno Haible  <bruno@clisp.org>
37685
37686         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
37687         (VASNPRINTF): Return a string of length > INT_MAX without failing.
37688         * lib/vasprintf.c: Include errno.h, limits.h.
37689         (EOVERFLOW): New fallback definition.
37690         (vasprintf): Test here whether the string length is > INT_MAX.
37691         * lib/vsnprintf.c: Include errno.h, limits.h.
37692         (EOVERFLOW): New fallback definition.
37693         (vsnprintf): Fix bug when generated string was too long for the buffer.
37694         Test here whether the string length is > INT_MAX.
37695
37696 2006-08-28  Bruno Haible  <bruno@clisp.org>
37697
37698         * lib/inttypes_.h (SCNX*): Remove definitions.
37699         Reported by Eric Blake.
37700
37701 2006-08-28  Bruno Haible  <bruno@clisp.org>
37702
37703         * lib/c-strstr.h: New file, from GNU gettext.
37704         * lib/c-strstr.c: New file, from GNU gettext.
37705
37706 2006-08-28  Bruno Haible  <bruno@clisp.org>
37707
37708         * gnulib-tool: Reorder some statements.
37709
37710 2006-08-28  Bruno Haible  <bruno@clisp.org>
37711
37712         * gnulib-tool: New option --makefile-name.
37713         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
37714         $makefile_name.
37715         (func_import): Write $makefile_name to the cache file, and read it from
37716         there unless explicitly specified. Use $makefile_name as file name
37717         instead of Makefile.am. Adjust the recommendations accordingly.
37718
37719 2006-08-28  Bruno Haible  <bruno@clisp.org>
37720
37721         * gnulib-tool (func_verify_module): Check against misapplying patch.
37722
37723 2006-08-28  Bruno Haible  <bruno@clisp.org>
37724
37725         * gnulib-tool (func_relativize, func_relconcat): New functions.
37726         Give an error if --local-dir is given with --update.
37727         Remove trailing slashes from $local_gnulib_dir.
37728         (func_import): Store the relativized $local_gnulib_dir in
37729         gnulib-cache.m4, and read it from there if not specified explicitly.
37730
37731 2006-08-28  Bruno Haible  <bruno@clisp.org>
37732
37733         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
37734         is the current directory. Respect also $local_gnulib_dir.
37735
37736 2006-08-28  Bruno Haible  <bruno@clisp.org>
37737             Simon Josefsson  <jas@extundo.com>
37738
37739         BeOS portability.
37740         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
37741
37742 2006-08-27  Jim Meyering  <jim@meyering.net>
37743
37744         * doc/visibility.texi: Remove duplicate word: "pointer".
37745
37746 2006-08-26  Bruno Haible  <bruno@clisp.org>
37747
37748         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
37749         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
37750         (Makefile.am): Create inttypes.h from inttypes_.h.
37751         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
37752
37753         * modules/imaxabs: New file.
37754
37755         * modules/imaxdiv: New file.
37756
37757 2006-08-26  Bruno Haible  <bruno@clisp.org>
37758
37759         * m4/inttypes.m4: New file.
37760         * m4/_inttypes_h.m4: Remove file.
37761         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
37762         PRI_MACROS_BROKEN.
37763         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
37764
37765         * m4/imaxabs.m4: New file.
37766
37767         * m4/imaxdiv.m4: New file.
37768
37769 2006-08-26  Bruno Haible  <bruno@clisp.org>
37770
37771         * lib/inttypes_.h: New file.
37772         * lib/inttypes.h: Remove file.
37773         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
37774
37775         * lib/imaxabs.c: New file.
37776
37777         * lib/imaxdiv.c: New file.
37778
37779 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
37780
37781         New config-h module, so that "make" output needn't be cluttered
37782         by -DHAVE_CONFIG_H.
37783         * MODULES.html.sh (Support for building libraries and executables):
37784         Add config-h.
37785         * modules/config-h: New file.
37786         * gnulib-tool (nl, sed_transform_lib_file): New vars.
37787         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
37788         the config-h module is used.
37789
37790         New configmake module, so that "make" output needn't be cluttered
37791         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
37792         * MODULES.html.sh (Support for building libraries and executables):
37793         Add configmake.
37794         * modules/configmake: New file.
37795
37796 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
37797
37798         * m4/config-h.m4: New file.
37799
37800 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
37801
37802         * config/srclist.txt: Add elisp-comp.
37803
37804 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
37805
37806         * MODULES.html.sh (Support for building libraries and executables):
37807         Add elisp-comp.
37808         * build-aux/elisp-comp: New file.
37809         * modules/elisp-comp: New file.
37810
37811 2006-08-24  Bruno Haible  <bruno@clisp.org>
37812
37813         * gnulib-tool (func_create_testdir): Use non-default values of
37814         sourcebase and m4base.
37815
37816 2006-08-24  Bruno Haible  <bruno@clisp.org>
37817
37818         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
37819         HTML structure.
37820
37821 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
37822
37823         * modules/openat (Depends-on): Add lchown.
37824
37825 2006-08-23  Bruno Haible  <bruno@clisp.org>
37826
37827         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
37828         of gl_LOCK_EARLY instead of gl_LOCK.
37829
37830 2006-08-23  Bruno Haible  <bruno@clisp.org>
37831
37832         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
37833         on OSF/1 to no.
37834         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
37835
37836 2006-08-23  Bruno Haible  <bruno@clisp.org>
37837
37838         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
37839         as unusable.
37840
37841         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
37842         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
37843         (gl_LOCK): New macro.
37844
37845 2006-08-22  Simon Josefsson  <jas@extundo.com>
37846
37847         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
37848         to md5 module.
37849
37850 2006-08-22  Simon Josefsson  <jas@extundo.com>
37851
37852         * MODULES.html.sh: Add "Support for maintaining and release
37853         projects".
37854
37855         * build-aux/gnupload: New file, from coreutils.
37856
37857 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
37858
37859         Avoid the need for AC_LIBSOURCES in m4 macros.
37860         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
37861         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
37862         * modules/check-version (EXTRA_DIST): Add check-version.h.
37863         * modules/crc (EXTRA_DIST): Add crc.h.
37864         * modules/des (EXTRA_DIST): Add des.h.
37865         * modules/gc (EXTRA_DIST): Add gc.h.
37866         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
37867         * modules/getline (EXTRA_DIST): Add getline.h.
37868         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
37869         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
37870         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
37871         * modules/md2 (EXTRA_DIST): Add md2.h.
37872         * modules/md4 (EXTRA_DIST): Add md4.h.
37873         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
37874         * modules/read-file (EXTRA_DIST): Add read-file.h.
37875         * modules/readline (EXTRA_DIST): Add readline.h.
37876         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
37877         rijndael-api-fst.h.
37878
37879 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
37880
37881         * m4/rijndael.m4 (gl_ARCFOUR):
37882         * m4/arctwo.m4 (gl_ARCTWO):
37883         * m4/check-version.m4 (gl_CHECK_VERSION):
37884         * m4/crc.m4 (gl_CRC):
37885         * m4/des.m4 (gl_DES):
37886         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
37887         * m4/gc.m4 (gl_GC):
37888         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
37889         * m4/getline.m4 (gl_FUNC_GETLINE):
37890         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
37891         * m4/hmac-md5.m4 (gl_HMAC_MD5):
37892         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
37893         * m4/md2.m4 (gl_MD2):
37894         * m4/md4.m4 (gl_MD4):
37895         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
37896         * m4/read-file.m4 (gl_FUNC_READ_FILE):
37897         * m4/readline.m4 (gl_FUNC_READLINE):
37898         * m4/rijndael.m4 (gl_RIJNDAEL):
37899         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
37900         to get the necessary .h files and whatnot.
37901
37902 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
37903
37904         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
37905         gnulib rather than the other way around.
37906         * config/srclistvars.sh (COREUTILS): Remove.
37907
37908 2006-08-22  Jim Meyering  <jim@meyering.net>
37909
37910         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
37911
37912         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
37913
37914 2006-08-22  Eric Blake  <ebb9@byu.net>
37915
37916         * modules/regexprops-generic: New file.
37917         * MODULES.html.sh (Support for building documentation): List it.
37918
37919 2006-08-22  Eric Blake  <ebb9@byu.net>
37920
37921         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
37922         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
37923         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
37924         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
37925
37926 2006-08-22  Bruno Haible  <bruno@clisp.org>
37927
37928         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
37929         and lib_LTLIBRARIES like the other lib_* variables.
37930
37931 2006-08-22  Bruno Haible  <bruno@clisp.org>
37932
37933         * build-aux/x-to-1.in: New file, from GNU gettext.
37934
37935 2006-08-22  Bruno Haible  <bruno@clisp.org>
37936
37937         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
37938         <utmpx.h> exists.
37939
37940 2006-08-22  Bruno Haible  <bruno@clisp.org>
37941
37942         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
37943         <utmpx.h> exists.
37944
37945 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
37946
37947         BeOS portability.
37948         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
37949         exist.
37950         Problem reported by Bruno Haible.
37951
37952 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
37953
37954         Avoid the need for AC_LIBSOURCES in m4 macros.
37955         * modules/acl (EXTRA_DIST): Add acl.h.
37956         * modules/argmatch (Files): Add m4/argmatch.m4.
37957         (configure.ac): Add gl_ARGMATCH.
37958         (EXTRA_DIST): Renamed from lib_SOURCES, for
37959         consistency with the other modules.  Remove argmatch.c.
37960         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
37961         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
37962         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
37963         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
37964         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
37965         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
37966         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
37967         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
37968         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
37969         * modules/closeout (EXTRA_DIST): Add closeout.h.
37970         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
37971         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
37972         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
37973         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
37974         dirname.h; remove basename.c and stripslash.c.
37975         * modules/exclude (EXTRA_DIST): Add exclude.h.
37976         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
37977         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
37978         * modules/file-type (EXTRA_DIST): Add file-type.h.
37979         * modules/filemode (EXTRA_DIST): Add filemode.h.
37980         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
37981         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
37982         * modules/fpending (EXTRA_DIST): Add __fpending.h.
37983         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
37984         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
37985         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
37986         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
37987         * modules/getdate (EXTRA_DIST): Add getdate.c.
37988         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
37989         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
37990         * modules/getpass (EXTRA_DIST): Add getpass.h.
37991         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
37992         * modules/group-member (EXTRA_DIST): Add group-member.h.
37993         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
37994         * modules/hash (EXTRA_DIST): Add hash.h.
37995         * modules/human (EXTRA_DIST): Add human.h.
37996         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
37997         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
37998         * modules/lchown (EXTRA_DIST): Add lchown.h.
37999         * modules/long-options (EXTRA_DIST): Add long-options.h.
38000         * modules/lstat (EXTRA_DIST): Add lstat.h.
38001         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
38002         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
38003         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
38004         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
38005         * modules/memxor (EXTRA_DIST): Add memxor.h.
38006         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
38007         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
38008         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
38009         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
38010         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
38011         * modules/physmem (EXTRA_DIST): Add physmem.h.
38012         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
38013         * modules/posixver (EXTRA_DIST): Add posixver.h.
38014         * modules/quote (EXTRA_DIST): Add quote.h.
38015         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
38016         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
38017         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
38018         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
38019         regex_internal.h regexec.c.
38020         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
38021         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
38022         * modules/same (EXTRA_DIST): Add same.h.
38023         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
38024         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
38025         * modules/savedir (EXTRA_DIST): Add savedir.h.
38026         * modules/sha1 (EXTRA_DIST): Add sha1.h.
38027         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
38028         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
38029         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
38030         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
38031         * modules/strdup (EXTRA_DIST): Add strdup.h.
38032         * modules/strftime (EXTRA_DIST): Add strftime.h.
38033         * modules/strndup (EXTRA_DIST): Add strndup.h.
38034         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
38035         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
38036         * modules/time_r (EXTRA_DIST): Add time_r.h.
38037         * modules/timespec (EXTRA_DIST): Add timespec.h.
38038         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
38039         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
38040         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
38041         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
38042         * modules/userspec (EXTRA_DIST): Add userspec.h.
38043         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
38044         * modules/utimens (EXTRA_DIST): Add utimens.h.
38045         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
38046         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
38047         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
38048         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
38049         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
38050         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
38051         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
38052         * modules/yesno (EXTRA_DIST): Add yesno.h.
38053
38054 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
38055
38056         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
38057
38058         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
38059         * m4/dev-ino.m4, same-inode.m4: Remove.
38060
38061         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
38062         * m4/acl.m4 (AC_FUNC_ACL):
38063         * m4/backupfile.m4 (gl_BACKUPFILE):
38064         * m4/c-strtod.m4 (gl_C99_STRTOLD):
38065         * m4/canon-host.m4 (gl_CANON_HOST):
38066         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
38067         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
38068         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
38069         * m4/cloexec.m4 (gl_CLOEXEC):
38070         * m4/close-stream.m4 (gl_CLOSE_STREAM):
38071         * m4/closeout.m4 (gl_CLOSEOUT):
38072         * m4/dirfd.m4 (gl_FUNC_DIRFD):
38073         * m4/dirname.m4 (gl_DIRNAME):
38074         * m4/exclude.m4 (gl_EXCLUDE):
38075         * m4/exitfail.m4 (gl_EXITFAIL):
38076         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
38077         * m4/file-type.m4 (gl_FILE_TYPE):
38078         * m4/filemode.m4 (gl_FILEMODE):
38079         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
38080         * m4/fpending.m4 (gl_FUNC_FPENDING):
38081         * m4/fprintftime.m4 (gl_FPRINTFTIME):
38082         * m4/fts.m4 (gl_FUNC_FTS):
38083         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
38084         * m4/getdate.m4 (gl_GETDATE):
38085         * m4/gethrxtime.m4 (gl_GETHRXTIME):
38086         * m4/getpagesize.m4 (gl_GETPAGESIZE):
38087         * m4/getpass.m4 (gl_FUNC_GETPASS):
38088         * m4/gettime.m4 (gl_GETTIME):
38089         * m4/getugroups.m4 (gl_GETUGROUPS):
38090         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
38091         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
38092         * m4/hard-locale.m4 (gl_HARD_LOCALE):
38093         * m4/hash.m4 (gl_HASH):
38094         * m4/idcache.m4 (gl_IDCACHE):
38095         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
38096         * m4/lchown.m4 (gl_FUNC_LCHOWN):
38097         * m4/long-options.m4 (gl_LONG_OPTIONS):
38098         * m4/lstat.m4 (gl_FUNC_LSTAT):
38099         * m4/md5.m4 (gl_MD5):
38100         * m4/memcasecmp.m4 (gl_MEMCASECMP):
38101         * m4/memcoll.m4 (gl_MEMCOLL):
38102         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
38103         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
38104         * m4/memxor.m4 (gl_MEMXOR):
38105         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
38106         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
38107         * m4/modechange.m4 (gl_MODECHANGE):
38108         * m4/mountlist.m4 (gl_MOUNTLIST):
38109         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
38110         * m4/openat.m4 (gl_FUNC_OPENAT):
38111         * m4/pathmax.m4 (gl_PATHMAX):
38112         * m4/physmem.m4 (gl_PHYSMEM):
38113         * m4/posixtm.m4 (gl_POSIXTM):
38114         * m4/posixver.m4 (gl_POSIXVER):
38115         * m4/quote.m4 (gl_QUOTE):
38116         * m4/quotearg.m4 (gl_QUOTEARG):
38117         * m4/readtokens.m4 (gl_READTOKENS):
38118         * m4/readutmp.m4 (gl_READUTMP):
38119         * m4/regex.m4 (gl_REGEX):
38120         * m4/safe-read.m4 (gl_SAFE_READ):
38121         * m4/safe-write.m4 (gl_SAFE_WRITE):
38122         * m4/same.m4 (gl_SAME):
38123         * m4/save-cwd.m4 (gl_SAVE_CWD):
38124         * m4/savedir.m4 (gl_SAVEDIR):
38125         * m4/settime.m4 (gl_SETTIME):
38126         * m4/sha1.m4 (gl_SHA1):
38127         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
38128         * m4/stat-macros.m4 (gl_STAT_MACROS):
38129         * m4/stat-time.m4 (gl_STAT_TIME):
38130         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
38131         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
38132         * m4/strdup.m4 (gl_FUNC_STRDUP):
38133         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
38134         * m4/strndup.m4 (gl_FUNC_STRNDUP):
38135         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
38136         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
38137         * m4/time_r.m4 (gl_TIME_R):
38138         * m4/timespec.m4 (gl_TIMESPEC):
38139         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
38140         * m4/unlinkdir.m4 (gl_UNLINKDIR):
38141         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
38142         * m4/userspec.m4 (gl_USERSPEC):
38143         * m4/utimecmp.m4 (gl_UTIMECMP):
38144         * m4/utimens.m4 (gl_UTIMENS):
38145         * m4/xalloc.m4 (gl_XALLOC):
38146         * m4/xgetcwd.m4 (gl_XGETCWD):
38147         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
38148         * m4/xreadlink.m4 (gl_XREADLINK):
38149         * m4/xstrtod.m4 (gl_XSTRTOD):
38150         * m4/yesno.m4 (gl_YESNO):
38151         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
38152         to get the necessary .h files and whatnot.
38153
38154 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
38155             Bruno Haible  <bruno@clisp.org>
38156
38157         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
38158         /bin/sh understanding of '!' conditional negation.
38159
38160 2006-08-21  Jim Meyering  <jim@meyering.net>
38161
38162         * modules/openat (Depends-on): Really alphabetize.
38163
38164         * modules/acl (Depends-on): Add error and quote.
38165
38166         * check-module (find_included_lib_files): Add at-func.c to the
38167         ok-to-include-more-than-once white list.
38168
38169         * modules/openat (Depends-on): Add lstat.  Alphabetize.
38170
38171 2006-08-21  Bruno Haible  <bruno@clisp.org>
38172
38173         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
38174         Emit a pkgdata_DATA variable only if some snippets add contents to it.
38175         Reported by Martin Lambers <marlam@marlam.de>.
38176
38177 2006-08-21  Bruno Haible  <bruno@clisp.org>
38178
38179         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
38180         specify an installation location, don't emit a noinst_LIBRARIES or
38181         noinst_LTLIBRARIES assignment.
38182
38183 2006-08-21  Bruno Haible  <bruno@clisp.org>
38184
38185         BeOS portability.
38186         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
38187         BeOS has mbrtowc() but no <wctype.h>.
38188
38189 2006-08-21  Bruno Haible  <bruno@clisp.org>
38190
38191         BeOS portability.
38192         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
38193         exist.
38194
38195 2006-08-21  Bruno Haible  <bruno@clisp.org>
38196
38197         BeOS portability.
38198         * lib/mbchar.h: Include <wctype.h> only if it exists.
38199
38200 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
38201
38202         Remove files that are no longer needed by their respective modules.
38203         * m4/obstack.m4: Remove.
38204         * m4/strerror_r.m4: Remove.
38205         * m4/uint32_t.m4: Remove.
38206         * m4/uintptr_t.m4: Remove.
38207         * m4/ullong_max.m4: Remove.
38208         * m4/xstrtoimax.m4: Remove.
38209         * m4/xstrtoumax.m4: Remove.
38210
38211         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
38212         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
38213         dependencies now capture this.
38214
38215         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
38216         Do not use AC_LIBSOURCES, since gnulib modules now do this.
38217         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
38218         * m4/human.m4 (gl_HUMAN): Likewise.
38219         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
38220         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
38221
38222         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
38223
38224         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
38225         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
38226         stdint.
38227         * m4/human.m4 (gl_HUMAN): Likewise.
38228         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
38229         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
38230         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
38231         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
38232         * m4/xstrtol (gl_XSTRTOL): Likewise.
38233
38234         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
38235         AC_TYPE_LONG_LONG_INT.
38236         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
38237         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
38238         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
38239         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
38240
38241         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
38242         on stdbool.
38243
38244         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
38245         (gl_PREREQ_XSTRTOUL): Remove.
38246
38247         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
38248
38249         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
38250         mode.
38251
38252 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
38253
38254         Add and change modules to make it easier for coreutils to use
38255         gnulib-tool.
38256         * modules/backupfile (Files): Remove m4/d-ino.m4.
38257         (Depends-on): Add d-ino.
38258         * modules/cycle-check (Depends-on): Add stdint.
38259         (lib_SOURCES): Add cycle-check.h.
38260         * modules/d-ino: New module.
38261         * modules/d-type: New module.
38262         * modules/error (Files): Remove m4/strerror_r.m4.
38263         * modules/filemode (Files): Add m4/st_dm_mode.m4.
38264         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
38265         m4/inttypes_h.m4, m4/uintmax_t.m4.
38266         (Depends-on): Add stdint.
38267         (lib_SOURCES): Add fsusage.h.
38268         * modules/getcwd (Files): Remove d-ino.m4.
38269         (Depends-on): Add d-ino.
38270         * modules/getndelim2 (Depends-on): Add stdint.
38271         * modules/glob (Files): Remove m4/d-type.m4.
38272         (Depends-on): Add d-type.
38273         * modules/host-os: New module.
38274         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
38275         m4/inttypes_h.m4, m4/uintmax_t.m4.
38276         * Depends-on: Add stdint.
38277         (lib_SOURCES): Add human.h.
38278         * modules/inttostr (Files): Remove m4/intmax_t.m4,
38279         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
38280         m4/uintmax_t.m4, m4/ulonglong.m4.
38281         (Depends-on): Add stdint.
38282         (EXTRA_DIST): Add inttostr.h.
38283         * modules/lchmod: New module.
38284         * modules/link-follow: New module.
38285         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
38286         (Depends-on): Add lchmod.
38287         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
38288         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
38289         (Depends-on): Add stdint.
38290         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
38291         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
38292         (Depends-on): Add stdint.
38293         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
38294         * modules/perl: New module.
38295         * modules/regex (Depends-on): Add stdint.
38296         * modules/rmdir-errno: New module.
38297         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
38298         m4/intmax_t.m4.
38299         (Depends-on): Add stdint.
38300         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
38301         m4/uintmax_t.m4.
38302         (Depends-on): Add stdint.
38303         * modules/unlink-busy: New module.
38304         * modules/utimecmp (Depends-on): Add stdint.
38305         * modules/uptime: New module.
38306         * modules/winsz-ioctl: New module.
38307         * modules/winsz-termios: New module.
38308         * modules/xnanosleep (Depends-on): Add nanosleep.
38309         * modules/ullong_max: Remove.
38310         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
38311         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
38312         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
38313         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
38314         (Depends-on): Add inttypes.
38315         (lib_SOURCES): Add xstrtol.h.
38316         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
38317         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
38318         * MODULES.html.sh: Move 'assert' into the assert section.
38319         Move 'dummy' into the linking section.
38320         Remove ullong_max.
38321         Add section for compatibility checks for POSIX:2001 functions,
38322         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
38323         winsz-ioctl, and winsz-termios into it.
38324         Add lchmod.
38325         Add top-level Misc section and put host-os, perl, and uptime
38326         into it.
38327
38328 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
38329
38330         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
38331         now assume the stdint module.  Do not include inttypes.h.
38332         * lib/fsusage.h: Likewise.
38333         * lib/getndelim2.c: Likewise.
38334         * lib/human.h: Likewise.
38335         * lib/inttostr.h: Likewise.
38336         * lib/obstack.c: Likewise.
38337         * lib/regex_internal.h: Likewise.
38338         * lib/tempname.c: Likewise.
38339         * lib/utimecmp.c: Likewise.
38340         * lib/xstrtol.h: Likewise.
38341
38342         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
38343
38344         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
38345         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
38346         * lib/xtime.h: Likewise.
38347
38348 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
38349
38350         * modules/openat (Files): Add lib/fchmodat.c.
38351         Fixes problem reported by Jay Youngman.
38352
38353 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
38354
38355         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
38356         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
38357
38358 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
38359             Bruno Haible  <bruno@clisp.org>
38360
38361         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
38362         and is a script that invokes bison. Tighten the code. Add comments.
38363
38364 2006-08-18  Jim Meyering  <jim@meyering.net>
38365
38366         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
38367         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
38368         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
38369         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
38370
38371 2006-08-18  Bruno Haible  <bruno@clisp.org>
38372
38373         * modules/bison-i18n: New file.
38374         * MODULES.html.sh (Internationalization functions): Add it.
38375
38376 2006-08-18  Bruno Haible  <bruno@clisp.org>
38377
38378         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
38379         sys/statvfs.h. When getmntinfo was found, check its declaration and
38380         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
38381
38382 2006-08-18  Bruno Haible  <bruno@clisp.org>
38383
38384         * m4/bison-i18n.m4: New file, from bison.
38385
38386 2006-08-18  Bruno Haible  <bruno@clisp.org>
38387
38388         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
38389         (ME_DUMMY): Treat "kernfs" as a dummy.
38390         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
38391
38392 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
38393
38394         Update from coreutils.
38395
38396         2006-08-15  Jim Meyering  <jim@meyering.net>
38397
38398         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
38399
38400         2006-01-17  Jim Meyering  <jim@meyering.net>
38401
38402         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
38403
38404         2006-01-11  Jim Meyering  <jim@meyering.net>
38405
38406         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
38407         Check for the lchmod function.
38408
38409 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
38410
38411         Update from coreutils.
38412
38413         * lib/__fpending.h: Add copyright notice.
38414         * lib/fprintftime.h: Likewise.
38415         * lib/savedir.c: Use (C) in copyright notice.
38416         * lib/savedir.h: Likewise.
38417
38418         2006-08-15  Jim Meyering  <jim@meyering.net>
38419
38420         * lib/at-func.c: New file, with the logic of all emulated at-functions.
38421         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
38422         in support of the EXPECTED_ERRNO macro.
38423         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
38424         definitions.  Instead, define the appropriate symbols and include
38425         "at-func.c".
38426         * lib/mkdirat.c (mkdirat): Likewise.
38427         * lib/fchmodat.c (fchmodat): Likewise.
38428         (ENOSYS): Remove definition.
38429         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
38430         it.  Don't include "unistd--.h" -- it wasn't ever used.
38431
38432         2006-01-17  Jim Meyering  <jim@meyering.net>
38433
38434         Rewrite fts.c not to change the current working directory,
38435         by using openat, fstatat, fdopendir, etc..
38436
38437         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
38438         (HAVE_OPENAT_SUPPORT): Define.
38439         [_LIBC] (fchdir): Don't undef or define; no longer used.
38440         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
38441         Now, this `function' always succeeds, and consumes its file descriptor
38442         parameter -- so callers must not close such FDs.  Update callers.
38443         (diropen_fd, opendirat, cwd_advance_fd): New functions.
38444         (diropen): Add parameter, SP.  Adjust all callers.
38445         Implement using diropen_fd, rather than open.
38446         (fts_open): Initialize new member, fts_cwd_fd.
38447         Remove fts_rft-setting code.
38448         (fts_close): Close fts_cwd_fd, if necessary.
38449         (__opendir2): Define in terms of opendir or opendirat,
38450         depending on whether the FST_NOCHDIR flag is set.
38451         (fts_build): Since fts_safe_changedir consumes its FD, and since
38452         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
38453         and close the dup'd file descriptor upon failure.
38454         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
38455         (fts_safe_changedir): Tweak semantics to reflect that this function
38456         now calls cwd_advance_fd and hence consumes its FD argument.
38457         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
38458         [struct FTS] (fts_rft): Remove now-unused member.
38459         [struct FTS] (fts_cycle.state): Improve comment.
38460
38461         * lib/openat.c (openat_needs_fchdir): New function.
38462         * lib/openat.h (openat_needs_fchdir): Declare it.
38463
38464 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
38465
38466         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
38467         Problem and fix reported by Pádraig Brady in
38468         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
38469
38470 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
38471
38472         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
38473
38474 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
38475
38476         * lib/memcoll.c (memcoll): Optimize for the common case where the
38477         arguments are bytewise equal.
38478
38479 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
38480
38481         * doc/regexprops-generic.texi: Add a copyright notice.
38482
38483 2006-08-15  Bruno Haible  <bruno@clisp.org>
38484
38485         * modules/tmpdir (License): Change to LGPL.
38486
38487 2006-08-15  Bruno Haible  <bruno@clisp.org>
38488
38489         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
38490         module.
38491
38492 2006-08-14  Simon Josefsson  <jas@extundo.com>
38493
38494         * config/srclist.txt: Add gnupload.
38495
38496 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
38497
38498         Change copyright notice from LGPL 2 to GPL 2, since that's the
38499         standard form used in the gnulib repository.
38500         * tests/test-lock.c: Likewise.
38501         * tests/test-stdint.c: Likewise.
38502         * tests/test-tls.c: Likewise.
38503
38504         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
38505         prelude-manager.  User shorter URLs for GNU projects, without '?'.
38506         Add copyright notice.
38507
38508         * check-module: Add copyright notice.  Output a copyright
38509         notice if "--version" is specified.
38510         * modules/COPYING: New file.
38511         * tests/test-getaddrinfo.c: Add copyright notice.
38512         * tests/test-verify.c: Likewise.
38513
38514 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
38515
38516         Change copyright notice from LGPL 2 to GPL 2, since that's the
38517         standard form used in the gnulib repository.
38518         * lib/lock.c: LGPL -> GPL.
38519         * lib/lock.h: Likewise.
38520         * lib/strnlen1.c: Likewise.
38521         * lib/strnlen1.h: Likewise.
38522         * lib/tls.c: Likewise.
38523         * lib/tls.h: Likewise.
38524         * lib/tmpdir.c: Likewise.
38525
38526         * lib/TODO: Remove; this belongs only in coreutils.
38527
38528 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
38529
38530         Add copyright notices to long-enough files that lack them, since
38531         otherwise the files aren't clearly free.  Use the same notice that
38532         getdate.texi already uses.
38533         * doc/alloca-opt.texi: Add copyright notice.
38534         * doc/alloca.texi: Likewise.
38535         * doc/ctime.texi: Likewise.
38536         * doc/functions.texi: Likewise.
38537         * doc/gcd.texi: Likewise.
38538         * doc/gnulib-tool.texi: Likewise.
38539         * doc/inet_ntoa.texi: Likewise.
38540         * doc/visibility.texi: Likewise.
38541
38542         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
38543         * doc/quote.texi: Add copyright notice.
38544
38545         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
38546         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
38547         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
38548         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
38549         is now obsolete, and give a pointer to the Sun list.
38550         Add copyright notice.
38551
38552 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
38553
38554         * config/srclistvars.sh: Add copyright notice.
38555
38556 2006-08-14  Eric Blake  <ebb9@byu.net>
38557
38558         Import the following change from libc:
38559
38560         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
38561
38562         Upstream bug 2997.
38563         * lib/misc/error.c: Add space between program name and message if file
38564         name is missing.
38565
38566 2006-08-12  Karl Berry  <karl@gnu.org>
38567
38568         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
38569         remove, these originate in gnulib now.
38570
38571 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
38572
38573         * doc/Makefile (standards.info standards.html standards.dvi):
38574         Also depend on make-stds.texi.
38575
38576 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
38577
38578         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
38579         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
38580
38581         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
38582         in wchar_t.  Problem reported by Eric Blake.
38583
38584         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
38585         LEN is smaller than SIZE.  Suggested by Bruno Haible.
38586         Also, help the compiler to keep LEN in a register.
38587
38588 2006-08-11  Eric Blake  <ebb9@byu.net>
38589
38590         * users.txt: Sort.  Add tar.
38591
38592 2006-08-11  Bruno Haible  <bruno@clisp.org>
38593
38594         * users.txt: New file.
38595
38596 2006-08-11  Bruno Haible  <bruno@clisp.org>
38597
38598         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
38599         before <wchar.h>. Needed for OSF/1 and BSD/OS.
38600
38601 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
38602
38603         * modules/snprintf (Depends-on): Remove minmax.
38604         (Maintainer): Add self and Bruno.
38605
38606 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
38607
38608         * lib/.cppi-disable: Add snprintf.h, socket_.h.
38609         * lib/snprintf.c: Include <errno.h> and <limits.h>.
38610         (EOVERFLOW): Define if the system does not.
38611         Do not include "minmax.h"; it wasn't used.
38612         (snprintf): Don't assume size_t promotes to an unsigned type.
38613         Fix bug when generated string was too long for the buffer: the
38614         buffer's contents are supposed to be the initial prefix of the
38615         output.  Don't assume vasnprintf returns EOVERFLOW if the size
38616         exceeds INT_MAX; do the check ourselves.
38617
38618         Import the following changes from libc:
38619
38620         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
38621
38622         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
38623         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
38624         set wc to the byte which couldn't be converted.
38625         (re_string_reconstruct): Don't clear valid_raw_len before calling
38626         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
38627         tip_context using re_string_context_at.
38628
38629         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
38630
38631         * lib/posix/regex.h: g++ still cannot handled [restrict].
38632
38633         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
38634
38635         * lib/posix/regex.h: Remove special handling for VMS.
38636
38637 2006-08-10  Jim Meyering  <jim@meyering.net>
38638
38639         * modules/same-inode: New module.
38640         * modules/dev-ino: New module.
38641         * modules/cycle-check: Depend on these modules, rather than simply
38642         including their .h files.
38643         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
38644         required via m4/cycle-check.m4.
38645         * modules/same: Depend on new same-inode module, rather than
38646         including same-inode.h.
38647         * modules/chdir-safer: New file.
38648
38649         * modules/chown (Depends-on): Add stat-macros.
38650
38651 2006-08-10  Jim Meyering  <jim@meyering.net>
38652
38653         * m4/cycle-check.m4: New file.
38654         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
38655         * m4/dev-ino.m4, m4/same-inode.m4: New files.
38656
38657 2006-08-10  Eric Blake  <ebb9@byu.net>
38658
38659         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
38660         in from original proposal.
38661
38662 2006-08-10  Eric Blake  <ebb9@byu.net>
38663         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
38664
38665         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
38666         namespace.
38667
38668 2006-08-10  Bruno Haible  <bruno@clisp.org>
38669
38670         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
38671         as well.
38672
38673 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
38674
38675         Sync from coreutils.
38676
38677         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
38678
38679         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
38680         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
38681
38682 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
38683
38684         * modules/restrict: Remove; no longer needed now that we assume
38685         Autoconf 2.59 or later.
38686         * MODULES.html.sh: Remove 'restrict'.
38687         * modules/argp (Depends-on): Remove 'restrict'.
38688         * modules/base64 (Depends-on): Likewise.
38689         * modules/gc (Depends-on): Likewise.
38690         * modules/getaddrinfo (Depends-on): Likewise.
38691         * modules/glob (Depends-on): Likewise.
38692         * modules/inet_ntop (Depends-on): Likewise.
38693         * modules/inet_pton (Depends-on): Likewise.
38694         * modules/memxor (Depends-on): Likewise.
38695         * modules/regex (Depends-on): Likewise.
38696         * modules/strtok_r (Depends-on): Likewise.
38697         * modules/time_r (Depends-on): Likewise.
38698
38699 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
38700
38701         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
38702         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
38703         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
38704         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
38705         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
38706         * m4/memxor.m4 (gl_MEMXOR): Likewise.
38707         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
38708         gl_C_RESTRICT replaced by AC_C_RESTRICT.
38709
38710         Merge from coreutils.
38711         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
38712         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
38713         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
38714         * m4/time_r.m4 (gl_TIME_R): Likewise.
38715
38716 2006-08-09  Karl Berry  <karl@gnu.org>
38717
38718         * config/srclist.txt: no more gettext-tools, per Bruno.
38719
38720 2006-08-08  Eric Blake  <ebb9@byu.net>
38721
38722         * modules/verror: New module.
38723         * MODULES.html.sh: Document it.
38724
38725 2006-08-08  Eric Blake  <ebb9@byu.net>
38726
38727         * lib/verror.h, lib/verror.c: New files.
38728
38729 2006-08-08  Eric Blake  <ebb9@byu.net>
38730
38731         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
38732         verror_at_line output complies with GNU Coding Standards even when
38733         file is NULL.
38734
38735 2006-08-07  Bruno Haible  <bruno@clisp.org>
38736
38737         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
38738         versions of AIX.
38739         Reported by Ralf Wildenhues.
38740
38741 2006-08-07  Bruno Haible  <bruno@clisp.org>
38742
38743         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
38744         in an AC_DEFUN. Needed so that the autoconf snippets can use
38745         AC_REQUIRE.
38746
38747 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
38748
38749         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
38750         Initialize pkgdata_DATA.
38751         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
38752         overriding it.
38753
38754 2006-08-06  Eric Blake  <ebb9@byu.net>
38755
38756         * lib/error.h: Fold in some upstream changes from glibc.
38757         * lib/error.c: Likewise.
38758
38759 2006-08-04  Bruno Haible  <bruno@clisp.org>
38760
38761         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
38762         Make the mostlyclean-local rule depend on mostlyclean-generic.
38763         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
38764
38765 2006-07-31  Bruno Haible  <bruno@clisp.org>
38766
38767         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
38768         <stdlib.h>, <string.h>.
38769
38770 2006-07-30  Bruno Haible  <bruno@clisp.org>
38771
38772         * modules/readlink (License): Change to LGPL.
38773
38774 2006-07-30  Bruno Haible  <bruno@clisp.org>
38775
38776         * modules/javaversion (Makefile.am): Distribute javaversion.java and
38777         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
38778         set PKGDATADIR to point to it.
38779
38780 2006-07-30  Bruno Haible  <bruno@clisp.org>
38781
38782         * modules/csharpexec (configure.ac): Comment out macro invocation.
38783         * modules/javaexec (configure.ac): Likewise.
38784         * modules/javacomp-script (configure.ac): Likewise.
38785
38786         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
38787
38788 2006-07-30  Bruno Haible  <bruno@clisp.org>
38789
38790         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
38791         linked-list.
38792
38793 2006-07-30  Bruno Haible  <bruno@clisp.org>
38794
38795         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
38796
38797 2006-07-30  Bruno Haible  <bruno@clisp.org>
38798
38799         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
38800         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
38801         get removed.
38802
38803 2006-07-29  Bruno Haible  <bruno@clisp.org>
38804
38805         Make it possible for gnulib-tool to work with locally modified or
38806         augmented gnulib repositories.
38807         * gnulib-tool (func_usage): Document --local-dir option.
38808         (local_gnulib_dir): New variable.
38809         Handle --local-dir option.
38810         (func_lookup_file): New function.
38811         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
38812         (func_get_description, func_get_filelist, func_get_description,
38813         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
38814         func_get_automake_snippet, func_get_include_directive,
38815         func_get_license, func_get_maintainer): Use func_lookup_file.
38816         (func_import, func_create_testdir): Use func_lookup_file.
38817
38818 2006-07-29  Bruno Haible  <bruno@clisp.org>
38819
38820         * modules/setenv (Depends-on): Add unistd.
38821
38822 2006-07-29  Bruno Haible  <bruno@clisp.org>
38823
38824         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
38825
38826 2006-07-29  Bruno Haible  <bruno@clisp.org>
38827
38828         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
38829
38830 2006-07-29  Bruno Haible  <bruno@clisp.org>
38831
38832         * gnulib-tool (import, update): If there is no Makefile.am, look at
38833         aclocal.m4, instead of bailing out.
38834
38835 2006-07-29  Bruno Haible  <bruno@clisp.org>
38836
38837         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
38838         Categorize the options by when they are useful.
38839
38840 2006-07-29  Bruno Haible  <bruno@clisp.org>
38841
38842         * gnulib-tool (func_usage): Document option --no-libtool.
38843         Handle option --no-libtool.
38844         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
38845         for changed semantics of $libtool variable.
38846         (func_import): Likewise. If libtool is not used, show this through
38847         an option --no-libtool.
38848         (func_create_testdir): Update.
38849
38850 2006-07-29  Bruno Haible  <bruno@clisp.org>
38851
38852         * gnulib-tool (func_import): Extend error message about missing
38853         --doc-base.
38854
38855 2006-07-29  Bruno Haible  <bruno@clisp.org>
38856
38857         * gnulib-tool (func_import): Don't create the $docbase directory if
38858         there is no file to store there.
38859
38860 2006-07-29  Bruno Haible  <bruno@clisp.org>
38861
38862         * gnulib-tool (autoconf_minversion): If a --dir option is given and
38863         relevant, look for configure.ac there, not in the current directory.
38864         Also use a simple search for AC_PREREQ, not "autoconf --trace".
38865
38866 2006-07-29  Bruno Haible  <bruno@clisp.org>
38867
38868         * gnulib-tool (SORT): New variable.
38869         (func_usage): Undocument --assume-autoconf option.
38870         Remove --assume-autoconf option handling.
38871         (autoconf_minversion): Determine from the contents of configure.ac.
38872         (func_import): Remove autoconf_minversion handling.
38873         Suggested by Eric Blake.
38874
38875 2006-07-29  Bruno Haible  <bruno@clisp.org>
38876
38877         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
38878
38879 2006-07-29  Bruno Haible  <bruno@clisp.org>
38880
38881         * config/srclist.txt (*setenv.[ch]): Remove rules.
38882
38883 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
38884
38885         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
38886
38887 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
38888
38889         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
38890         arpa/inet.h.
38891
38892 2006-07-28  Simon Josefsson  <jas@extundo.com>
38893
38894         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
38895         * modules/inet_pton (Depends-on): Likewise.
38896
38897 2006-07-28  Simon Josefsson  <jas@extundo.com>
38898
38899         * m4/netinet_in_h.m4: New file.
38900
38901 2006-07-28  Simon Josefsson  <jas@extundo.com>
38902
38903         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
38904         #include's.
38905
38906 2006-07-28  Simon Josefsson  <jas@extundo.com>
38907
38908         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
38909         #include's.
38910
38911 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
38912
38913         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
38914         setgid on directories only if they set these bits.
38915         * lib/modechange.h: Remove obsolete comment about masks.
38916
38917 2006-07-28  Eric Blake  <ebb9@byu.net>
38918
38919         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
38920         macro expansion.
38921
38922 2006-07-28  Bruno Haible  <bruno@clisp.org>
38923
38924         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
38925
38926 2006-07-28  Bruno Haible  <bruno@clisp.org>
38927
38928         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
38929
38930 2006-07-28  Bruno Haible  <bruno@clisp.org>
38931
38932         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
38933         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
38934         Define fallbacks.
38935         Avoids link error on FreeBSD 4.x.
38936         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
38937
38938         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
38939         encoding.
38940         * lib/mbswidth.c (iswcntrl): Likewise.
38941
38942 2006-07-27  Bruno Haible  <bruno@clisp.org>
38943
38944         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
38945         test.
38946
38947 2006-07-27  Bruno Haible  <bruno@clisp.org>
38948
38949         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
38950         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
38951         defined.
38952
38953 2006-07-26  Eric Blake  <ebb9@byu.net>
38954
38955         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
38956
38957 2006-07-26  Eric Blake  <ebb9@byu.net>
38958
38959         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
38960         like mingw that lack mkstemp.
38961         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
38962         avoid compilation warning on mingw.
38963
38964 2006-07-26  Bruno Haible  <bruno@clisp.org>
38965
38966         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
38967         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
38968         INT_FAST*_MIN, INTPTR_MIN.
38969
38970 2006-07-25  Bruno Haible  <bruno@clisp.org>
38971
38972         * modules/version-etc (Depends-on): Add stdarg.
38973
38974 2006-07-25  Bruno Haible  <bruno@clisp.org>
38975
38976         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
38977         complex commands.
38978
38979 2006-07-25  Bruno Haible  <bruno@clisp.org>
38980
38981         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
38982         defined in <stdarg.h> or config.h.
38983
38984 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
38985
38986         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
38987         (gl_STDIO_SAFER): Remove.
38988
38989 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
38990
38991         * MODULES.html.sh (File stream based Input/Output):
38992         Add fopen-safer, tmpfile-safer; remove stdio-safer.
38993         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
38994         * modules/fopen-safer, modules/tmpfile-safer: New files.
38995         * modules/stdio-safer: Remove.
38996
38997 2006-07-24  Bruno Haible  <bruno@clisp.org>
38998
38999         * modules/tmpdir: New file.
39000         * MODULES.html.sh (File system functions): Add it.
39001
39002 2006-07-24  Bruno Haible  <bruno@clisp.org>
39003
39004         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
39005         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
39006
39007 2006-07-24  Bruno Haible  <bruno@clisp.org>
39008
39009         * modules/clean-temp: New file.
39010
39011 2006-07-24  Bruno Haible  <bruno@clisp.org>
39012
39013         * m4/tmpdir.m4: New file, from GNU gettext.
39014
39015 2006-07-24  Bruno Haible  <bruno@clisp.org>
39016
39017         * lib/tmpdir.h: New file, from GNU gettext.
39018         * lib/tmpdir.c: New file, from GNU gettext.
39019
39020 2006-07-24  Bruno Haible  <bruno@clisp.org>
39021
39022         * lib/clean-temp.h: New file, from GNU gettext.
39023         * lib/clean-temp.c: New file, from GNU gettext.
39024
39025 2006-07-23  Eric Blake  <ebb9@byu.net>
39026
39027         * modules/stdio-safer (Files): Add tmpfile-safer.c.
39028         (Depends-on): Add binary-io.
39029
39030 2006-07-23  Eric Blake  <ebb9@byu.net>
39031
39032         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
39033
39034 2006-07-23  Eric Blake  <ebb9@byu.net>
39035
39036         * lib/tmpfile-safer.c: New file.
39037         * lib/stdio-safer.h (fopen_safer): Add prototype.
39038         * lib/stdio--.h (tmpfile): Make safer.
39039
39040 2006-07-23  Bruno Haible  <bruno@clisp.org>
39041
39042         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
39043         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
39044         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
39045         gl_linked_remove_at): Use it.
39046
39047 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
39048         and Simon Josefsson <jas@extundo.com>
39049
39050         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
39051
39052         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
39053
39054 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
39055
39056         * modules/close-stream: New file.
39057         * modules/closeout (Description): Make it clear that it exits
39058         with a diagnostic on error.
39059         (Depends-on): Add close-stream.  Remove fpending, stdbool.
39060         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
39061
39062 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
39063
39064         * m4/close-stream.m4: New file.
39065
39066 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
39067
39068         * lib/close-stream.c, lib/close-stream.h: New files.
39069
39070 2006-07-22  Bruno Haible  <bruno@clisp.org>
39071
39072         Merge from GNU gettext 0.15.
39073
39074         2006-05-01  Bruno Haible  <bruno@clisp.org>
39075
39076                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
39077
39078         2006-07-22  Bruno Haible  <bruno@clisp.org>
39079
39080                 * modules/javaversion: New file.
39081                 * MODULES.html.sh (Java): Add javaversion.
39082
39083         2006-03-12  Bruno Haible  <bruno@clisp.org>
39084
39085                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
39086
39087         2005-12-04  Bruno Haible  <bruno@clisp.org>
39088
39089                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
39090                 (untested).
39091
39092         2006-06-21  Bruno Haible  <bruno@clisp.org>
39093
39094                 Avoid warnings from recent versions of mcs.
39095                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
39096                 -o, -L, -r any more. Use options documented since mcs-1.0
39097                 instead. Similarly for -g.
39098
39099         2005-12-04  Bruno Haible  <bruno@clisp.org>
39100
39101                 * build-aux/csharpcomp.sh.in: Suffix for resources is
39102                 .resources, not .resource.
39103
39104         2005-07-09  Bruno Haible  <bruno@clisp.org>
39105
39106                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
39107                 add a .dll suffix.
39108                 Reported by Mark Junker <mjscod@gmx.de>.
39109
39110         2006-07-22  Bruno Haible  <bruno@clisp.org>
39111
39112                 * modules/gettext: Upgrade to gettext-0.15.
39113                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
39114                 m4/visibility.m4.
39115                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
39116
39117 2006-07-22  Bruno Haible  <bruno@clisp.org>
39118
39119         Merge from GNU gettext 0.15.
39120
39121         2006-03-25  Bruno Haible  <bruno@clisp.org>
39122
39123                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
39124
39125         2006-07-21  Bruno Haible  <bruno@clisp.org>
39126
39127                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
39128                 "1.1".
39129
39130         2006-05-09  Bruno Haible  <bruno@clisp.org>
39131
39132                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
39133                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
39134                 for the conftestver execution.
39135
39136         2006-05-01  Bruno Haible  <bruno@clisp.org>
39137
39138                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
39139                 optional target-version argument. Verify that the compiler
39140                 groks source of the specified source-version, or add -source
39141                 option as necessary. Verify that the compiler produces
39142                 bytecode in the specified target-version, or add -target and
39143                 -source options as necessary. Make the result of the test
39144                 available as variable CONF_JAVAC. Also log error output in
39145                 config.log.
39146
39147         2006-03-11  Bruno Haible  <bruno@clisp.org>
39148
39149                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
39150
39151         2006-05-09  Bruno Haible  <bruno@clisp.org>
39152
39153                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
39154                 CLASSPATH_SEPARATOR to a semicolon.
39155
39156         2006-03-12  Bruno Haible  <bruno@clisp.org>
39157
39158                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
39159                 available as variable CONF_JAVA, for subsequent autoconf
39160                 tests. Also log error output in config.log.
39161
39162         2006-07-19  Bruno Haible  <bruno@clisp.org>
39163
39164                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
39165                 that getline works on glibc2 systems. Needed to avoid trouble
39166                 in relocatable.c.
39167                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
39168
39169         2005-12-04  Bruno Haible  <bruno@clisp.org>
39170
39171                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
39172                 launcher (untested).
39173
39174         2005-12-04  Bruno Haible  <bruno@clisp.org>
39175
39176                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
39177
39178         2006-07-22  Bruno Haible  <bruno@clisp.org>
39179
39180                 * gettext.m4: Update from GNU gettext-0.15.
39181                 * nls.m4: Likewise.
39182                 * po.m4: Likewise.
39183                 * inttypes-pri.m4: Likewise.
39184                 * inttypes-h.m4: Renamed from inttypes.m4.
39185                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
39186
39187 2006-07-22  Bruno Haible  <bruno@clisp.org>
39188
39189         Merge from GNU gettext 0.15.
39190
39191         2005-07-05  Bruno Haible  <bruno@clisp.org>
39192
39193                 * printf-args.c (printf_fetchargs): Work around broken
39194                 definition of wint_t on mingw.
39195
39196         2005-02-12  Bruno Haible  <bruno@clisp.org>
39197
39198                 * xallocsa.h: Add extern "C" for C++.
39199
39200         2006-05-17  Bruno Haible  <bruno@clisp.org>
39201
39202                 Cygwin portability.
39203                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
39204
39205         2006-04-30  Bruno Haible  <bruno@clisp.org>
39206
39207                 * progreloc.c: Include <mach-o/dyld.h> if available.
39208                 (find_executable): Use _NSGetExecutablePath when possible.
39209
39210         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
39211
39212                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
39213                 function.
39214
39215         2005-12-29  Bruno Haible  <bruno@clisp.org>
39216
39217                 * progreloc.c (set_program_name_and_installdir): Fix
39218                 compilation error.
39219
39220         2005-12-04  Bruno Haible  <bruno@clisp.org>
39221
39222                 Cygwin portability.
39223                 * progreloc.c: Include <windows.h> also on Cygwin.
39224                 (find_executable): Add support for Cygwin.
39225                 (set_program_name_and_installdir): Handle also platforms with
39226                 nonempty EXEEXT.
39227
39228         2006-07-11  Bruno Haible  <bruno@clisp.org>
39229
39230                 * javacomp.c: Fix a comment.
39231                 Reported by Jim Meyering.
39232
39233         2006-04-30  Bruno Haible  <bruno@clisp.org>
39234
39235                 * javacomp.h (compile_java_class): Add source_version,
39236                 target_version arguments.
39237                 * javacomp.c: Rewritten to choose only a compiler that
39238                 respects the specified source_version and target_version.
39239
39240         2006-06-27  Bruno Haible  <bruno@clisp.org>
39241
39242                 Assume correct S_ISDIR macro.
39243                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
39244
39245         2006-07-22  Bruno Haible  <bruno@clisp.org>
39246
39247                 * javaversion.h: New file, from GNU gettext.
39248                 * javaversion.c: New file, from GNU gettext.
39249                 * javaversion.java: New file, from GNU gettext.
39250                 * javaversion.class: New file, from GNU gettext.
39251
39252         2006-05-17  Bruno Haible  <bruno@clisp.org>
39253
39254                 Cygwin portability.
39255                 * javaexec.c (execute_java_class): Test for jview program
39256                 also on Cygwin.
39257
39258         2006-04-09  Bruno Haible  <bruno@clisp.org>
39259
39260                 * fatal-signal.c: Don't include string.h.
39261                 (at_fatal_signal): Use a copying loop instead of memcpy.
39262
39263         2005-12-04  Bruno Haible  <bruno@clisp.org>
39264
39265                 * csharpexec.c: Add support for 'clix' launcher (untested).
39266                 (execute_csharp_using_sscli): New function.
39267                 (execute_csharp_program): Call it.
39268
39269         2006-06-21  Bruno Haible  <bruno@clisp.org>
39270
39271                 Avoid warnings from recent versions of mcs.
39272                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
39273                 -o, -L, -r any more. Use options documented since mcs-1.0
39274                 instead. Similarly for -g.
39275
39276         2005-07-09  Bruno Haible  <bruno@clisp.org>
39277
39278                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
39279                 add a .dll suffix.
39280                 Reported by Mark Junker <mjscod@gmx.de>.
39281
39282         2006-06-17  Bruno Haible  <bruno@clisp.org>
39283
39284                 * config.charset: Update for NetBSD 3.0.
39285
39286         2006-05-17  Bruno Haible  <bruno@clisp.org>
39287
39288                 Cygwin portability.
39289                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
39290
39291         2006-05-16  Bruno Haible  <bruno@clisp.org>
39292
39293                 * localcharset.c [CYGWIN]: Include <windows.h>.
39294                 (get_charset_aliases): For Cygwin, return the same CPxxx
39295                 aliases list as under WIN32.
39296                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
39297                 the environment variables. Fall back to GetACP().
39298
39299         2006-04-05  Bruno Haible  <bruno@clisp.org>
39300
39301                 * config.charset: Update Juan Manuel Guerrero's address.
39302
39303         2005-02-12  Bruno Haible  <bruno@clisp.org>
39304
39305                 * allocsa.h: Add extern "C" for C++.
39306
39307         2005-02-10  Bruno Haible  <bruno@clisp.org>
39308
39309                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
39310                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
39311
39312         2006-07-22  Bruno Haible  <bruno@clisp.org>
39313
39314                 * gettext.h: Update to GNU gettext-0.15.
39315
39316 2006-07-22  Bruno Haible  <bruno@clisp.org>
39317
39318         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
39319         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
39320         lib-prefix.m4, longdouble.m4, ssize_t.m4.
39321
39322 2006-07-21  Eric Blake  <ebb9@byu.net>
39323
39324         * modules/stdlib-safer: New file.
39325         * MODULES.html.sh (File stream based Input/Output): Add
39326         stdlib-safer.
39327
39328 2006-07-21  Eric Blake  <ebb9@byu.net>
39329
39330         * lib/stdlib-safer.h: New file from coreutils, required by
39331         stdlib--.h.
39332
39333 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
39334
39335         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
39336
39337 2006-07-20  Bruno Haible  <bruno@clisp.org>
39338
39339         * gnulib-tool: Recognize new option --assume-autoconf.
39340         (autoconf_minversion): New variable.
39341         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
39342
39343 2006-07-20  Bruno Haible  <bruno@clisp.org>
39344
39345         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
39346
39347 2006-07-19  Derek R. Price  <derek@ximbiot.com>
39348
39349         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
39350         Reindent and repaginate.
39351
39352 2006-07-19  Derek Price  <derek@ximbiot.com>
39353
39354         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
39355         Correct grammar.
39356
39357 2006-07-17  Bruno Haible  <bruno@clisp.org>
39358
39359         * modules/list: New file.
39360         * modules/array-list: New file.
39361         * modules/carray-list, modules/carray-list-tests: New files.
39362         * modules/linked-list, modules/linked-list-tests: New files.
39363         * modules/avltree-list, modules/avltree-list-tests: New files.
39364         * modules/rbtree-list, modules/rbtree-list-tests: New files.
39365         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
39366         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
39367         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
39368         * modules/oset: New file.
39369         * modules/array-oset: New file.
39370         * modules/avltree-oset, modules/avltree-oset-tests: New files.
39371         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
39372         * tests/test-carray_list.c: New file.
39373         * tests/test-linked_list.c: New file.
39374         * tests/test-avltree_list.c: New file.
39375         * tests/test-rbtree_list.c: New file.
39376         * tests/test-linkedhash_list.c: New file.
39377         * tests/test-avltreehash_list.c: New file.
39378         * tests/test-rbtreehash_list.c: New file.
39379         * tests/test-avltree_oset.c: New file.
39380         * tests/test-rbtree_oset.c: New file.
39381         * MODULES.html.sh (Container data structures): New section.
39382
39383 2006-07-17  Bruno Haible  <bruno@clisp.org>
39384
39385         * m4/gl_list.m4: New file.
39386
39387 2006-07-17  Bruno Haible  <bruno@clisp.org>
39388
39389         * lib/gl_list.h: New file.
39390         * lib/gl_list.c: New file.
39391         * lib/gl_array_list.h: New file.
39392         * lib/gl_array_list.c: New file.
39393         * lib/gl_carray_list.h: New file.
39394         * lib/gl_carray_list.c: New file.
39395         * lib/gl_linked_list.h: New file.
39396         * lib/gl_linked_list.c: New file.
39397         * lib/gl_anylinked_list1.h: New file.
39398         * lib/gl_anylinked_list2.h: New file.
39399         * lib/gl_avltree_list.h: New file.
39400         * lib/gl_avltree_list.c: New file.
39401         * lib/gl_anyavltree_list1.h: New file.
39402         * lib/gl_anyavltree_list2.h: New file.
39403         * lib/gl_rbtree_list.h: New file.
39404         * lib/gl_rbtree_list.c: New file.
39405         * lib/gl_anyrbtree_list1.h: New file.
39406         * lib/gl_anyrbtree_list2.h: New file.
39407         * lib/gl_anytree_list1.h: New file.
39408         * lib/gl_anytree_list2.h: New file.
39409         * lib/gl_linkedhash_list.h: New file.
39410         * lib/gl_linkedhash_list.c: New file.
39411         * lib/gl_anyhash_list1.h: New file.
39412         * lib/gl_anyhash_list2.h: New file.
39413         * lib/gl_avltreehash_list.h: New file.
39414         * lib/gl_avltreehash_list.c: New file.
39415         * lib/gl_rbtreehash_list.h: New file.
39416         * lib/gl_rbtreehash_list.c: New file.
39417         * lib/gl_anytreehash_list1.h: New file.
39418         * lib/gl_anytreehash_list2.h: New file.
39419
39420         * lib/gl_oset.h: New file.
39421         * lib/gl_oset.c: New file.
39422         * lib/gl_array_oset.h: New file.
39423         * lib/gl_array_oset.c: New file.
39424         * lib/gl_avltree_oset.h: New file.
39425         * lib/gl_avltree_oset.c: New file.
39426         * lib/gl_rbtree_oset.h: New file.
39427         * lib/gl_rbtree_oset.c: New file.
39428         * lib/gl_anytree_oset.h: New file.
39429
39430 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
39431
39432         * m4/mkancesdirs.m4: New file.
39433         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
39434         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
39435         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
39436         it.
39437
39438 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
39439
39440         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
39441         * lib/mkancesdirs.h: New files.
39442         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
39443         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
39444         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
39445         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
39446         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
39447         callers changed.  Revamp internals significantly, by not
39448         attempting to create directories that are temporarily more
39449         permissive than the final results.  Do not attempt to use
39450         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
39451         This removes some race conditions, fixes some bugs, and simplifies
39452         things.  Use new dirchownmod function to do owner and mode changes.
39453         * lib/mkdir-p.h: Likewise.
39454         * lib/modechange.c (octal_to_mode): New function.
39455         (struct mode_change): New member mentioned.
39456         (make_node_op_equals): New arg mentioned.  All callers changed.
39457         (mode_compile): Keep track of which mode bits the user has explicitly
39458         mentioned.
39459         (mode_adjust): New arg DIR, so that we implement the X op correctly.
39460         New arg PMODE_BITS, to keep track of which mode bits the user
39461         mentioned; it treats S_ISUID and S_ISGID speciall.
39462         All callers changed.
39463         * lib/modechange.h: Likewise.
39464
39465 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
39466
39467         * MODULES.html.sh: Add mkancestors.
39468         * modules/mkancesdirs: New module.
39469         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
39470         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
39471         The chdir-safer and afs files are now orphans; I'll remove them
39472         unless someone speaks up.
39473         Add lib/dirchownmod.c, lib/dirchownmod.h.
39474         (Depends-on): Remove alloca, chown, save-cwd, dirname.
39475         Add lchown, mkancesdirs.
39476         (Maintainer): Add self.
39477
39478 2006-07-15  Karl Berry  <karl@gnu.org>
39479
39480         * gnulib-tool: help message wording/arrangement.
39481
39482 2006-07-14  Simon Josefsson  <jas@extundo.com>
39483
39484         * doc/gnulib.texi (Libtool and Windows): New section.
39485
39486 2006-07-12  Simon Josefsson  <jas@extundo.com>
39487
39488         * modules/gendocs (License): Fix license, approved by Karl.
39489
39490 2006-07-12  Eric Blake  <ebb9@byu.net>
39491
39492         * MODULES.html.sh: Add gendocs.
39493
39494 2006-07-11  Eric Blake  <ebb9@byu.net>
39495
39496         * modules/fdl: New module, to install doc/fdl.texi.
39497         * MODULES.html.sh: Add new section for documentation modules.
39498         * gnulib-tool: Avoid space-tab.
39499         (--doc-base): New option, to manage files from doc.
39500
39501 2006-07-11  Eric Blake  <ebb9@byu.net>
39502
39503         * m4/absolute-header.m4: Fix comments to match recent change.
39504
39505 2006-07-11  Eric Blake  <ebb9@byu.net>
39506
39507         * gnulib-tool: List --doc-base before --tests-base.
39508
39509 2006-07-11  Derek R. Price  <derek@ximbiot.com>
39510
39511         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
39512
39513 2006-07-11  Bruno Haible  <bruno@clisp.org>
39514
39515         * README: Mention where to put documentation.
39516
39517 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39518
39519         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
39520
39521 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
39522
39523         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
39524         to stdint.m4.
39525
39526 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
39527
39528         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
39529         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
39530         "no/such/file/stdint.h" when there is no such file, so that
39531         the resulting C code can be parsed by dodgy compilers.
39532         Problems reported by Bob Proulx.
39533
39534 2006-07-10  Derek R. Price  <derek@ximbiot.com>
39535
39536         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
39537         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
39538         macros into the GNU _D_EXACT_NAMLEN.
39539         * lib/savedir.c:  Likewise.
39540         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
39541
39542 2006-07-10  Derek R. Price  <derek@ximbiot.com>
39543         and Paul Eggert  <eggert@cs.ucla.edu>
39544
39545         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
39546         * m4/savedir.m4:
39547         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
39548         macros into the GNU _D_EXACT_NAMLEN.
39549
39550 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
39551
39552         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
39553         around the absolute name, to work around a problem with the HP-UX
39554         11.23 native C compiler, reported by Bob Proulx.
39555
39556 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
39557
39558         * doc/maintain.texi, make-stds.texi: Sync from
39559         <http://savannah.gnu.org/projects/gnustandards>.
39560
39561 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
39562
39563         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
39564
39565 2006-07-09  Jim Meyering  <jim@meyering.net>
39566
39567         * m4/glob.m4: Remove a doubled word in a comment.
39568
39569 2006-07-09  Jim Meyering  <jim@meyering.net>
39570
39571         * lib/argp-pv.c: Remove a doubled word in a comment.
39572         * lib/check-version.c (check_version): Likewise.
39573         * lib/javacomp.c (compile_java_class): Likewise.
39574
39575 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
39576
39577         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
39578         for the benefit of people using Autoconf 2.60.  If you want to
39579         support older Autoconf versions you can copy m4/onceonly_2_57.m4
39580         (or m4/onceonly.m4, if pre-2.57) manually.
39581
39582 2006-07-08  Jim Meyering  <jim@meyering.net>
39583
39584         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
39585         comment.
39586         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
39587         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
39588         comment.
39589
39590 2006-07-08  Jim Meyering  <jim@meyering.net>
39591
39592         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
39593
39594 2006-07-07  Simon Josefsson  <jas@extundo.com>
39595
39596         * tests/test-crc.c: Change expected crc value, the test vector
39597         were probably computed using the old broken crc.c?
39598
39599 2006-07-06  Simon Josefsson  <jas@extundo.com>
39600
39601         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
39602         now the canonical place for the M4 file).
39603
39604         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
39605         from the sys_socket dependency now.
39606
39607         * modules/inet_pton (Files): Ditto.
39608
39609         * modules/inet_ntop (Files): Ditto.
39610
39611 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
39612
39613         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
39614         not gl_PREREQ_GETUSERSHELL.
39615
39616 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39617
39618         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
39619         with only one argument, for Autoconf 2.60.
39620         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
39621         expand to nothing, so add a shell command to avoid syntax error.
39622         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
39623
39624 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39625
39626         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
39627
39628 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
39629
39630         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
39631         no longer needed.  Check for isblank decl.
39632         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
39633         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
39634         of existence.
39635
39636 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
39637
39638         * lib/getloadavg.c: Use __VMS, not VMS.
39639         * lib/getopt.c: Likewise.
39640         * lib/getpagesize.h: Likewise.
39641         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
39642         and probably does not work.
39643
39644 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
39645
39646         * lib/.cppi-disable: Add wcwidth.
39647         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
39648         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
39649         (ISGRAPH): Remove.  All uses changed to isgraph.
39650         (FOLD) [!defined _LIBC]: Remove special case.
39651         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
39652         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
39653         HAVE_ISBLANK.
39654         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
39655         case.
39656
39657 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
39658
39659         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
39660         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
39661         brackets.  Other minor changes to suppress some compiler
39662         warnings.
39663
39664 2006-07-06  Derek R. Price  <derek@ximbiot.com>
39665         and Paul Eggert  <eggert@cs.ucla.edu>
39666
39667         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
39668         of invoking obsolescent AC_HEADER_DIRENT macro.
39669         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
39670         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
39671         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
39672         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
39673         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
39674         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
39675         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
39676         * m4/readdir.m4: Remove; no longer needed.
39677
39678 2006-07-06  Derek R. Price  <derek@ximbiot.com>
39679         and Paul Eggert  <eggert@cs.ucla.edu>
39680
39681         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
39682         Don't worry about this obsolete case any more.
39683         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
39684         directories.
39685         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
39686         worry about this obsolete case any more.
39687         * lib/fts.c: Likewise.
39688         * lib/getcwd.c: Likewise.
39689         * lib/glob.h: Likewise.
39690         * lib/savedir.c: Likewise.
39691
39692 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
39693
39694         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
39695         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
39696         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
39697         needed.
39698         All uses removed.
39699         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
39700         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
39701         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
39702         needed.
39703         * m4/getdate.m4 (gl_GETDATE): Likewise.
39704         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
39705         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
39706         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
39707         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
39708         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
39709         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
39710         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
39711         needed.
39712
39713 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
39714
39715         * lib/memcasecmp.c: Include <limits.h>.
39716         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
39717         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
39718         Don't assume isdigit succeeds only on '0' through '9'.
39719
39720 2006-07-05  Eric Blake  <ebb9@byu.net>
39721
39722         * modules/getaddrinfo (Depends-on): Add snprintf.
39723
39724 2006-07-05  Eric Blake  <ebb9@byu.net>
39725
39726         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
39727         to avoid 'header present but could not be compiled' on cygwin.
39728
39729 2006-07-05  Eric Blake  <ebb9@byu.net>
39730
39731         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
39732         missing from netdb.h.
39733         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
39734
39735 2006-07-05  Derek R. Price  <derek@ximbiot.com>
39736
39737         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
39738         no longer needed.
39739         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
39740         * m4/getdate.m4 (gl_GETDATE): Likewise.
39741         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
39742         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
39743         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
39744         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
39745         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
39746
39747 2006-07-05  Derek R. Price  <derek@ximbiot.com>
39748
39749         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
39750         All uses of is_space replaced by isspace.
39751         * lib/exit.h: Don't talk about STDC_HEADERS.
39752         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
39753         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
39754         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
39755         replaced by isprint etc.
39756         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
39757         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
39758         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
39759         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
39760         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
39761         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
39762
39763 2006-07-05  Bruno Haible  <bruno@clisp.org>
39764
39765         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
39766         the function exists, before testing against AIX.
39767         Reported by Martin Lambers <marlam@marlam.de>.
39768
39769 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
39770
39771         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
39772         From Mark D. Baushke.
39773
39774 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
39775
39776         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
39777         to the absolute name, not just one, to bypass Sun C 5.8's
39778         "warning: #include of /usr/include/... may be non-portable".
39779
39780 2006-07-04  Eric Blake  <ebb9@byu.net>
39781
39782         * modules/dirname-tests: New test module.
39783         * tests/test-dirname.c: New file, replacing dirname.c
39784         TEST_DIRNAME section that was recently deleted.
39785
39786 2006-07-04  Bruno Haible  <bruno@clisp.org>
39787
39788         Assume ANSI C header files and <ctype.h> functions.
39789         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
39790         (mbsnwidth): Use isprint, iscntrl instead.
39791
39792 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
39793
39794         Merge from coreutils.
39795         * MODULES.html.sh: Add xstrtold.
39796         * modules/xstrtold: New file.
39797         * modules/cycle-check (Files): Add lib/same-inode.h.
39798         * modules/dirname (Files): Add m4/double-slash-root.m4.
39799         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
39800         * modules/mkdir-p (Files): Add lib/same-inode.h.
39801         * modules/same (Files): Add lib/same-inode.h.
39802
39803 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
39804
39805         * m4/absolute-header.m4: Renamed from full-header-path.m4.
39806         This is to keep the terminology clean; POSIX talks about
39807         "absolute pathnames", not "full pathnames", but the GNU
39808         Coding Standards say to use "path" for something else;
39809         so use "absolute" to keep both sides happy.
39810         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
39811         Set gl_absolute_header, not gl_full_header_path.
39812         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
39813         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
39814         All uses changed.
39815
39816         Merge from coreutils.
39817
39818         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
39819
39820         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
39821         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
39822         want to require the building of c-strtod.o.
39823         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
39824         needs -lm directly.
39825         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
39826
39827         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
39828
39829         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
39830         --as-needed option if available.  Problem reported by Albert Chin in
39831         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
39832         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
39833         cc merely issues a bunch of annoying warnings for --as-needed
39834         (this problem was reported by Bob Proulx).  Also, try linking with
39835         -lm to detect a bug in binutils 2.16 (this problem was reported
39836         by Ralf Wildenhues).
39837
39838         2006-06-18  Jim Meyering  <jim@meyering.net>
39839
39840         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
39841         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
39842         macro.
39843         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
39844         also check for glibc-2.4's abort-inducing bug.
39845
39846         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
39847         Low-probability clean-up should be to use rmdir to get rid of
39848         the just-created directory, not unlink.
39849
39850         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
39851         configure fail, and request a bug report to inform us about it.
39852         Add a comment that, barring reports to the contrary, in 2007 we'll
39853         assume ftruncate is universally available.
39854
39855         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
39856
39857         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
39858
39859         2006-03-12  Jim Meyering  <jim@meyering.net>
39860
39861         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
39862         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
39863         * m4/same.m4 (gl_SAME): Likewise.
39864         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
39865
39866         2006-03-11  Eric Blake  <ebb9@byu.net>
39867
39868         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
39869         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
39870         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
39871         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
39872
39873 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
39874
39875         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
39876         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
39877         reported by Mark D. Baushke, one in
39878         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
39879
39880         Merge from coreutils.
39881
39882         * lib/.cppi-disable: Add stdint_.h.
39883         * lib/.cvsignore: Add stdint.h.
39884
39885         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
39886
39887         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
39888         both double and long double versions.
39889         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
39890         * lib/xstrtold.c: New file.
39891         * lib/xstrtod.h (xstrtold): New decl.
39892
39893         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
39894
39895         * lib/filemode.c (setst): Remove.
39896         (strmode): Rewrite to avoid setst.  This makes the code shorter,
39897         (arguably) clearer, and the generated code is a bit smaller on my
39898         Debian GNU/Linux stable x86 host.
39899
39900         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
39901
39902         * lib/filemode.c: Include "filemode.h" first, to test the interface.
39903         Assume that filemode.h includes sys/types.h and sys/stat.h.
39904         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
39905         (ftypelet): Reorder to put common cases first, for efficiency.
39906         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
39907         to do 'M'.
39908         (strmode): Renamed from mode_string, and now stores 12 bytes instead
39909         of 10, for compatibility with FreeBSD.  All callers changed.
39910         (filemodestring): Now stores 12 bytes instead of 10, and sets file
39911         types that can't be deduced solely from st_mode.  First arg is now a
39912         const pointer.
39913         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
39914         (strmode): Renamed from mode_string.
39915         (filemodestring): New decl.
39916         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
39917         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
39918         needed.
39919         (S_ISPORT, S_ISWHT): New macros, if not already defined.
39920
39921         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
39922
39923         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
39924         fsusage.h now does that.  Include fsusage.h first, to test interface.
39925         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
39926         at most one method (the old code could have generated decls that
39927         didn't conform to C89, not that this was ever exercised).
39928         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
39929
39930         2006-03-19  Jim Meyering  <jim@meyering.net>
39931
39932         Work even in a chroot where d_ino values for entries in "/"
39933         don't match the stat.st_ino values for the same names.
39934         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
39935         number, iterate through all entries again, using lstat instead.
39936         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
39937         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
39938
39939         * lib/getcwd.c (__getcwd): Clarify a comment.
39940         Use memcpy in place of a call to strcpy.
39941
39942         2006-03-12  Jim Meyering  <jim@meyering.net>
39943
39944         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
39945         matches that of the current directory (which we're about to chdir ".."
39946         out of), then save the dev-ino of the parent, instead.
39947
39948         * lib/same-inode.h (SAME_INODE): New file/macro.
39949         * lib/chdir-safer.c (SAME_INODE): Remove definition.
39950         Include "same-inode.h", instead.
39951         * lib/same.c: Likewise.
39952         * lib/cycle-check.h: Include "same-inode.h".
39953         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
39954         * lib/cycle-check.c (SAME_INODE): Remove definition.
39955         * lib/root-dev-ino.h: Include "same-inode.h".
39956
39957         2006-03-11  Eric Blake  <ebb9@byu.net>
39958
39959         * lib/same.c (same_name): s/base_name/last_component/
39960         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
39961         * lib/filenamecat.c (file_name_concat): Likewise.
39962
39963         2006-03-11  Eric Blake  <ebb9@byu.net>,
39964                     Paul Eggert  <eggert@cs.ucla.edu>
39965
39966         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
39967         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
39968         drive prefix.
39969         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
39970         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
39971         (last_component): New method.
39972         * lib/dirname.c (dir_len): Determine when drive letters need a
39973         subsequent slash.  Preserve // when it is special.
39974         (dir_name): Don't append dot when drive letter is absolute.
39975         [TEST_DIRNAME]: Move into a full-blown gnulib test.
39976         * lib/basename.c (base_name): New semantics - malloc the result.
39977         Preserve // when it is special.  Preserve relative files that look
39978         like drive letters.
39979         (base_len): Preserve // when it is special.
39980         (last_component): New method, similar to old base_name semantics.
39981         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
39982         base_name.  Strip redundant slashes from ///.
39983
39984 2006-07-03  Jim Meyering  <jim@meyering.net>
39985
39986         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
39987         macro is used before the first cycle_check call.
39988
39989 2006-07-03  Eric Blake  <ebb9@byu.net>
39990
39991         * modules/dirname (Depends-on): Add xstrndup.
39992
39993 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
39994
39995         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
39996         test cases, so that config.log is a bit easier to follow.
39997
39998 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
39999
40000         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
40001         both are 64 bits, since this seems to be the tradition, and this
40002         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
40003         we ever run into a host that prefers long long to long in this
40004         case, we'll need another configure-time test.  Problem reported by
40005         Jim Meyering.
40006
40007 2006-07-02  Eric Blake  <ebb9@byu.net>
40008
40009         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
40010
40011 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
40012
40013         * modules/inttypes (Depends-on): No longer depends on stdint.
40014         * modules/stdint (Description): Say more about assumptions.
40015         Say that the fast types might differ.  Say macros are used.
40016         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
40017         (Makefile.am): Revise list of substituted symbols to match
40018         new stdint.m4.
40019         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
40020         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
40021         * tests/test-stdint.c (verify_same_types)
40022         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
40023         the code conforms to C99/C89.
40024         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
40025         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
40026
40027 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
40028
40029         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
40030         but fix a bug, by requiring at least 64 bits.
40031         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
40032         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
40033         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
40034         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
40035
40036         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
40037         changes.  Make 2.59 a prerequisite.  Check and substitute for
40038         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
40039         inttypes.h.  Do not use special include files; just use the
40040         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
40041         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
40042         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
40043         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
40044         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
40045         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
40046         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
40047         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
40048         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
40049         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
40050         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
40051         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
40052         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
40053         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
40054         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
40055         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
40056         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
40057         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
40058         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
40059         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
40060         WINT_MAX.  Check for C99 conformance more strictly, by detecting
40061         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
40062         not check for things that C99 does not require, e.g., int8_t.  If
40063         a test isn't needed unless <stdint.h> isn't working, and is
40064         unlikely to be needed for any other reason, then don't do it
40065         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
40066         size_t, since we assume C89 freestanding at least.  Do not check
40067         for sig_atomic_t, wchar_t, or wint_t, since the code now does
40068         the right thing even if the types are not defined.  Instead use:
40069         (gl_STDINT_TYPE_PROPERTIES): New macro.
40070         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
40071         testing whether <sys/types.h> clashes, as Autoconf does this for
40072         us now.  All uses removed.
40073         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
40074         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
40075         (gl_CHECK_TYPE_SAME):
40076         Remove; no longer needed.
40077         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
40078         exists, since we'll return 0 anyway in that case.
40079         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
40080
40081 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
40082
40083         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
40084         possible collision with system files.
40085         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
40086         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
40087         WCHAR_MIN and WCHAR_MAX in this case.
40088         (<stddef.h>): Do not include; no longer needed.
40089         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
40090         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
40091         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
40092         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
40093         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
40094         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
40095         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
40096         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
40097         !defined(__c99))]: Include in this case too, since it's harmless
40098         now.
40099         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
40100         dangerous to do so.
40101         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
40102         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
40103         (_STDINT_MIN, _STDINT_MAX): New macros.
40104         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
40105         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
40106         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
40107         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
40108         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
40109         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
40110         macros, not typedefs; this simplifies things quite a bit.
40111         Use long int for all types narrower than int64_t.
40112         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
40113         Define in terms of long long int or int64_t or long int,
40114         not int64_t or int32_t.  This saves some compile-time testing.
40115         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
40116         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
40117         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
40118         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
40119         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
40120         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
40121         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
40122         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
40123         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
40124         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
40125         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
40126         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
40127         undef any previous version and define our own version, for
40128         simplicity and consistency with the new macros for types.
40129         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
40130         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
40131         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
40132         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
40133         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
40134         @WINT_T_SUFFIX@ to keep things simple here.
40135         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
40136         Simplify by assuming typical 8/16/32/64 host, since we're
40137         already doing that elsewhere anyway.
40138         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
40139         and assume long long int is 64 bits if available.  This
40140         speeds up 'configure'.
40141
40142 2006-07-01  Eric Blake  <ebb9@byu.net>
40143
40144         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
40145         Reported by Andreas Buening.
40146
40147 2006-07-01  Eric Blake  <ebb9@byu.net>
40148
40149         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
40150
40151 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
40152
40153         * lib/getaddrinfo.c: fixed typo
40154
40155 2006-06-29  Jim Meyering  <jim@meyering.net>
40156
40157         * modules/strftime (Maintainer): Add my name, since with the
40158         FPRINTFTIME changes strftime.c has forked from glibc.
40159
40160 2006-06-29  Eric Blake  <ebb9@byu.net>
40161
40162         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
40163
40164 2006-06-29  Eric Blake  <ebb9@byu.net>
40165
40166         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
40167
40168 2006-06-29  Eric Blake  <ebb9@byu.net>
40169
40170         * lib/stat_.h: New file.
40171
40172 2006-06-29  Eric Blake  <ebb9@byu.net>
40173
40174         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
40175         unused static function.
40176
40177 2006-06-29  Eric Blake  <ebb9@byu.net>
40178
40179         * doc/functions.texi (Function Portability): Document missing lstat
40180         on mingw.
40181
40182 2006-06-29  Eric Blake  <ebb9@byu.net>
40183
40184         * MODULES.html.sh: Add sys_stat.
40185         * modules/sys_stat: New module.
40186         * modules/mkstemp (Depends-on): Add sys_stat.
40187
40188 2006-06-29  Derek R. Price  <derek@ximbiot.com>
40189
40190         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
40191
40192 2006-06-29  Derek R. Price  <derek@ximbiot.com>
40193
40194         * m4/c-bs-a.m4: Removed.
40195
40196 2006-06-29  Derek R. Price  <derek@ximbiot.com>
40197
40198         * lib/strftime.c: Assume strftime() exists.
40199
40200 2006-06-29  Derek Price  <derek@ximbiot.com>
40201
40202         * modules/c-bs-a: Removed - \a is C89.
40203         * MODULES.html.sh: Remove c-bs-a.
40204
40205 2006-06-29  Bruno Haible  <bruno@clisp.org>
40206
40207         * modules/wcwidth (License): Change to LGPL.
40208
40209 2006-06-28  Simon Josefsson  <jas@extundo.com>
40210
40211         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
40212         on _WIN32.
40213
40214         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
40215         getnameinfo.
40216
40217 2006-06-28  Simon Josefsson  <jas@extundo.com>
40218
40219         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
40220
40221 2006-06-28  Simon Josefsson  <jas@extundo.com>
40222
40223         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
40224         functions there.  It will succeed on Windows XP, but on Windows
40225         2000 and (presumably) earlier, it will fail, and use the internal
40226         re-implementation.
40227         (use_win32_p): New function.
40228         (getaddrinfo): Use strtoul on servname, to support numeric ports.
40229         Support AI_NUMERICSERV to disable getservbyname.
40230         (getnameinfo): New function, only supports
40231         NI_NUMERICHOST|NI_NUMERICSERV for now.
40232
40233         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
40234         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
40235         getnameinfo.
40236
40237 2006-06-28  Eric Blake  <ebb9@byu.net>
40238
40239         * modules/wcwidth: New file.
40240         * modules/mbchar (Depends-on): Add wcwidth.
40241         * modules/mbswidth (Depends-on): Add wcwidth.
40242         * MODULES.html.sh: Add wcwidth.
40243
40244 2006-06-28  Eric Blake  <ebb9@byu.net>
40245
40246         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
40247         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
40248
40249 2006-06-28  Eric Blake  <ebb9@byu.net>
40250
40251         * lib/xvasprintf.h: Fix comments.
40252
40253 2006-06-28  Eric Blake  <ebb9@byu.net>
40254
40255         * lib/mbchar.h (wcwidth): Include wcwidth.h.
40256         * lib/mbswidth.c (wcwidth): Move from here...
40257         * lib/wcwidth.h: ...to this new file.
40258
40259 2006-06-28  Derek R. Price  <derek@ximbiot.com>
40260
40261         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
40262
40263         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
40264         it's obsolete.
40265         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
40266
40267 2006-06-28  Derek R. Price  <derek@ximbiot.com>
40268
40269         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
40270         Autoconf 2.60 says this stuff was obsolete.
40271
40272 2006-06-28  Bruno Haible  <bruno@clisp.org>
40273
40274         * modules/wcwidth (Files): Add m4/wchar_t.m4.
40275
40276 2006-06-28  Bruno Haible  <bruno@clisp.org>
40277
40278         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
40279         gt_TYPE_WCHAR_T.
40280
40281 2006-06-28  Bruno Haible  <bruno@clisp.org>
40282
40283         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
40284         declaration for wcwidth.
40285         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
40286
40287 2006-06-28  Bruno Haible  <bruno@clisp.org>
40288
40289         * lib/mkdtemp.c [MINGW]: Include <io.h>.
40290         (mkdir): Define using _mkdir.
40291
40292 2006-06-28  Bruno Haible  <bruno@clisp.org>
40293
40294         * lib/getaddrinfo.h: Fix POSIX URL.
40295         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
40296         _WIN32.
40297         (use_win32_p): Make static.
40298         (getaddrinfo): Reject service name if it is empty or does not consist
40299         solely of decimal digits, or if its value is > 65535.
40300         (getnameinfo): Remove useless casts.
40301
40302 2006-06-27  Simon Josefsson  <jas@extundo.com>
40303
40304         * modules/sys_select: New file, suggested by Bruno Haible, Paul
40305         Eggert and Martin Lambers.
40306
40307 2006-06-27  Simon Josefsson  <jas@extundo.com>
40308
40309         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
40310         Eggert and Martin Lambers.
40311
40312 2006-06-27  Bruno Haible  <bruno@clisp.org>
40313
40314         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
40315         result to 0, not to empty.
40316         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
40317
40318 2006-06-27  Bruno Haible  <bruno@clisp.org>
40319
40320         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
40321
40322 2006-06-26  Simon Josefsson  <jas@extundo.com>
40323
40324         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
40325         present.
40326
40327 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
40328
40329         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
40330         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
40331         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
40332
40333 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
40334
40335         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
40336
40337 2006-06-26  Bruno Haible  <bruno@clisp.org>
40338
40339         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
40340
40341 2006-06-26  Bruno Haible  <bruno@clisp.org>
40342
40343         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
40344
40345 2006-06-26  Bruno Haible  <bruno@clisp.org>
40346
40347         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
40348         SGI C compiler in pre-C99 mode.
40349         Suggested by Mark D. Baushke and Larry Jones.
40350
40351 2006-06-26  Bruno Haible  <bruno@clisp.org>
40352
40353         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
40354         WCHAR_MAX.
40355         Reported by Mark D. Baushke and Larry Jones.
40356
40357 2006-06-26  Bruno Haible  <bruno@clisp.org>
40358
40359         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
40360         in pre-C99 mode.
40361         Suggested by Mark D. Baushke and Larry Jones.
40362
40363 2006-06-23  Simon Josefsson  <jas@extundo.com>
40364             Bruno Haible  <bruno@clisp.org>
40365
40366         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
40367         Emit mostlyclean-local rule.
40368         (func_emit_tests_Makefile_am): Likewise.
40369         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
40370
40371 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
40372
40373         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
40374
40375 2006-06-23  Bruno Haible  <bruno@clisp.org>
40376
40377         * tests/test-stdint.c: Update to match ISO C 99 Technical
40378         Corrigendum 1.
40379
40380 2006-06-23  Bruno Haible  <bruno@clisp.org>
40381
40382         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
40383
40384 2006-06-23  Bruno Haible  <bruno@clisp.org>
40385
40386         * lib/stdint_.h: Treat IRIX like OpenBSD.
40387
40388 2006-06-23  Bruno Haible  <bruno@clisp.org>
40389
40390         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
40391         ISO C 99 Technical Corrigendum 1.
40392
40393 2006-06-22  Simon Josefsson  <jas@extundo.com>
40394
40395         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
40396         MinGW.
40397
40398 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
40399
40400         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
40401         needed.  Some compiler complained about some of them.  Problem reported
40402         by Larry Jones in
40403         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
40404
40405 2006-06-21  Simon Josefsson  <jas@extundo.com>
40406
40407         * tests/test-getaddrinfo.c: New file.
40408
40409         * modules/getaddrinfo-tests: New file.
40410
40411         * MODULES.html.sh: Add inet_pton.
40412
40413         * modules/inet_pton: New file.
40414
40415 2006-06-21  Simon Josefsson  <jas@extundo.com>
40416
40417         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
40418         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
40419         of using the (limited) gnulib implementation on Windows XP.
40420
40421         * m4/inet_pton.m4: New file.
40422
40423 2006-06-21  Simon Josefsson  <jas@extundo.com>
40424
40425         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
40426         variable.
40427
40428         * lib/socket_.h: Don't define WINVER.
40429
40430         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
40431         slightly modified to work in gnulib.
40432
40433 2006-06-21  Simon Josefsson  <jas@extundo.com>
40434
40435         * doc/gnulib.texi (Windows sockets): Add.
40436
40437 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
40438
40439         * lib/read-file.c (fread_file): Start with buffer allocation of
40440         0 bytes rather than 1 byte; this simplifies the code.
40441         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
40442         code to free buffer and save/restore errno.
40443         (internal_read_file): Remove unused local.
40444
40445 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
40446
40447         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
40448         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
40449         Problem reported by Denis Excoffier in
40450         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
40451
40452 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
40453
40454         * modules/sys_socket, modules/socklen: Include sys/types since
40455         FreeBSD 4.x's sys/socket.h needs it.
40456
40457 2006-06-19  Simon Josefsson  <jas@extundo.com>
40458
40459         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
40460
40461 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
40462
40463         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
40464
40465 2006-06-19  Bruno Haible  <bruno@clisp.org>
40466
40467         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
40468         and FULL_PATH_INTTYPES_H in angle brackets.
40469         Reported by Mark D. Baushke <mdb@gnu.org>.
40470
40471 2006-06-17  Eric Blake  <ebb9@byu.net>
40472
40473         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
40474         errno.
40475
40476 2006-06-17  Bruno Haible  <bruno@clisp.org>
40477
40478         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
40479         <sys/inttypes.h>.
40480
40481 2006-06-17  Bruno Haible  <bruno@clisp.org>
40482
40483         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
40484         whether errno is declared. Assume <errno.h> declares errno.
40485
40486 2006-06-17  Bruno Haible  <bruno@clisp.org>
40487
40488         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
40489
40490 2006-06-17  Bruno Haible  <bruno@clisp.org>
40491
40492         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
40493         problem on Solaris 2.5.1.
40494
40495 2006-06-16  Eric Blake  <ebb9@byu.net>
40496
40497         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
40498         * lib/unicodeio.c [!defined errno]: Likewise.
40499         * lib/strtol.c [!defined errno]: Likewise.
40500         * lib/strtod.c [!defined errno]: Likewise.
40501
40502 2006-06-15  Eric Blake  <ebb9@byu.net>
40503
40504         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
40505
40506 2006-06-15  Eric Blake  <ebb9@byu.net>
40507
40508         * config/srclist.txt (ssize_t.m4): Lose sync.
40509
40510 2006-06-15  Bruno Haible  <bruno@clisp.org>
40511
40512         * modules/stdint (Files): Include m4/full-header-path.m4,
40513         m4/size_max.m4, m4/wchar_t.m4.
40514         (Makefile.am): Many more substitutions.
40515         * modules/stdint-tests: New file.
40516         * tests/test-stdint.c: New file.
40517
40518 2006-06-15  Bruno Haible  <bruno@clisp.org>
40519
40520         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
40521         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
40522         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
40523         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
40524         gl_CHECK_TYPE_SAME): New macros.
40525
40526 2006-06-15  Bruno Haible  <bruno@clisp.org>
40527
40528         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
40529
40530 2006-06-15  Bruno Haible  <bruno@clisp.org>
40531
40532         * lib/stdint_.h: Rewritten to be fully auto-configured.
40533         Fixes bug on HP-UX/IA64.
40534
40535 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
40536
40537         * lib/getdate.y (__attribute__): Don't define if already defined.
40538         Problem reported by Larry Jones.
40539         * lib/utimens.c (__attribute__): Likewise.
40540
40541 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
40542
40543         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
40544         reported by Andreas Schwab.
40545
40546 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40547             Bruno Haible  <bruno@clisp.org>
40548
40549         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
40550         check for the declaration of strnlen and a run test that exposes the
40551         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
40552         rpl_strndup.
40553
40554 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40555             Bruno Haible  <bruno@clisp.org>
40556
40557         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
40558
40559 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40560
40561         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
40562         compile test, for Tru64 4.0D.
40563
40564 2006-05-28  Karl Berry  <karl@gnu.org>
40565
40566         * config/srclist.txt (printf-args.c): lose sync.
40567
40568 2006-05-26  Martin Lambers  <marlam@marlam.de>
40569
40570         * lib/getpass.c: Updates the test for the native W32 API, and adds
40571         missing includes, thus fixing compilation warnings.
40572
40573 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
40574
40575         * lib/exclude.c (exclude_fnmatch): New function.
40576         (excluded_file_name): Call exclude_fnmatch.
40577         * lib/exclude.h (excluded_file_name): New prototype
40578
40579 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
40580
40581         * lib/tempname.c (small_open, large_open): New macros.
40582         (__open, __open64) [!_LIBC]: Remove.
40583         (__gen_tempname): Use small_open and large_open instead of __open
40584         and __open64.  This fixes a portability bug on HP-UX 11.11i
40585         reported by Simon Wing-Tang in
40586         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
40587
40588 2006-05-24  Bruno Haible  <bruno@clisp.org>
40589
40590         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
40591         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
40592         Reported by Thorsten Maerz <torte@netztorte.de> via
40593         Aaron Stone <aaron@serendipity.cx>.
40594
40595 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
40596
40597         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
40598         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
40599         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
40600         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
40601         not really conditional on the cache.
40602         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
40603
40604 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
40605
40606         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
40607         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
40608         (my_usleep): Don't mishandle maximum value.
40609
40610 2006-05-19  Jim Meyering  <jim@meyering.net>
40611
40612         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
40613
40614 2006-05-17  Bruno Haible  <bruno@clisp.org>
40615
40616         Cygwin portability.
40617         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
40618
40619 2006-05-17  Bruno Haible  <bruno@clisp.org>
40620
40621         * lib/stdint_.h: Fix recognition of Cygwin.
40622
40623 2006-05-15  Bruno Haible  <bruno@clisp.org>
40624
40625         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
40626         on libtool patch by Ralf Wildenhues.
40627
40628 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
40629
40630         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
40631         test for C99 conformance; (bool) 0.5 is an integer constant
40632         expression, but (bool) -0.5 is not.  Problem reported by Fedor
40633         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
40634
40635 2006-05-11  Simon Josefsson  <jas@extundo.com>
40636
40637         * m4/xvasprintf.m4: Fix obvious typo.
40638
40639 2006-05-11  Jim Meyering  <jim@meyering.net>
40640
40641         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
40642         James Lemley.
40643
40644 2006-05-10  Simon Josefsson  <jas@extundo.com>
40645
40646         * lib/md4.c: Typo fix, update copyright years.
40647         (K1, K2): Don't use L because it turn computations into 64-bit on
40648         64-bit platforms.
40649
40650 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
40651
40652         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
40653         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
40654         unwanted sign propagation, e.g., on hosts with 64-bit int.
40655         There still are some problems with reeelly weird theoretical hosts
40656         (e.g., 33-bit int) but it's not worth worrying about now.
40657         * lib/sha1.c (rol): Likewise.
40658         (K1, K2, K3, K4): Remove unnecessary L suffix.
40659
40660 2006-05-10  Bruno Haible  <bruno@clisp.org>
40661
40662         * lib/des.c: Cast to avoid warnings.
40663
40664 2006-05-09  Bruno Haible  <bruno@clisp.org>
40665
40666         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
40667         (Depends-on): Depend also on xsize, stdarg.
40668         (configure.ac): Add gl_XVASPRINTF.
40669
40670 2006-05-09  Bruno Haible  <bruno@clisp.org>
40671
40672         * m4/xvasprintf.m4: New file.
40673
40674 2006-05-09  Bruno Haible  <bruno@clisp.org>
40675
40676         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
40677         (EOVERFLOW): Define fallback value.
40678         (xstrcat): New function.
40679         (xvasprintf): Recognize the special case of a string concatenation.
40680
40681 2006-05-08  Eric Blake  <ebb9@byu.net>
40682
40683         * gnulib-tool (func_version): Base copyright year on CVS date.
40684         (func_emit_copyright_notice): New function.
40685         (func_emit_lib_Makefile_am): Use it.
40686         (func_emit_tests_Makefile_am): Likewise.
40687         (func_import): Likewise.
40688
40689 2006-05-08  Bruno Haible  <bruno@clisp.org>
40690
40691         * modules/stdarg: New file.
40692         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
40693
40694 2006-05-08  Bruno Haible  <bruno@clisp.org>
40695
40696         * m4/stdarg.m4: New file, from GNU gettext.
40697
40698 2006-05-08  Bruno Haible  <bruno@clisp.org>
40699
40700         * config/srclist.txt (build-aux/config.rpath): different from latest
40701         release.
40702
40703 2006-05-08  Bruno Haible  <bruno@clisp.org>
40704
40705         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
40706
40707 2006-05-05  Jim Meyering  <jim@meyering.net>
40708
40709         * m4/warning.m4: New file, derived from bison's file by the same name.
40710
40711 2006-05-03  Bruno Haible  <bruno@clisp.org>
40712
40713         * lib/stdint_.h: Shorter URL.
40714         * lib/inttypes.h: Likewise.
40715
40716 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
40717
40718         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
40719
40720 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
40721
40722         * lib/verify.h: Document the internals better.  Most of this change
40723         was written by Bruno Haible.
40724
40725 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
40726
40727         * doc/verify.texi: New file, partly based on a proposal by
40728         Bruno Haible.
40729
40730 2006-05-02  Bruno Haible  <bruno@clisp.org>
40731
40732         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
40733         test from here...
40734         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
40735
40736 2006-04-29  Bruno Haible  <bruno@clisp.org>
40737
40738         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
40739         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
40740
40741 2006-04-29  Bruno Haible  <bruno@clisp.org>
40742
40743         * gnulib-tool: Make --update option actually work.
40744
40745 2006-04-29  Bruno Haible  <bruno@clisp.org>
40746
40747         * doc/gcd.texi: New file.
40748         * doc/gnulib.texi: Include it.
40749
40750 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
40751
40752         * lib/getdate.y (get_date): When adding relative date, start with the
40753         initial time, not with the result of the first mktime call.
40754
40755 2006-04-25  Bruno Haible  <bruno@clisp.org>
40756
40757         * gnulib-tool (func_import): Output the include directives in three
40758         blocks, sorted separately.
40759         Reported by Ben Pfaff <blp@cs.stanford.edu>.
40760
40761 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
40762
40763         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
40764         to define main with arguments, for C++.  Reported by Eric Blake.
40765         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
40766         Prefer 'int main ()' to 'int main (void)', for C++.
40767         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
40768         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
40769         for 'main', for C99 and C++.
40770
40771 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
40772
40773         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
40774         Don't assume that exit status -1 is valid.
40775         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
40776         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
40777         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
40778         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
40779         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
40780         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
40781         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
40782         functions can be used without declaring them, or that you can
40783         exit with status -1.
40784         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
40785
40786 2006-04-24  Karl Berry  <karl@gnu.org>
40787
40788         * config/srclist.txt (longdouble.m4): sync lost.
40789
40790 2006-04-24  Eric Blake  <ebb9@byu.net>
40791
40792         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
40793
40794 2006-04-24  Bruno Haible  <bruno@clisp.org>
40795
40796         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
40797         poll() implementation in AIX.
40798         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
40799
40800 2006-04-24  Bruno Haible  <bruno@clisp.org>
40801
40802         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
40803         assigned exactly once.
40804
40805 2006-04-23  Claudio Fontana  <claudio@gnu.org>
40806             Bruno Haible  <bruno@clisp.org>
40807
40808         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
40809         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
40810         for AM_CPPFLAGS.
40811
40812 2006-04-23  Bruno Haible  <bruno@clisp.org>
40813
40814         * modules/copy-file: Depend on unistd.
40815         * modules/execute: Likewise.
40816         * modules/fatal-signal: Likewise.
40817         * modules/findprog: Likewise.
40818         * modules/mkdtemp : Likewise.
40819         * modules/pipe: Likewise.
40820         * modules/wait-process: Likewise.
40821
40822 2006-04-23  Bruno Haible  <bruno@clisp.org>
40823
40824         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
40825         condition was already detected.
40826         Reported by Ben Pfaff <blp@cs.stanford.edu>.
40827
40828 2006-04-23  Bruno Haible  <bruno@clisp.org>
40829
40830         * lib/copy-file.c: Include <unistd.h> unconditionally.
40831         * lib/execute.c: Likewise.
40832         * lib/fatal-signal.c: Likewise.
40833         * lib/findprog.c: Likewise.
40834         * lib/mkdtemp.c: Likewise.
40835         * lib/pipe.h: Likewise.
40836         * lib/pipe.c: Likewise.
40837         * lib/wait-process.h: Likewise.
40838
40839 2006-04-23  Bruno Haible  <bruno@clisp.org>
40840
40841         * gnulib-tool (func_usage): Fix --import description. Document
40842         --update.
40843         (func_import): Create temporary file in a temporary directory, if
40844         --dry-run is specified. Silence errors from 'grep' when there are no
40845         m4 files in $m4dir.
40846         (func_create_testdir): Silence errors from 'grep' when there are no
40847         m4 files in $m4dir.
40848         Reported by Karl Berry <karl@freefriends.org>.
40849
40850 2006-04-20  Bruno Haible  <bruno@clisp.org>
40851
40852         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
40853         one argument, so that the code will be portable to Autoconf 2.60.
40854         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
40855         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
40856         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
40857
40858 2006-04-19  Derek Price  <derek@ximbiot.com>
40859             Eric Blake  <ebb9@byu.net>
40860
40861         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
40862         rather than "/full/path.h".  Update comment to match.  Shorten &
40863         generalize m4_translit call via AS_TR_CPP.
40864
40865 2006-04-19  Derek Price  <derek@ximbiot.com>
40866             Eric Blake  <ebb9@byu.net>
40867
40868         * lib/inttypes.h: Correct grammar in comment.
40869
40870 2006-04-18  Derek Price  <derek@ximbiot.com>
40871             Paul Eggert  <eggert@cs.ucla.edu>
40872
40873         * modules/inttypes: New file.
40874         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
40875
40876 2006-04-18  Derek Price  <derek@ximbiot.com>
40877             Paul Eggert  <eggert@cs.ucla.edu>
40878
40879         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
40880         New files.
40881
40882 2006-04-18  Derek Price  <derek@ximbiot.com>
40883             Paul Eggert  <eggert@cs.ucla.edu>
40884
40885         * lib/inttypes.h: New file.
40886         * lib/strtoimax.c: Assume <inttypes.h>.
40887
40888 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
40889
40890         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
40891         isn't mounted.  Problem reported by Kir Kolyshkin.
40892
40893 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
40894
40895         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
40896         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
40897         Derek R. Price.
40898         * lib/regex.h (RE_DUP_MAX): Update comment to match current
40899         implementation.
40900
40901 2006-04-12  Eric Blake  <ebb9@byu.net>
40902
40903         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
40904         is now done automatically by the corresponding Autoconf macro.
40905
40906 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
40907
40908         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
40909         time_r.h.
40910
40911 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
40912
40913         Merge regex changes from libc, removing some of our
40914         POSIX-conformance changes that were rejected and redoing them in a
40915         less-intrusive way.
40916
40917         * lib/regcomp.c (re_compile_internal, init_dfa):
40918         Length arg is now size_t, not Idx.  All uses changed.
40919         (peek_token): Forward decl now says internal_function.
40920         (__re_error_msgid, __re_error_msgid_idx):
40921         Now static rather than extern with attribute_hidden.
40922         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
40923         For some reason libc prefers K&R style defns for external functions.
40924         (regerror) [!defined _LIBC]: Likewise.
40925         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
40926         (seek_collating_symbol_entry, lookup_collation_sequence_value):
40927         (build_range_exp, build_collating_symbol):
40928         Use K&R-style defn.
40929         (re_compile_fastmap): Use '\0' to memset, not 0.
40930         (utf8_sb_map): Make the calculations more obvious.
40931         (init_dfa, parse_bracket_exp, build_charclass_op):
40932         Call calloc and cast result, as glibc does.
40933         (init_word_char, fetch_token, peek_token, peek_token_bracket):
40934         (build_range_exp, build_collating_symbol):
40935         Now internal functions.
40936
40937         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
40938
40939         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
40940         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
40941         Don't depend on VMS; depend on __VMS instead, for POSIX
40942         namespace cleanness.
40943         (regoff_t): Define to ssize_t, not long int.
40944
40945         Remove the REG_ macros named below.  Instead, make the old names
40946         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
40947         __USE_GNU_REGEX.
40948         (REG_BACKSLASH_ESCAPE_IN_LISTS):
40949         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
40950         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
40951         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
40952         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
40953         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
40954         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
40955         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
40956         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
40957         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
40958         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
40959         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
40960         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
40961         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
40962         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
40963         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
40964         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
40965         (REG_NREGS):
40966         Remove.  All uses replaced by the old RE_* names.
40967         (RE_BACKSLASH_ESCAPE_IN_LISTS):
40968         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
40969         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
40970         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
40971         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
40972         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
40973         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
40974         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
40975         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
40976         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
40977         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
40978         Don't bother having these macros be independent of each others'
40979         values, since they no longer exist in the POSIX name space.
40980
40981         Rename the following member names back to their old names,
40982         unless !__USE_GNU_REGEX.  All uses changed back.
40983         (buffer): Renamed from re_buffer.
40984         (allocated): Renamed from re_allocated.
40985         (used): Renamed from re_used.
40986         (syntax): Renamed from re_syntax.
40987         (fastmap): Renamed from re_fastmap.
40988         (translate): Renamed from re_translate.
40989         (can_be_null): Renamed from re_can_be_null.
40990         (regs_allocated): Renamed from re_regs_allocated.
40991         (fastmap_accurate): Renamed from re_fastmap_accurate.
40992         (no_sub): Renamed from re_no_sub.
40993         (not_bol): Renamed from re_not_bol.
40994         (not_eol): Renamed from re_not_eol.
40995         (newline_anchor): Renamed from re_newline_anchor.
40996         (num_regs): Renamed from rm_num_regs.
40997         (start): Renamed from rm_start.
40998         (end): Renamed from rm_end.
40999
41000         (free_state): Move up a bit.
41001
41002         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
41003         #define to be empty.
41004         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
41005         when that is what is intended.
41006         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
41007         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
41008         (MAX): New macro.
41009         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
41010         All uses changed back to re_malloc, etc.  It's now the caller's
41011         responsibility to check for overflow; all callers changed.
41012         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
41013         (re_x2nrealloc): Remove.
41014         (free_state): Remove decl.
41015
41016         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
41017         (re_set_registers, re_exec):
41018         Use K&R-style defn.
41019
41020         2006-01-31  Roland McGrath  <roland@redhat.com>
41021
41022         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
41023         Reported by Mike Frysinger <vapier@gentoo.org>.
41024
41025         2006-01-15  Andreas Jaeger  <aj@suse.de>
41026
41027         [BZ #1950]
41028         * lib/regex_internal.c (re_string_reconstruct): Adjust for
41029         build_wcs_upper_buffer change.
41030         (build_wcs_upper_buffer): Change return type.
41031
41032         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
41033
41034         * lib/regex_internal.h: Include <stdint.h> if available.
41035
41036         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
41037
41038         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
41039
41040         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
41041
41042         * lib/regcomp.c: Adjust for changed secondary hash function.
41043
41044         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
41045
41046         * lib/regex.h: Pretty printing.
41047         Clean up namespace a bit.
41048
41049         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
41050
41051         * lib/regexec.c (update_cur_sifted_state, check_arrival,
41052         check_arrival_add_next_nodes): Avoid using uninitialized variable.
41053
41054         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
41055                     Ulrich Drepper  <drepper@redhat.com>
41056
41057         [BZ #1302]
41058         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
41059         changed.
41060         (bitset_word_t): Renamed from bitset_word.  All uses changed.
41061
41062         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
41063
41064         [BZ #281]
41065         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
41066         * lib/regcomp.c: Remove unnecessary uses of
41067         unsigned RE_TRANSLATE_TYPE.
41068         * lib/regex_internal.h: Likewise.
41069         * lib/regex_internal.c: Likewise.
41070         * lib/regexec.c: Likewise.
41071         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
41072
41073         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
41074
41075         * lib/regexec.c (find_recover_state): Remove unnecessary
41076         initialization.
41077         (transit_state_bkref): Make DFA a const pointer.
41078         (get_subexp): Likewise.
41079         (check_arrival): Likewise.
41080         (update_cur_sifted_state): Likewise.
41081         (re_search_internal): Likewise.
41082         (prune_impossible_nodes): Likewise.
41083         (acquire_init_state_context): Likewise.
41084         (proceed_next_node): Likewise.
41085         (set_regs): Likewise.
41086         (free_fail_stack_return): Likewise.
41087         (check_arrival_expand_ecl): Mark DFA parameter as const.
41088         (check_arrival_expand_ecl_sub): Likewise.
41089         (check_subexp_limits): Likewise.
41090         (sub_epsilon_src_nodes):  Likewise.
41091         (add_epsilon_src_nodes):  Likewise.
41092         (merge_state_array): Likewise.
41093         (update_regs): Likewise.
41094         (build_trtable): Likewise.
41095         (sift_states_backward): Mark MCTX parameter as const.
41096         (build_sifted_states): Likewise.
41097         (update_cur_sifted_state): Likewise.
41098         (sift_states_mkref): Likewise.
41099         (check_arrival_expand_ecl): Mark eclosure as const.
41100         (check_dst_limits_calc_pos_1): Likewise.
41101         * lib/regex_internal.h (re_match_context_t): Make dfa a const
41102         pointer.
41103
41104         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
41105
41106         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
41107         (transit_state_sb): Likewise.
41108         (transit_state_mb): Likewise.
41109         (sift_states_iter_mb): Likewise.
41110         (check_arrival_add_next_nodes): Likewise.
41111         (check_node_accept_bytes): Change first parameter to pointer-to-const.
41112         [_LIBC] (re_search_2_stub): Use mempcpy.
41113
41114         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
41115         mbrtowc for very simple UTF-8 case.
41116
41117         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
41118         a pointer-to-const.
41119         (re_acquire_state_context): Likewise.
41120         * lib/regex_internal.h: Adjust prototypes.
41121
41122         * lib/regex.c: Prevent using C++ compilers.
41123
41124         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
41125         (re_acquire_state_context): Likewise.
41126
41127 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
41128
41129         * modules/regex (Depends-on): Add ssize_t.
41130
41131 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
41132
41133         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
41134         translation table.
41135
41136 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
41137
41138         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
41139
41140 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
41141             Bruno Haible  <bruno@clisp.org>
41142
41143         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
41144         <sys/types.h> and <inttypes.h>.
41145
41146 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41147
41148         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
41149         `__error_t_defined', so argp.h will not typedef the former.
41150
41151 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
41152
41153         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
41154         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
41155         glibc names.  Even if glibc is changed to conform to POSIX, the
41156         traditional names will be available anyway, since regex depends on
41157         the extensions module.  Also, fix a longstanding typo in the
41158         implementation of Spencer ERE test #75 from grep 2.3.  Problems
41159         reported by Emanuele Giaquinta.  Also, change sense of cached
41160         variable, so that the message makes sense.
41161
41162 2006-03-24  Simon Josefsson  <jas@extundo.com>
41163
41164         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
41165         including some doc fixes.
41166         (base64_encode_alloc): Fix +1 bug on allocation failures.
41167
41168 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41169
41170         * lib/base64.c (base64_encode): Do not read past end of array with
41171         unsanitized input on systems with CHAR_BIT > 8.
41172
41173 2006-03-24  Eric Blake  <ebb9@byu.net>
41174
41175         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
41176
41177 2006-03-22  Karl Berry  <karl@gnu.org>
41178
41179         * config/srclist.txt (*setenv.[ch]): get from coreutils.
41180         * config/srclistvars.sh (COREUTILS): new var.
41181
41182 2006-03-17  Jim Meyering  <jim@meyering.net>
41183
41184         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
41185         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
41186
41187 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
41188
41189         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
41190         no longer needs it.  Instead, check that regoff_t is as least
41191         as wide as ptrdiff_t.
41192
41193         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
41194         so that our regex.h stays compatible with the installed regex.
41195         This is helpful for installers who configure --without-included-regex.
41196         Problem reported by Emanuele Giaquinta.
41197
41198 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
41199
41200         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
41201         Typedef to long int, not to off_, as POSIX will likely change
41202         in that direction.
41203
41204 2006-03-15  Eric Blake  <ebb9@byu.net>
41205
41206         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
41207
41208 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
41209
41210         * lib/argp-help.c (validate_uparams): Fix typo
41211         * lib/argp-parse.c (argp_default_options): Consistently begin help
41212         messages with a lowercase letter.
41213
41214 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
41215
41216         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
41217         overrun buffers and shouldn't be used (much as gets shouldn't be
41218         used).
41219         * lib/time_r.c (asctime_r, ctime_r): Likewise.
41220
41221 2006-03-08  Simon Josefsson  <jas@extundo.com>
41222
41223         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
41224         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
41225
41226 2006-03-08  Simon Josefsson  <jas@extundo.com>
41227
41228         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
41229         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
41230
41231 2006-03-08  Simon Josefsson  <jas@extundo.com>
41232
41233         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
41234         signal that configure disabled the device.
41235
41236 2006-03-08  Simon Josefsson  <jas@extundo.com>
41237
41238         * build-aux/maint.mk: Fix refresh-po, to handle no translated
41239         languages.
41240
41241 2006-03-07  Simon Josefsson  <jas@extundo.com>
41242
41243         * modules/getopt (Depends-on): Add unistd.
41244
41245         * modules/unistd: New file.
41246
41247 2006-03-07  Simon Josefsson  <jas@extundo.com>
41248
41249         * modules/gc-random: New file.
41250
41251 2006-03-07  Simon Josefsson  <jas@extundo.com>
41252
41253         * m4/unistd_h.m4: New file.
41254
41255 2006-03-07  Simon Josefsson  <jas@extundo.com>
41256
41257         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
41258         test to be side-effect free by storing the result in the cache
41259         variable gl_cv_lib_readline, and moving the assignment of
41260         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
41261         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
41262
41263 2006-03-07  Simon Josefsson  <jas@extundo.com>
41264
41265         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
41266         error on missing devices (the functions will return an error).
41267
41268         * m4/gc.m4: Move random stuff to gc-random.m4
41269
41270 2006-03-07  Simon Josefsson  <jas@extundo.com>
41271
41272         * lib/unistd_.h: New file.
41273
41274 2006-03-07  Simon Josefsson  <jas@extundo.com>
41275
41276         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
41277
41278 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
41279
41280         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
41281         Problem reported by Juan Manuel Guerrero.
41282
41283 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
41284
41285         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
41286         the unistd module.
41287         * lib/getlogin_r.c: Likewise.
41288         * lib/getlogin_r.h: Likewise.
41289         * lib/glob.c: Likewise.
41290         * lib/pagealign_alloc.c: Likewise.
41291         * lib/unistd_.h: Remove; no longer needed.
41292
41293 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
41294
41295         * MODULES.html.sh (Support for systems lacking POSIX:2001):
41296         Add unistd.
41297         * modules/c-stack (Depends-on): Add unistd.
41298         * modules/getlogin_r: Likewise.
41299         * modules/glob: Likewise.
41300         * modules/pagealign_alloc: Likewise.
41301         * modules/unistd (Files): Remove lib/unistd_.h.
41302         (EXTRA_DIST): Remove.
41303         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
41304         need unistd_.h.
41305         (MOSTLYCLEANFILES): Remove unistd.h-t.
41306
41307 2006-03-03  Simon Josefsson  <jas@extundo.com>
41308
41309         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
41310
41311 2006-03-03  Simon Josefsson  <jas@extundo.com>
41312
41313         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
41314         libidn and bison.
41315
41316 2006-03-03  Simon Josefsson  <jas@extundo.com>
41317
41318         * build-aux/maint.mk: Add indent target.
41319
41320 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
41321
41322         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
41323         our replacement poll.h in any case, to avoid a differing
41324         declaration from a system header.  Seen on AIX.
41325
41326 2006-03-01  Simon Josefsson  <jas@extundo.com>
41327
41328         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
41329         <kasal@ucw.cz>.
41330
41331 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
41332
41333         * modules/gettime (Depends-on): Add extensions module.
41334         * modules/nanosleep (Depends-on): Likewise.
41335         * modules/settime (Depends-on): Likewise.
41336
41337 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
41338
41339         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
41340         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
41341         pedantically.
41342         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
41343         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
41344
41345         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
41346         not "==".  Reported by Ralf Wildenhues.
41347
41348 2006-03-01  Karl Berry  <karl@gnu.org>
41349
41350         * doc/Copyright/request-*: new files, synced from gnuorg.
41351
41352 2006-03-01  Karl Berry  <karl@gnu.org>
41353
41354         * config/srclist.txt (Copyright/*): new entries.
41355
41356 2006-02-28  Simon Josefsson  <jas@extundo.com>
41357
41358         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
41359
41360 2006-02-27  Simon Josefsson  <jas@extundo.com>
41361
41362         * lib/base64.h: Indent #define's.  From Jim Meyering
41363         <jim@meyering.net>.
41364
41365 2006-02-27  Jim Meyering  <jim@meyering.net>
41366
41367         Revert the change of 2006-02-24, so these files can continue
41368         to be sync'd from gettext.
41369         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
41370         of `config.h'.
41371
41372 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
41373
41374         * modules/intprops: New file.
41375         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
41376         Add intprops.
41377         * modules/getloadavg (Files): Remove lib/intprops.h.
41378         (Depends-on): Add intprops.
41379         * modules/human: Likewise.
41380         * modules/inttostr: Likewise.
41381         * modules/openat: Likewise.
41382         * modules/sig2str: Likewise.
41383         * modules/userspec: Likewise.
41384         * modules/utimecmp: Likewise.
41385         * modules/xnanosleep: Likewise.
41386         * modules/xstrtol: Likewise.
41387
41388 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
41389
41390         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
41391         * modules/lock-tests (TESTS): Use $(EXEEXT).
41392         * modules/tls-tests: Likewise.
41393         * modules/argp-tests: Likewise.
41394         (check_PROGRAMS): New var, replacing...
41395         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
41396
41397 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41398
41399         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
41400         `config.h'.
41401
41402 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
41403
41404         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
41405
41406 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41407
41408         Sync from coreutils.
41409         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
41410         gl_CHDIR_SAFER.
41411
41412 2006-02-22  Jim Meyering  <jim@meyering.net>
41413
41414         Sync from coreutils.
41415         * m4/chdir-safer.m4: New file.
41416
41417 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
41418
41419         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
41420         AT_FDCWD exceeds INT_MAX.
41421         * lib/openat.h (AT_FDCWD): Likewise.
41422
41423 2006-02-17  Eric Blake  <address@hidden>
41424
41425         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
41426
41427 2006-02-16  Simon Josefsson  <jas@extundo.com>
41428
41429         * modules/getaddrinfo (Depends-on): Add sys_socket.
41430
41431 2006-02-15  Simon Josefsson  <jas@extundo.com>
41432
41433         * build-aux/maint.mk: Add dsyntax-check rule.
41434
41435 2006-02-15  Eric Blake  <ebb9@byu.net>
41436
41437         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
41438         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
41439         'present but cannot compile' warnings on cygwin.
41440         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
41441         use ws2tcpip.h if sys/socket.h works.
41442         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
41443         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
41444
41445 2006-02-14  Simon Josefsson  <jas@extundo.com>
41446
41447         * modules/maintainer-makefile (Files): Rename.
41448
41449         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
41450         and (the local) Makefile.cfg to maint-cfg.mk.
41451
41452         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
41453         to the latter.
41454
41455         * modules/maintainer-makefile: New module.
41456
41457         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
41458         severaly stripped to make it possible to build it up from scratch
41459         with reliable tests.
41460
41461         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
41462         fixes to permit overriding the default actions when configure and
41463         makefile are not available.
41464
41465 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
41466
41467         Sync from coreutils.
41468         * modules/lstat (Depends-on): Don't depend on xalloc.
41469         (License): Change from GPL to LGPL, since this is now simply a
41470         replacement for a libc function.
41471
41472 2006-02-14  Jim Meyering  <jim@meyering.net>
41473
41474         Sync from coreutils.
41475
41476         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
41477         failure on deficient systems, and simplify gnulib lgpl dependencies.
41478         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
41479         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
41480
41481         * lib/xalloc-die.c: Remove unused definition of N_.
41482
41483 2006-02-14  Jim Meyering  <jim@meyering.net>
41484
41485         Sync from coreutils.
41486         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
41487         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
41488         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
41489         double-quote uses of that variable, to accommodate the rare case in
41490         which getmntent is available in none of the libraries checked.  This
41491         happens at least on FreeBSD 5.0.
41492
41493 2006-02-13  Simon Josefsson  <jas@extundo.com>
41494
41495         * gnulib-tool (Usage): Fix --import, from
41496         karl@freefriends.org (Karl Berry).
41497
41498 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
41499
41500         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
41501
41502 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
41503
41504         * lib/argp-namefrob.h: Restore changes accidentally lost during the
41505         "autoupdate" on 2005-12-12.
41506
41507 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
41508
41509         * modules/closeout (Depends-on): Remove atexit.
41510
41511 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
41512
41513         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
41514         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
41515
41516 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
41517
41518         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
41519         __EXTENSIONS__ if this causes compilation to fail.  Problem
41520         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
41521         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
41522
41523 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
41524
41525         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
41526         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
41527         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
41528         All uses changed.
41529
41530 2006-01-26  Simon Josefsson  <jas@extundo.com>
41531
41532         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
41533         prototype is visible on mingw32.
41534
41535         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
41536         for mingw32.
41537
41538         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
41539         mingw32).
41540
41541 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
41542
41543         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
41544         attempt to open for write; this always fails, at least on POSIX
41545         hosts.  This reinstates the 2006-01-09 change, which was
41546         inadvertently removed.
41547
41548 2006-01-26  Bruno Haible  <bruno@clisp.org>
41549
41550         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
41551         Reported by Paul Eggert.
41552
41553 2006-01-26  Bruno Haible  <bruno@clisp.org>
41554             Paul Eggert  <eggert@cs.ucla.edu>
41555
41556         * lib/stdbool_.h (_Bool)
41557         [(! (defined __cplusplus || defined __BEOS__)
41558           && !defined __GNUC__
41559           && !(defined __HP_cc || defined __xlc__
41560                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
41561                || defined __sgi))]:
41562         #define to signed char in these cases too; this simplifies
41563         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
41564         etc., separately) and makes it more conservative.
41565
41566 2006-01-25  Simon Josefsson  <jas@extundo.com>
41567
41568         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
41569         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
41570         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
41571
41572 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
41573
41574         * lib/argp-namefrob.h: Bugfix. Remove stray #
41575
41576 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
41577
41578         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
41579         so that we test the test.
41580         Check for yet another HP-UX cc bug involving *bool |= bool.
41581
41582 2006-01-25  Karl Berry  <karl@gnu.org>
41583
41584         * config/srclist.txt (vasnprintf.c): sync lost.
41585
41586 2006-01-25  Jim Meyering  <jim@meyering.net>
41587
41588         Sync from the stable (b5) branch of coreutils:
41589
41590         * lib/fts.c (fts_children): Don't let close() clobber errno from
41591         failed fchdir().
41592
41593         * lib/fts.c (fts_stat): When following a symlink-to-directory,
41594         don't necessarily interpret stat-fails+lstat-succeeds as indicating
41595         a dangling symlink.  That can also happen at least for ELOOP.
41596         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
41597         FYI, this bug predates the inclusion of fts.c in coreutils.
41598
41599         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
41600         in their own block, so pre-c99 compilers don't object.
41601
41602         Avoid the double-free (first in fts_read, second in fts_close) that
41603         would occur when an `active' directory is made inaccessible (e.g.,
41604         via chmod a-x) during a traversal.
41605         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
41606         before returning.  Reproduce this failure by
41607         mkdir -p a/b; cd a; chmod a-x . b
41608         Reported by Stavros Passas.
41609
41610 2006-01-25  Jim Meyering  <jim@meyering.net>
41611
41612         * lib/fileblocks.c: Remove more useless parentheses.
41613         * lib/readutmp.h: Likewise.
41614
41615 2006-01-25  Bruno Haible  <bruno@clisp.org>
41616
41617         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
41618         warnings.
41619         Reported by Paul Eggert.
41620
41621 2006-01-25  Bruno Haible  <bruno@clisp.org>
41622
41623         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
41624         rid of a trap command. For Solaris sh.
41625         Reported by Mark D. Baushke <mdb@gnu.org>.
41626
41627 2006-01-24  Simon Josefsson  <jas@extundo.com>
41628
41629         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
41630         Bruno.
41631
41632 2006-01-24  Karl Berry  <karl@gnu.org>
41633
41634         * config/srclist.txt (argp-namefrob.h): sync lost.
41635
41636 2006-01-24  Jim Meyering  <jim@meyering.net>
41637
41638         * modules/openat (Files): Add lib/intprops.h.
41639         From Mark D. Baushke.
41640
41641 2006-01-24  Jim Meyering  <jim@meyering.net>
41642
41643         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
41644         Reported by Mark D. Baushke.
41645
41646 2006-01-24  Jim Meyering  <jim@meyering.net>
41647
41648         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
41649
41650 2006-01-24  Bruno Haible  <bruno@clisp.org>
41651
41652         * modules/strnlen (Maintainer): Change from glibc to all.
41653
41654 2006-01-24  Bruno Haible  <bruno@clisp.org>
41655
41656         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
41657         Patch by Paul Eggert.
41658
41659 2006-01-24  Bruno Haible  <bruno@clisp.org>
41660
41661         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
41662         already has it.
41663         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
41664         2005-11-26.
41665
41666         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
41667         'signed char' to avoid problems with the built-in _Bool type.
41668         Reported by Paul Eggert on 2005-11-26.
41669
41670 2006-01-24  Bruno Haible  <bruno@clisp.org>
41671
41672         * gnulib-tool (func_import): Avoid constructing complicated sed
41673         expressions inside backquote.
41674         Report and solution by Mark D. Baushke <mdb@gnu.org>.
41675
41676 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
41677
41678         These changes imported from libc.
41679         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
41680         test and two separate function calls.
41681         * lib/strndup.c (__strndup): Add libc_hidden_def.
41682
41683 2006-01-23  Simon Josefsson  <jas@extundo.com>
41684
41685         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
41686         Remove the test_*_SOURCES variable: automake infers it by default.
41687         * modules/tls-tests: Likewise.
41688
41689 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
41690
41691         Work around porting bugs reported by Dieter in
41692         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
41693         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
41694         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
41695         Include "getopt.h" first, to check interface.
41696         (getenv): Declare only if defined HAVE_DECL_GETENV &&
41697         !HAVE_DECL_GETENV.
41698         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
41699         (__strndup): Revert to K&R-style function dfns, the glibc style.
41700         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
41701         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
41702         Include strnlen.h first, to get prototype properly.
41703         (strnlen): Renamed from __strnlen.
41704         Remove weak alias.
41705
41706 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
41707
41708         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
41709
41710 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
41711
41712         * config/srclist.txt: Adjust to reflect glibc reorganization.
41713         This affects only comments.
41714
41715 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
41716
41717          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
41718          Reported by Bruce Korb <bkorb@gnu.org>.
41719
41720 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
41721
41722         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
41723         to pacify gcc -Wswitch-default.
41724
41725 2006-01-22  Bruno Haible  <bruno@clisp.org>
41726
41727         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
41728         temporary buffer for sprintf, take into account the precision also
41729         for 'd', 'i', 'u', 'o', 'x', 'X'.
41730
41731 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
41732
41733         * modules/argp-tests: New module
41734         * tests/test-argp.c: New file
41735         * tests/test-argp-2.sh: New file
41736
41737 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
41738
41739         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
41740         (__argp_base_name): Removed
41741         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
41742         typo.
41743         (__argp_base_name): Provide macro definition or extern declaration
41744         depending on the configuration
41745
41746 2006-01-20  Simon Josefsson  <jas@extundo.com>
41747
41748         * modules/inet_ntop (Depends-on): Depend on sys_socket.
41749
41750 2006-01-20  Simon Josefsson  <jas@extundo.com>
41751
41752         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
41753
41754 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
41755
41756         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
41757         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
41758         Suggested by Bruno Haible.
41759
41760 2006-01-20  Karl Berry  <karl@gnu.org>
41761
41762         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
41763         until changes propagate, I guess.
41764
41765 2006-01-19  Simon Josefsson  <jas@extundo.com>
41766
41767         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
41768
41769 2006-01-19  Simon Josefsson  <jas@extundo.com>
41770
41771         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
41772
41773 2006-01-19  Simon Josefsson  <jas@extundo.com>
41774
41775         * gnulib-tool: Set check_PROGRAMS.
41776
41777         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
41778         modules/des-tests, modules/gc-arcfour-tests,
41779         modules/gc-arctwo-tests, modules/gc-des-tests,
41780         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
41781         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
41782         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
41783         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
41784         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
41785         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
41786         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
41787         test_*_SOURCES.
41788
41789 2006-01-18  Simon Josefsson  <jas@extundo.com>
41790
41791         * modules/socklen (Depends-on): Depend on sys_socket.
41792
41793 2006-01-18  Simon Josefsson  <jas@extundo.com>
41794
41795         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
41796         modules/des-tests, modules/gc-arcfour-tests,
41797         modules/gc-arctwo-tests, modules/gc-des-tests,
41798         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
41799         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
41800         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
41801         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
41802         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
41803         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
41804         $(EXEEXT) to automake TESTS variable, for mingw32.
41805
41806 2006-01-17  Simon Josefsson  <jas@extundo.com>
41807
41808         * modules/socklen (Include): Need sys/socket.h.
41809
41810 2006-01-17  Bruno Haible  <bruno@clisp.org>
41811
41812         * modules/ssize_t (Include): Add <sys/types.h>.
41813
41814 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
41815
41816         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
41817         it's not portable and it doesn't work with cross-compiles.
41818         Problem reported by Bruno Haible.  Fix missing-$ typo in
41819         'test "gl_cv_ignore_unused_libraries" ...' that prevented
41820         -zignore from being used with Sun's C compiler.
41821
41822 2006-01-12  Simon Josefsson  <jas@extundo.com>
41823
41824         * lib/base64.c: Fix warning, reported by Bruno Haible
41825         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
41826
41827 2006-01-12  Bruno Haible  <bruno@clisp.org>
41828
41829         * modules/ldd: New file.
41830         * build-aux/ldd.sh.in: New file.
41831         * MODULES.html.sh (Support for building libraries and executables): Add
41832         ldd.
41833
41834 2006-01-12  Bruno Haible  <bruno@clisp.org>
41835
41836         * m4/ldd.m4: New file.
41837
41838 2006-01-12  Bruno Haible  <bruno@clisp.org>
41839
41840         * gnulib-tool (func_import, func_create_testdir): Don't go into an
41841         endless loop while replacing $auxdir with build-aux.
41842
41843 2006-01-11  Simon Josefsson  <jas@extundo.com>
41844
41845         * lib/stdint_.h (SIZE_MAX): Add missing (.
41846
41847 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
41848
41849         Sync from coreutils.
41850         * lib/md5.c: Fix commentary typos.
41851         (alignof, UNALIGNED_P): No need for a GCC-specific version.
41852         * lib/md5.h (__attribute__): Remove; unused.
41853         * lib/sha1.c: Fix commentary to match md5 better.
41854         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
41855         so that we don't need to worry about alignment.  All uses changed.
41856         This merges the 2005-10-28 md5 change into sha1.
41857
41858 2006-01-11  Jim Meyering  <jim@meyering.net>
41859
41860         Sync from coreutils.
41861         * lib/md5.c (OP): Fix spacing.
41862
41863 2006-01-11  Bruno Haible  <bruno@clisp.org>
41864
41865         Ensure automatic ordering between gl_LOCK and gl_ARGP.
41866         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
41867         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
41868
41869 2006-01-11  Bruno Haible  <bruno@clisp.org>
41870
41871         Ensure automatic ordering between gl_LOCK and gl_ARGP.
41872         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
41873         the "early" section as well.
41874
41875 2006-01-11  Bruno Haible  <bruno@clisp.org>
41876
41877         Avoid "ar: no archive members specified" error on MacOS X.
41878         * gnulib-tool (func_modules_add_dummy): New function.
41879         (func_import, func_create_testdir): Invoke it.
41880
41881 2006-01-11  Bruno Haible  <bruno@clisp.org>
41882
41883         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
41884         with $auxdir in AC_CONFIG_FILES statements.
41885
41886 2006-01-11  Bruno Haible  <bruno@clisp.org>
41887
41888         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
41889         Initialize also noinst_HEADERS to empty.
41890
41891 2006-01-11  Bruno Haible  <bruno@clisp.org>
41892
41893         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
41894         variables.
41895         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
41896         autoreconf.
41897
41898 2006-01-11  Bruno Haible  <bruno@clisp.org>
41899
41900         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
41901         overridable by the user.
41902         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
41903
41904 2006-01-10  Simon Josefsson  <jas@extundo.com>
41905
41906         * modules/sys_socket: New file.
41907
41908 2006-01-10  Simon Josefsson  <jas@extundo.com>
41909
41910         * m4/sys_socket_h.m4: New file.
41911
41912 2006-01-10  Simon Josefsson  <jas@extundo.com>
41913
41914         * lib/socket_.h: New file.
41915
41916 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
41917
41918         * modules/readutmp (Maintainer): Add myself.
41919
41920 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
41921
41922         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
41923         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
41924         People who are still concerned with buggy memcmp implementations
41925         can invoke gl_FUNC_MEMCMP themselves.
41926
41927 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
41928
41929         * lib/regex_internal.h (BITSET_WORD_BITS):
41930         Work around a bug in 64-bit PGC (before version 6.1-2), where the
41931         preprocessor mishandles large unsigned values as if they were signed.
41932         Problem reported by Claudio Fontana in
41933         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
41934
41935 2006-01-10  Jim Meyering  <jim@meyering.net>
41936
41937         Avoid the double-free (first in fts_read, second in fts_close) that
41938         would occur when an `active' directory is made inaccessible (e.g.,
41939         via chmod a-x) during a traversal.
41940         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
41941         before returning.  Reproduce this failure by
41942         mkdir -p a/b; cd a; chmod a-x . b
41943         Reported by Stavros Passas.
41944
41945         Sync from coreutils.
41946         * lib/sha1.c: Tweak grammar in a comment.
41947
41948 2006-01-10  Jim Meyering  <jim@meyering.net>
41949
41950         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
41951         Patch by Joerg Sonnenberger.
41952
41953 2006-01-10  Bruno Haible  <bruno@clisp.org>
41954
41955         * modules/readutmp: Depend on module free.
41956         * modules/strtok_r: Depend on module restrict.
41957
41958 2006-01-10  Bruno Haible  <bruno@clisp.org>
41959
41960         * modules/gettext (configure.ac): Add an invocation of
41961         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
41962
41963 2006-01-10  Bruno Haible  <bruno@clisp.org>
41964
41965         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
41966         Reported by Werner Lemberg <wl@gnu.org>.
41967
41968 2006-01-10  Bruno Haible  <bruno@clisp.org>
41969
41970         * lib/localcharset.c: Update from GNU gettext.
41971
41972 2006-01-10  Bruno Haible  <bruno@clisp.org>
41973
41974         * lib/argp.h (__const): Remove macro. Use const instead.
41975         * lib/argp-fmtstream.h (__const): Likewise.
41976         * lib/glob_.h (__const): Remove macro.
41977         * lib/glob-libc.h: Use const instead of __const.
41978
41979 2006-01-10  Bruno Haible  <bruno@clisp.org>
41980
41981         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
41982         variable.
41983         Needed to avoid an automake error regarding the 'gettext' module.
41984
41985 2006-01-09  Simon Josefsson  <jas@extundo.com>
41986
41987         * modules/inet_ntop (Depends-on): Add restrict.
41988
41989 2006-01-09  Simon Josefsson  <jas@extundo.com>
41990
41991         * modules/gc-rijndael-tests (License): Put under LGPL.
41992
41993         * modules/gc-des-tests (License): Likewise.
41994
41995         * modules/gc-arcfour-tests (License): Likewise.
41996
41997         * modules/gc-arctwo-tests (License): Likewise.
41998
41999         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
42000
42001         * modules/gc-hmac-sha1-tests (Files): Likewise.
42002
42003         * modules/gc-hmac-md5-tests (License): Likewise.
42004
42005         * modules/gc-sha1-tests (License): Likewise.
42006
42007         * modules/gc-md5-tests (License): Likewise.
42008
42009         * modules/gc-md4-tests (License): Likewise.
42010
42011         * modules/gc-md2-tests (License): Likewise.
42012
42013         * modules/gc-tests (License): Likewise.
42014
42015         * modules/des-tests (License): Likewise.
42016
42017         * modules/md4-tests (License): Likewise.
42018
42019         * modules/md2-tests (License): Likewise.
42020
42021 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
42022
42023         Sync from coreutils:
42024
42025         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
42026         * modules/lib-ignore: New file.
42027         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
42028         chdir-safer.m4, lchmod.m4.
42029         * modules/openat: Add mkdirat.c, openat-priv.h.
42030
42031 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
42032
42033         Sync from coreutils.
42034         * m4/lib-ignore.m4: New file.
42035         * m4/lchmod.m4: New file.
42036
42037 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
42038
42039         Sync from coreutils.
42040         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
42041         for write access: POSIX says that must fail.
42042         * lib/fts.c (diropen): Likewise.
42043         * lib/save-cwd.c (save_cwd): Likewise.
42044         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
42045         well, for minor improvements on hosts that lack O_DIRECTORY.
42046         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
42047         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
42048         Fall back on chown if open failed with EACCES.
42049
42050         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
42051         Report an error at compile-time if only a 1-second nominal clock
42052         resolution is found.
42053
42054         * lib/lchmod.h: New file.
42055         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
42056         (make_dir_parents): Use lchown rather than chown, and
42057         lchmod rather than chmod.
42058
42059         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
42060         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
42061         "proc" reported by n0dalus.
42062
42063         * lib/mountlist.c: Include <limits.h>.
42064         (dev_from_mount_options)
42065         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
42066         New function.  It no longer assumes "dev=" has the System V meaning
42067         on Linux (since it doesn't).  It also parses "dev=" more carefully.
42068         (read_file_system_list)
42069         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
42070         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
42071         dev= in that case.
42072
42073         * lib/posixtm.h (PDS_PRE_2000): New macro.
42074         * lib/posixtm.c (year): Arg is now syntax_bits rather than
42075         allow_century.  All usages changed.  Reject dates outside the range
42076         1969-1999 if PDS_PRE_2000 is used.
42077
42078 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
42079
42080         Sync from coreutils.
42081         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
42082         (Time of day items): Mention the possibility of leap seconds.
42083         Problem reported by Dr. David Alan Gilbert.
42084
42085 2006-01-09  Jim Meyering  <jim@meyering.net>
42086
42087         Sync from coreutils.
42088
42089         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
42090
42091         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
42092
42093         * lib/modechange.c (mode_compile): Reject an invalid mode string
42094         that starts with an octal digit.  From Andreas Gruenbacher.
42095
42096         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
42097         and dup to open_safer and dup_safer, respectively.
42098         (openat_permissive): Fix typo in comment.
42099
42100         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
42101         "gettext.h"; either no longer needed or are guaranteed by openat.h.
42102         (_): Remove; no longer needed.
42103         (openat): Renamed from rpl_openat; no need for rpl_openat
42104         since openat.h renames openat for us.
42105         Replace most of the body with a call to openat_permissive,
42106         to avoid duplicate code.
42107         Port to (probably hypothetical) environments were mode_t is
42108         wider than int.
42109         (openat_permissive): Require mode arg, so that we can check
42110         types better.  Put it just after flags.  Change cwd failure
42111         indicator from pointer-to-bool to pointer-to-errno-value.
42112         All callers changed.
42113         Invoke openat_save_fail and/or openat_restore_fail if
42114         cwd_errno is null, so that openat can call us.
42115         (openat_permissive, fdopendir, fstatat, unlinkat):
42116         Simplify errno handling to avoid some duplicate code,
42117         as it's OK to set errno on success.
42118         * lib/openat.h: Revamp code so that function macros depend on
42119         __OPENAT_PREFIX only, not also on AT_FDCWD.
42120         (openat_ro): Remove.  Caller changed to use openat_permissive.
42121         (openat_permissive): Now a macro, if not a function.
42122         (openat_restore_fail, openat_save_fail): Now always functions,
42123         since mkdirat needs them even if __OPENAT_PREFIX is defined.
42124
42125         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
42126         and openat.c.
42127         * lib/mkdirat.c: Include openat-priv.h.
42128         Remove definitions of macros defined therein.
42129         * lib/openat.c: Likewise.
42130
42131         * lib/mkdirat.c (mkdirat): New file and function.
42132         * lib/openat.h (mkdirat): Declare.
42133
42134         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
42135
42136         * lib/openat.h (openat_permissive): Declare.
42137         (openat_ro): Define.
42138
42139         * lib/openat.c (EXPECTED_ERRNO): New macro.
42140         (openat_permissive): New function -- used in remove.c rewrite.
42141         (all functions): Set errno just before returning, only if there
42142         was an actual failure.
42143         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
42144
42145         Emulate openat-family functions using Linux's procfs, if possible.
42146         Idea and some code based on Ulrich Drepper's glibc changes.
42147
42148         * lib/openat.c: (BUILD_PROC_NAME): New macro.
42149         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
42150         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
42151         before falling back on save_cwd and restore_cwd.
42152         (fdopendir, fstatat, unlinkat): Likewise.
42153
42154         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
42155         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
42156
42157         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
42158         as second argument to va_arg.  Otherwise, some versions of gcc
42159         warn that `if this code is reached, the program will abort'.
42160
42161 2006-01-09  Jim Meyering  <jim@meyering.net>
42162
42163         Sync from coreutils.
42164         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
42165         Require openat-priv.h.
42166
42167 2006-01-09  Bruno Haible  <bruno@clisp.org>
42168
42169         * modules/strnlen (Include): Use strnlen.h.
42170
42171 2006-01-09  Bruno Haible  <bruno@clisp.org>
42172
42173         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
42174
42175 2006-01-09  Bruno Haible  <bruno@clisp.org>
42176
42177         * lib/sysexit_.h (EX_OK): New macro.
42178         Suggested by Martin Lambers <marlam@marlam.de>.
42179
42180 2006-01-09  Bruno Haible  <bruno@clisp.org>
42181
42182         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
42183         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
42184
42185 2006-01-09  Bruno Haible  <bruno@clisp.org>
42186
42187         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
42188         numbers.
42189
42190 2006-01-09  Bruno Haible  <bruno@clisp.org>
42191
42192         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
42193         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
42194         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
42195         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
42196
42197 2006-01-09  Bruno Haible  <bruno@clisp.org>
42198
42199         * build-aux/javacomp.sh.in: New file, moved from lib/.
42200         * modules/javacomp-script (Files): Update.
42201         (configure.ac): Add AC_CONFIG_FILES invocation.
42202         (EXTRA_DIST): Remove variable.
42203
42204         * build-aux/javaexec.sh.in: New file, moved from lib/.
42205         * modules/javaexec (Files): Update.
42206         (configure.ac): Add AC_CONFIG_FILES invocation.
42207         (EXTRA_DIST): Remove javaexec.sh.in.
42208
42209         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
42210         * modules/csharpcomp-script (Files): Update.
42211         (configure.ac): Add AC_CONFIG_FILES invocation.
42212         (EXTRA_DIST): Remove variable.
42213
42214         * build-aux/csharpexec.sh.in: New file, moved from lib/.
42215         * modules/csharpexec (Files): Update.
42216         (configure.ac): Add AC_CONFIG_FILES invocation.
42217         (EXTRA_DIST): Remove csharpexec.sh.in.
42218
42219 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
42220
42221         Sync from coreutils.
42222
42223         Add POSIX ACL support
42224         * lib/acl.h (copy_acl, set_acl): Add declarations.
42225         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
42226         systems other than Linux.
42227         (chmod_or_fchmod): New function: use fchmod when possible,
42228         and chmod otherwise.
42229         (file_has_acl): Add a POSIX ACL implementation, with a
42230         Linux-specific subcase.
42231         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
42232         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
42233         acls are unsupported.
42234         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
42235         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
42236         are unsupported.
42237
42238 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
42239
42240         Sync from coreutils.
42241         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
42242
42243 2006-01-07  Bruno Haible  <bruno@clisp.org>
42244
42245         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
42246         gl_EARLY.
42247
42248 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
42249
42250         * lib/strftime.c (tzname): Don't declare if it is already #defined.
42251         Problem reported for Mingw by Mark Junker.
42252
42253 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
42254
42255         * README: Gnulib normally doesn't generate a tarball.
42256
42257 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
42258
42259         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
42260         long int, not int, for nanosecond counts, so that people who are
42261         used to POSIX struct timespec won't be surprised.  Reported by Jim
42262         Meyering.
42263
42264 2005-12-28  Bruno Haible  <bruno@clisp.org>
42265
42266         * build-aux/config.rpath: Update from GNU gettext.
42267
42268 2005-12-16  Jim Meyering  <jim@meyering.net>
42269
42270         * modules/fprintftime: New module.
42271         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
42272
42273 2005-12-16  Jim Meyering  <jim@meyering.net>
42274
42275         * m4/fprintftime.m4: New file.
42276
42277 2005-12-16  Jim Meyering  <jim@meyering.net>
42278
42279         * lib/fprintftime.c, lib/fprintftime.h: New files.
42280
42281 2005-12-15  Simon Josefsson  <jas@extundo.com>
42282
42283         * modules/socklen (configure.ac): Fix M4 macro name, to align with
42284         new m4/socklen.m4.
42285
42286 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
42287
42288         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
42289         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
42290
42291 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
42292
42293         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
42294         * lib/argp-help.c (fill_in_uparams): Check if the constructed
42295         struct uparams is valid. Fall back to the default values if it is
42296         not.
42297
42298 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
42299
42300         * modules/argp (Files): Add argp-pin.c
42301         (Depends-on): dirname
42302         (lib_SOURCES): Add argp-pin.c
42303
42304 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
42305
42306         * m4/argp.m4:  Check if program_invocation_name and
42307         program_invocation_short_name are declared and define appropriate
42308         macros if they are not.
42309
42310 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
42311
42312         * lib/argp-help.c (__argp_base_name): New function
42313         (__argp_short_program_name): Rewrite using __argp_base_name
42314         * lib/argp-namefrob.h: Define program_invocation_name and
42315         program_invocation_short_name if requested
42316         (__argp_base_name): Add prototype
42317         * lib/argp-parse.c (argp_def): Use gettext wrappers
42318         (argp_default_parser): Use __argp_base_name
42319         * lib/argp-pin.c: New file. Defines program_invocation_name and
42320         program_invocation_short_name on systems that lack them.
42321
42322 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
42323
42324         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
42325         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
42326         porting problem reported by Georg Schwarz in
42327         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
42328
42329 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
42330
42331         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
42332         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
42333         porting problem reported by Georg Schwarz in
42334         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
42335
42336 2005-12-05  Bruno Haible  <bruno@clisp.org>
42337
42338         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
42339         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
42340         Reported by Mark Junker <mjscod@gmx.de>.
42341
42342 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
42343
42344         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
42345         Use implementation from Albert Chin, with some
42346         comments/corrections by Stepan Kasal and myself.
42347
42348 2005-12-02  Bruno Haible  <bruno@clisp.org>
42349
42350         * gnulib-tool (func_import): Accept GPLed build tool modules when
42351         --lgpl is given.
42352         * modules/csharpcomp-script: New file.
42353         * modules/csharpcomp: Depend on it.
42354         * modules/javacomp-script: New file.
42355         * modules/javacomp: Depend on it.
42356         Suggested by Simon Josefsson.
42357
42358 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
42359
42360         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
42361         statement, to work around an HP-UX 10.20 compiler bug reported by
42362         Peter O'Gorman.
42363
42364 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
42365
42366         * modules/savedir (Depends-on): Add openat.
42367
42368 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
42369
42370         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
42371         (uintmax_t) [defined uintmax_t]: Do not declare.
42372         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
42373         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
42374         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
42375         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
42376         sake of portability to weird hosts that C allows (though we don't
42377         know of any practical examples).
42378
42379         * lib/savedir.h (fdsavedir): New decl.
42380         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
42381         contains most of the former guts of savedir.
42382         (savedir): Use savedirstream.
42383         Include "openat.h".
42384
42385 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
42386
42387         * modules/obstack (Files): Add m4/ulonglong.m4.
42388         Problem reported by Davide Angelocola.
42389
42390 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
42391
42392         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
42393         coreutils no longer futzes with rounding modes.
42394
42395 2005-11-14  Jim Meyering  <jim@meyering.net>
42396
42397         * lib/mkstemp-safer.c: Include <config.h>, required for possible
42398         replacement of mkstemp.
42399
42400 2005-11-10  Simon Josefsson  <jas@extundo.com>
42401
42402         * lib/readline.c: Remove EOL.
42403
42404 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
42405
42406         * modules/gethrxtime (Depends-on): Add gettime.
42407
42408 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
42409
42410         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
42411         or gettimeofday; no longer needed.
42412
42413 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
42414
42415         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
42416         time business.
42417         (gethrxtime) [! (HAVE_NANOUPTIME
42418         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
42419         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
42420         our own approximation.
42421
42422 2005-11-08  Eric Blake  <ebb9@byu.net>
42423
42424         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
42425
42426 2005-11-08  Eric Blake  <ebb9@byu.net>
42427
42428         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
42429
42430 2005-11-04  Bruno Haible  <bruno@clisp.org>
42431
42432         * gnulib-tool: Implement --update mode.
42433
42434 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
42435
42436         Fix porting problem reported by Theodoros V. Kalamatianos.
42437         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
42438         Don't assume that futimes failing means we must fail.
42439
42440 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
42441
42442         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
42443         variables to suggest the intended function of the PATH_MAX check.
42444
42445 2005-10-30  Kean Johnston  <jkj@sco.com>
42446
42447         Trivial changes to support SCO systems.
42448         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
42449         as PATH_MAX.
42450         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
42451         where __ptr is null when no I/O is pending.
42452
42453 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
42454
42455         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
42456         leave errno alone.  Problem reported by Dmitry V. Levin.
42457
42458 2005-10-28  Simon Josefsson  <jas@extundo.com>
42459
42460         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
42461         Test more.
42462
42463         * tests/test-gc-md2.c, tests/test-md2.c: New files.
42464
42465         * modules/md2, modules/md2-tests: New files.
42466
42467 2005-10-28  Simon Josefsson  <jas@extundo.com>
42468
42469         * m4/inet_ntop.m4: More tests.
42470
42471         * m4/gc-md2.m4, md2.m4: New file.
42472
42473 2005-10-28  Simon Josefsson  <jas@extundo.com>
42474
42475         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
42476         "restrict" keywords, as per POSIX.  Protect the function
42477         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
42478         Don't use K&R prototypes.  Check the sprintf return values.
42479         Re-define EAFNOSUPPORT if not present.  Indent.
42480
42481         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
42482         suggested by Bruno Haible <bruno@clisp.org>.
42483
42484         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
42485
42486         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
42487
42488         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
42489         libgcrypt).
42490
42491         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
42492
42493         * lib/md2.h, lib/md2.c: New files.
42494
42495 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
42496
42497         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
42498         errno alone.  Problem reported by Frederic Jolliton.
42499
42500 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
42501
42502         * modules/verify (License): Change from GPL to LGPL.  This is a
42503         tiny module and there are apparently near-equivalents that are
42504         under the BSD license.
42505
42506 2005-10-24  Simon Josefsson  <jas@extundo.com>
42507
42508         * modules/sha1: Relicense to LGPL.
42509
42510 2005-10-24  Simon Josefsson  <jas@extundo.com>
42511
42512         * lib/md4.h: Shrink buffer size, now that we changed the type.
42513
42514 2005-10-23  Simon Josefsson  <jas@extundo.com>
42515
42516         * gnulib-tool (func_import): Fix --tests-base.
42517
42518 2005-10-22  Simon Josefsson  <jas@extundo.com>
42519
42520         * modules/arcfour (Depends-on): Need stdint.
42521
42522 2005-10-22  Simon Josefsson  <jas@extundo.com>
42523
42524         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
42525         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
42526
42527 2005-10-22  Simon Josefsson  <jas@extundo.com>
42528
42529         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
42530         suggested by Bruno Haible <bruno@clisp.org>.
42531
42532 2005-10-22  Simon Josefsson  <jas@extundo.com>
42533
42534         * lib/crc.h: Include stddef.h, for size_t.
42535
42536 2005-10-22  Simon Josefsson  <jas@extundo.com>
42537
42538         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
42539         arcfour_context struct (simplify test vector testing in GNU
42540         Shishi).
42541
42542 2005-10-21  Simon Josefsson  <jas@extundo.com>
42543
42544         * modules/des, modules/des-tests: New files.
42545
42546         * modules/gc-des, modules/gc-des-tests: New files.
42547
42548         * tests/test-des.c, tests/test-gc-des.c: New file.
42549
42550 2005-10-21  Simon Josefsson  <jas@extundo.com>
42551
42552         * modules/arctwo, modules/arctwo-tests: New files.
42553
42554         * tests/test-arctwo.c: New file.
42555
42556         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
42557
42558         * tests/test-gc-arctwo.c: New file.
42559
42560 2005-10-21  Simon Josefsson  <jas@extundo.com>
42561
42562         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
42563         Bruno Haible <bruno@clisp.org>.
42564
42565         * m4/gc-des.m4: New file.
42566
42567 2005-10-21  Simon Josefsson  <jas@extundo.com>
42568
42569         * m4/arctwo.m4: New file.
42570
42571         * m4/gc-arctwo.m4: New file.
42572
42573 2005-10-21  Simon Josefsson  <jas@extundo.com>
42574
42575         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
42576         block.
42577
42578 2005-10-21  Simon Josefsson  <jas@extundo.com>
42579
42580         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
42581         <bruno@clisp.org>.
42582
42583         * lib/hmac-sha1.c (hmac_sha1): Likewise.
42584
42585         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
42586         Bruno Haible <bruno@clisp.org>.
42587
42588         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
42589         <bruno@clisp.org>.
42590
42591 2005-10-21  Simon Josefsson  <jas@extundo.com>
42592
42593         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
42594
42595 2005-10-21  Simon Josefsson  <jas@extundo.com>
42596
42597         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
42598
42599 2005-10-21  Simon Josefsson  <jas@extundo.com>
42600
42601         * lib/des.h, lib/des.c: New files.
42602
42603         * lib/gc-gnulib.c: Support DES.c
42604
42605 2005-10-21  Simon Josefsson  <jas@extundo.com>
42606
42607         * lib/arctwo.h, lib/arctwo.c: New files.
42608
42609         * lib/gc-gnulib.c: Support ARCTWO.
42610
42611 2005-10-21  Simon Josefsson  <jas@extundo.com>
42612
42613         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
42614         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
42615
42616 2005-10-21  Simon Josefsson  <jas@extundo.com>
42617
42618         * gnulib-tool (func_import, func_create_testdir): Define automake
42619         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
42620         Makefile.am snippet),
42621         suggested by Bruno Haible <bruno@clisp.org>.
42622
42623         * modules/gc (Makefile.am): Use it.
42624
42625 2005-10-21  Bruno Haible  <bruno@clisp.org>
42626
42627         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
42628         patch.
42629
42630 2005-10-19  Simon Josefsson  <jas@extundo.com>
42631
42632         * tests/test-gc-rijndael.c: New file.
42633
42634         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
42635
42636 2005-10-19  Simon Josefsson  <jas@extundo.com>
42637
42638         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
42639         interface too.
42640
42641 2005-10-19  Simon Josefsson  <jas@extundo.com>
42642
42643         * tests/test-gc-arcfour.c: New file.
42644
42645         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
42646
42647 2005-10-19  Simon Josefsson  <jas@extundo.com>
42648
42649         * modules/gc-md4, modules/gc-md4-tests: New file.
42650
42651         * tests/test-gc-md4.c: New file.
42652
42653 2005-10-19  Simon Josefsson  <jas@extundo.com>
42654
42655         * m4/gc-md4.m4: New file.
42656
42657 2005-10-19  Simon Josefsson  <jas@extundo.com>
42658
42659         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
42660         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
42661         <kasal@ucw.cz>.
42662
42663 2005-10-19  Simon Josefsson  <jas@extundo.com>
42664
42665         * m4/gc-arcfour.m4: New file.
42666
42667         * m4/gc-rijndael.m4: New file.
42668
42669 2005-10-19  Simon Josefsson  <jas@extundo.com>
42670
42671         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
42672
42673 2005-10-19  Simon Josefsson  <jas@extundo.com>
42674
42675         * lib/gc-gnulib.c: Support ARCFOUR.
42676
42677 2005-10-19  Simon Josefsson  <jas@extundo.com>
42678
42679         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
42680         support.
42681
42682         * lib/gc.h: Add ECB enum type.
42683
42684         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
42685
42686 2005-10-18  Simon Josefsson  <jas@extundo.com>
42687
42688         * tests/test-md5.c: New file.
42689
42690         * modules/md5-tests: New file.
42691
42692 2005-10-18  Simon Josefsson  <jas@extundo.com>
42693
42694         * tests/test-md4.c: New file.
42695
42696         * modules/md4, modules/md4-tests: New files.
42697
42698 2005-10-18  Simon Josefsson  <jas@extundo.com>
42699
42700         * m4/md4.m4: New file.
42701
42702 2005-10-18  Simon Josefsson  <jas@extundo.com>
42703
42704         * lib/md4.h, lib/md4.c: New files, based on md5.?.
42705
42706 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
42707
42708         * gnulib-tool (func_create_testdir): Omit the second check whether
42709         BUILT_SOURCES in nonempty.
42710
42711 2005-10-17  Simon Josefsson  <jas@extundo.com>
42712
42713         * tests/test-rijndael.c: New file.
42714
42715 2005-10-17  Simon Josefsson  <jas@extundo.com>
42716
42717         * modules/sha1: Depend on stdint instead of md5.
42718
42719         * modules/md5: Depend on stdint, remove uint32_t.
42720
42721 2005-10-17  Simon Josefsson  <jas@extundo.com>
42722
42723         * modules/gc-sha1-tests: New file.
42724
42725         * tests/test-gc-sha1.c: New file.
42726
42727 2005-10-17  Simon Josefsson  <jas@extundo.com>
42728
42729         * m4/md5.m4: Remove call to uint32_t.m4.
42730
42731 2005-10-17  Simon Josefsson  <jas@extundo.com>
42732
42733         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
42734
42735         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
42736         md5.h.
42737
42738         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
42739
42740         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
42741
42742 2005-10-17  Simon Josefsson  <jas@extundo.com>
42743
42744         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
42745
42746 2005-10-17  Simon Josefsson  <jas@extundo.com>
42747
42748         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
42749
42750 2005-10-17  Simon Josefsson  <jas@extundo.com>
42751
42752         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
42753
42754         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
42755
42756 2005-10-17  Bruno Haible  <bruno@clisp.org>
42757
42758         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
42759         that it can also be used in a test.
42760
42761 2005-10-16  Bruno Haible  <bruno@clisp.org>
42762
42763         * gnulib-tool (func_emit_tests_Makefile_am): Also define
42764         TESTS_ENVIRONMENT, so that individual tests can augment it.
42765
42766         * gnulib-tool (func_create_testdir): Use an intermediate target for
42767         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
42768         macros, like $(ALLOCA_H), which cannot be passed through the command
42769         line.
42770
42771 2005-10-15  Simon Josefsson  <jas@extundo.com>
42772
42773         * modules/rijndael-tests: New file.
42774
42775         * modules/rijndael: New file.
42776
42777 2005-10-15  Simon Josefsson  <jas@extundo.com>
42778
42779         * m4/rijndael.m4: New file.
42780
42781 2005-10-15  Simon Josefsson  <jas@extundo.com>
42782
42783         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
42784
42785         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
42786
42787 2005-10-14  Simon Josefsson  <jas@extundo.com>
42788
42789         * tests/test-arcfour.c: New file.
42790
42791         * modules/arcfour, modules/arcfour-tests: New files.
42792
42793 2005-10-14  Simon Josefsson  <jas@extundo.com>
42794
42795         * m4/arcfour.m4: New file.
42796
42797 2005-10-14  Simon Josefsson  <jas@extundo.com>
42798
42799         * lib/arcfour.h, lib/arcfour.c: New files.
42800
42801 2005-10-14  Roland McGrath  <roland@redhat.com>
42802
42803         Import from libc.  [BZ #1331]
42804         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
42805         macro argument.
42806         Reported by Matej Vela <vela@debian.org>.
42807
42808 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
42809
42810         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
42811         include <wchar.h>; no longer needed.
42812
42813 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
42814
42815         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
42816
42817 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
42818         and  Ulrich Drepper  <drepper@redhat.com>
42819
42820         Import from libc.
42821         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
42822         instead of inline stream orientation test and two separate
42823         function calls.  Pay no attention to USE_IN_LIBIO.
42824
42825 2005-10-13  Simon Josefsson  <jas@extundo.com>
42826
42827         * modules/gc-hmac-md5-tests: New file.
42828
42829         * tests/test-gc-hmac-sha1.c: New file.
42830
42831         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
42832
42833         * modules/gc-hmac-md5-tests: New file.
42834
42835         * tests/test-gc-md5.c: New file.
42836
42837         * modules/gc-md5-tests: New file.
42838
42839 2005-10-13  Simon Josefsson  <jas@extundo.com>
42840
42841         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
42842         Move memory allocation outside of loop.
42843
42844 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
42845
42846         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
42847         intermediate directory is in a read-only file system.  Problem
42848         reported by Eric Blake.
42849
42850 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
42851
42852         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
42853
42854 2005-10-12  Simon Josefsson  <jas@extundo.com>
42855
42856         * tests/test-hmac-sha1.c: New file.
42857
42858         * modules/hmac-sha1-tests: New file.
42859
42860         * modules/hmac-sha1: New file.
42861
42862 2005-10-12  Simon Josefsson  <jas@extundo.com>
42863
42864         * modules/gc-sha1: New file.
42865
42866 2005-10-12  Simon Josefsson  <jas@extundo.com>
42867
42868         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
42869
42870         * tests/test-gc-pbkdf2-sha1.c: New file.
42871
42872 2005-10-12  Simon Josefsson  <jas@extundo.com>
42873
42874         * modules/gc-md5, modules/gc-hmac-md5: New files.
42875
42876         * modules/gc (Files): Remove md5, memxor and hmac files.
42877
42878 2005-10-12  Simon Josefsson  <jas@extundo.com>
42879
42880         * m4/gc-pbkdf2-sha1.m4: New file.
42881
42882         * m4/gc-hmac-sha1.m4: New file.
42883
42884         * m4/gc-sha1: New file.
42885
42886         * m4/hmac-sha1.m4: New file.
42887
42888 2005-10-12  Simon Josefsson  <jas@extundo.com>
42889
42890         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
42891
42892         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
42893
42894 2005-10-12  Simon Josefsson  <jas@extundo.com>
42895
42896         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
42897         suggested by Bruno Haible <bruno@clisp.org>.
42898
42899 2005-10-12  Simon Josefsson  <jas@extundo.com>
42900
42901         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
42902
42903 2005-10-12  Simon Josefsson  <jas@extundo.com>
42904
42905         * lib/gc-pbkdf2-sha1.c: New file.
42906
42907         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
42908
42909 2005-10-12  Simon Josefsson  <jas@extundo.com>
42910
42911         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
42912
42913         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
42914
42915 2005-10-12  Simon Josefsson  <jas@extundo.com>
42916
42917         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
42918         GC_USE_HMAC_MD5, respectively.
42919
42920         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
42921         (gc_md5): Fix typo.
42922
42923         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
42924
42925         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
42926
42927         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
42928
42929 2005-10-12  Bruno Haible  <bruno@clisp.org>
42930
42931         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
42932         Reported by Stepan Kasal <kasal@ucw.cz>.
42933
42934 2005-10-11  Simon Josefsson  <jas@extundo.com>
42935
42936         * tests/test-crc.c: New file.
42937
42938         * modules/crc, modules/crc-tests: New files.
42939
42940 2005-10-11  Simon Josefsson  <jas@extundo.com>
42941
42942         * m4/crc.m4: New file.
42943
42944 2005-10-11  Simon Josefsson  <jas@extundo.com>
42945
42946         * lib/gc.h: Add gc_hash and gc_hash_buffer.
42947
42948         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
42949
42950         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
42951
42952 2005-10-11  Simon Josefsson  <jas@extundo.com>
42953
42954         * lib/crc.h, lib/crc.c: New files.
42955
42956         * lib/gc.h (gc_hash_buffer): Add doc.
42957
42958 2005-10-11  Bruno Haible  <bruno@clisp.org>
42959
42960         * modules/c-strcasestr: New file.
42961         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
42962
42963 2005-10-11  Bruno Haible  <bruno@clisp.org>
42964
42965         * modules/c-strcase: New file.
42966         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
42967
42968 2005-10-11  Bruno Haible  <bruno@clisp.org>
42969
42970         * lib/strcasecmp.c: Include limits.h.
42971         (strcasecmp): Avoid integer overflow on exotic platforms.
42972         * lib/strncasecmp.c: Include limits.h.
42973         (strncasecmp): Avoid integer overflow on exotic platforms.
42974         Reported by Paul Eggert.
42975
42976 2005-10-11  Bruno Haible  <bruno@clisp.org>
42977
42978         * lib/c-strcasestr.h: New file, from GNU gettext.
42979         * lib/c-strcasestr.c: New file, from GNU gettext.
42980
42981 2005-10-11  Bruno Haible  <bruno@clisp.org>
42982
42983         * lib/c-strcase.h: New file, from GNU gettext.
42984         * lib/c-strcasecmp.c: New file, from GNU gettext.
42985         * lib/c-strncasecmp.c: New file, from GNU gettext.
42986
42987 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
42988
42989         * modules/mempcpy (License): GPL -> LGPL.
42990         * modules/strchrnul (License): Likewise.
42991         * modules/sysexits (License): Likewise.
42992
42993 2005-10-08  Simon Josefsson  <jas@extundo.com>
42994
42995         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
42996
42997 2005-10-07  Simon Josefsson  <jas@extundo.com>
42998
42999         * m4/memxor.m4: Remove gl_C_RESTRICT call.
43000
43001 2005-10-06  Simon Josefsson  <jas@extundo.com>
43002
43003         * tests/test-hmac-md5.c: New file.
43004
43005         * modules/hmac-md5-tests: New file.
43006
43007         * modules/hmac-md5: New file.
43008
43009 2005-10-06  Simon Josefsson  <jas@extundo.com>
43010
43011         * m4/hmac-md5.m4: New file.
43012
43013         * m4/memxor.m4: Require gl_C_RESTRICT.
43014
43015 2005-10-06  Simon Josefsson  <jas@extundo.com>
43016
43017         * lib/memxor.c (memxor): Avoid casts and warnings.
43018
43019 2005-10-06  Simon Josefsson  <jas@extundo.com>
43020
43021         * lib/hmac-md5.c: New file.
43022
43023         * lib/hmac.h: New file.
43024
43025 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
43026
43027         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
43028         promotes to int, not unsigned int, to catch the AIX 5.3
43029         compiler bug.
43030
43031 2005-10-05  Simon Josefsson  <jas@extundo.com>
43032
43033         * modules/memxor: New file.
43034
43035         * modules/iconv (Files): Move config.rpath to havelib, it is used
43036         there.
43037
43038         * modules/havelib (Files): Add config.rpath.
43039
43040 2005-10-05  Simon Josefsson  <jas@extundo.com>
43041
43042         * m4/memxor.m4: New file.
43043
43044 2005-10-05  Simon Josefsson  <jas@extundo.com>
43045
43046         * lib/memxor.c (memxor): Fix compiler error.
43047
43048         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
43049         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
43050
43051         * lib/memxor.h, lib/memxor.c: New files.
43052
43053         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
43054         we assume all systems have it, suggested by Jim Meyering
43055         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
43056         any systems lack sys/socket.h; mingw32 is known to lack it, but we
43057         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
43058         same reasons.
43059
43060 2005-10-05  Simon Josefsson  <jas@extundo.com>
43061
43062         * config/srclist.txt: Add glibc bug 1423 for md5.h.
43063
43064 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
43065
43066         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
43067         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
43068         needed, since the source code now assumes these .h files.
43069
43070 2005-10-05  Derek Price  <derek@ximbiot.com>
43071
43072         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
43073
43074 2005-10-05  Bruno Haible  <bruno@clisp.org>
43075
43076         * modules/stdint (License): Change to LGPL.
43077
43078 2005-10-04  Simon Josefsson  <jas@extundo.com>
43079
43080         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
43081         D. Baushke" <mdb@gnu.org>.
43082
43083 2005-10-04  Bruno Haible  <bruno@clisp.org>
43084
43085         * lib/verify.h (verify_true): Provide alternative definition for C++.
43086
43087 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
43088
43089         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
43090         (SSIZE_MAX): New macro, if not already defined.
43091         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
43092         than 2 GiB.
43093
43094 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
43095
43096         Sync from coreutils.
43097         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
43098         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
43099         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
43100         ULLONG_MAX doesn't work with 2.7.2.1.
43101
43102 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
43103
43104         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
43105         From Ben Pfaff.
43106
43107         * modules/exclude (Depends-on): Depend on verify.
43108         * modules/strtoimax (Depends-on): Likewise.
43109         * modules/utimecmp (Depends-on): Likewise.
43110
43111 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
43112
43113         * lib/exclude.c: Include verify.h.
43114         (verify): Remove.  All callers changed to use verify.h's version.
43115         * lib/strtoimax.c: Likewise.
43116         * lib/utimecmp.c: Likewis.e
43117
43118         Sync from coreutils.
43119         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
43120         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
43121         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
43122         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
43123         bother returning ENOSYS if settimeofday or stime fails; just let
43124         them return whatever errno they want to return.
43125         * lib/utimens.c: Include unistd.h, for dup2.
43126         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
43127         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
43128
43129 2005-10-02  Jim Meyering  <jim@meyering.net>
43130
43131         Sync from coreutils.
43132         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
43133         from glibc-2.2.5 that fails for read-only files.
43134
43135 2005-10-02  Jim Meyering  <jim@meyering.net>
43136
43137         Sync from coreutils.
43138         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
43139         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
43140         `#if HAVE_CONFIG_H'.
43141         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
43142         Remove AT_FDCWD test.
43143         Do not consume the fd unless successful.
43144         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
43145         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
43146         block, so that we don't even try to compile it if settimeofday is
43147         available.  This works around a compilation failure on OSF1 V5.1,
43148         due to stime requiring a `long int*' while tv_sec is `int'.
43149
43150 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
43151
43152         Sync from coreutils.
43153         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
43154         against `yes', rather than just testing for nonempty.
43155
43156 2005-10-01  Simon Josefsson  <jas@extundo.com>
43157
43158         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
43159         and Darwin.
43160
43161         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
43162         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
43163         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
43164         freeaddrinfo and gai_strerror are declared by the POSIX headers.
43165         Check if struct addrinfo is declared.
43166
43167 2005-10-01  Simon Josefsson  <jas@extundo.com>
43168
43169         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
43170         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
43171         AI_* and EAI_* definitions.  Protect function declarations.
43172
43173 2005-10-01  Jim Meyering  <jim@meyering.net>
43174
43175         Sync from coreutils.
43176
43177         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
43178         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
43179         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
43180         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
43181         in the inet and nsl libraries.  Required on Solaris 5.7.
43182
43183 2005-10-01  Jim Meyering  <jim@meyering.net>
43184
43185         Sync from coreutils.
43186         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
43187         in the inet and nsl libraries.  Required on Solaris 5.7.
43188
43189 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
43190
43191         * lib/getdelim.c (getdelim): Remove unused variables.
43192
43193 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
43194
43195         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
43196         so that the code works even with ancient cpp.  Portability problem
43197         with GCC 2.7.2.1 reported by Thomas M.Ott.
43198
43199 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
43200
43201         * modules/regex (Depends-on): Add strcase.
43202
43203         * modules/gethostname (Licence): Change from GPL to LGPL, since
43204         gethostname.c is a trivial implementation of a standard library
43205         function.
43206         * modules/poll (License): Change from GPL to LGPL, since it's
43207         derived from LGPL code.
43208
43209 2005-09-27  Jim Meyering  <jim@meyering.net>
43210
43211         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
43212         HAVE_CONFIG_H.
43213
43214         * lib/intprops.h (signed_type_or_expr__): Define.
43215         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
43216         for unsigned types.
43217
43218 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
43219
43220         * lib/verify.h (verify_expr): Remove, replacing with:
43221         (verify_true): New macro that returns true instead of void.
43222         (verify_type__): Remove.
43223         (verify): Use verify_true rather than verify_type__.
43224
43225 2005-09-26  Bruno Haible  <bruno@clisp.org>
43226
43227         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
43228         is necessary.
43229         (lib_SOURCES): Remove mbchar.c.
43230         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
43231         (Files): Add m4/mbrtowc.m4.
43232         * modules/mbiter: Likewise.
43233         * modules/mbuiter: Likewise.
43234
43235 2005-09-26  Bruno Haible  <bruno@clisp.org>
43236
43237         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
43238         compile mbchar.c if they are not both present.
43239         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
43240         * m4/mbiter.m4 (gl_MBITER): Likewise.
43241         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
43242         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
43243         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
43244
43245 2005-09-25  Jim Meyering  <jim@meyering.net>
43246
43247         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
43248         also uses socklen_t.
43249
43250 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
43251
43252         * lib/utimens.c (ENOSYS): Define if not already defined.
43253         (futimens): Support having a null PATH if the file descriptor
43254         is nonnegative.
43255
43256         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
43257         Remove.
43258         (__attribute): Define to empty unless GCC 3.1 or later.
43259         This works around a core dump on OpenBSD 3.4, which has GCC
43260         2.95.3, which dumps core when given __attribute__(()).  It also
43261         simplifies other tests, since we really don't want to bother with
43262         worrying about which ancient version of GCC supported what.
43263         Original problem reported by Yoann Vandoorselaere, with part of
43264         the fix suggested by Derek Price.
43265
43266 2005-09-24  Jim Meyering  <jim@meyering.net>
43267
43268         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
43269         so we can once again use a positive bitfield width of 1 -- now we
43270         don't have to explain why we were using a bitfield width of 2.
43271
43272 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
43273
43274         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
43275         and similarly for the other external symbols.  Problem reported
43276         by James Gallager.
43277
43278         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
43279         bug reported by Jim Meyering.
43280
43281         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
43282         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
43283         not needed, since socklen is a prerequisite module.
43284
43285 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
43286
43287         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
43288         Problem reported by Eric Blake.
43289         (getaddrinfo): Initialize se so that it's not garbage.
43290         Redo internal storage allocation so that it doesn't make unportable
43291         assumptions about alignment.
43292         Fix a memory leak.
43293
43294         * lib/utimens.c (futimens): Use futimesat if available.
43295         Prefer it to futimes since it doesn't have the futimes bug.
43296
43297         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
43298         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
43299         Instead, declare a function that returns a pointer to an array,
43300         and use verify_type__ to declare the size of the array.
43301         Problem and germ of a solution reported by Bruno Haible.
43302         (verify_type__): Use 2, not 1, for bitfield size, to avoid
43303         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
43304
43305 2005-09-23  Jim Meyering  <jim@meyering.net>
43306
43307         Sync from coreutils.
43308         Correct build failure (socklen_t not defined) on at least
43309         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
43310         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
43311
43312 2005-09-23  Jim Meyering  <jim@meyering.net>
43313
43314         * modules/getaddrinfo (Depends-on): Add socklen.
43315
43316 2005-09-23  Bruno Haible  <bruno@clisp.org>
43317
43318         * tests/test-verify.c: New file.
43319
43320 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
43321
43322         Sync from coreutils.
43323
43324         * modules/argmatch (Depends-on): Add verify.
43325         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
43326         unistd-safer.
43327         * modules/save-cwd (Depends-on): Likewise.
43328
43329         * modules/openat (Files): Add lib/openat-die.c.
43330         (Depends-on): Remove error, exitfail.
43331         Add dirname.
43332
43333         * modules/verify: New file.
43334         * MODULES.html.sh (Diagnostics <assert.h>): New section,
43335         with "verify" module.
43336
43337 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
43338
43339         Sync from coreutils.
43340
43341         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
43342         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
43343         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
43344         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
43345         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
43346         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
43347         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
43348         Don't bother checking for string.h, stdlib.h, unistd.h.
43349         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
43350         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
43351         module's job.
43352         * m4/jm-macros.m4 (gl_MACROS): Likewise.
43353         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
43354
43355         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
43356         (gl_GETDATE): Use it.
43357
43358         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
43359
43360 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
43361
43362         Sync from coreutils.
43363
43364         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
43365         stat-time.h.
43366         * lib/argmatch.h: Include verify.h
43367         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
43368         (ARGMATCH_ASSERT): Remove; unused.
43369         * lib/canonicalize.c: Assume STDC_HEADERS.
43370         * lib/exclude.c: Include "strcase.h".
43371         * lib/regex_internal.h [!defined _LIBC]: Likewise.
43372         * lib/getusershell.c: Include stdio--.h rather than stdio.h
43373         and stdio-safer.h.
43374         (getusershell): Call fopen, not fopen_safer.
43375         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
43376         Do not include unistd-safer.h.
43377         (save_cwd): Don't call fd_safer; no longer needed
43378         now that we include fcntl--.h.
43379
43380         * lib/getdate.y (relative_time): New type.
43381         (RELATIVE_TIME_0): New constant.
43382         (parser_control): Use relative_time instead of doing it ourselves.
43383         (%union): Add new relative_time rel member.
43384         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
43385         Now typeless.
43386         (relunit, relunit_snumber): Now of type rel.
43387         (zone, rel, relunit, get_date): Adjust to above changes.
43388
43389         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
43390         Do not include unistd-safer.h.
43391         (getloadavg): Don't call fd_safer; no longer needed
43392         now that we include fcntl--.h.
43393
43394         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
43395         (make_dir_parents): Treat ENOSYS like EEXIST.
43396
43397         Improve quality of diagnostics on restore_cwd failure.
43398         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
43399         (make_dir_parents): Last arg is now int * (for errno), not bool *.
43400         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
43401         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
43402         each time through the loop.  Do not diagnose restore_cwd failure;
43403         that is the caller's job (and perhaps the caller does not care).
43404
43405         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
43406         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
43407         If the file already exists but is not a directory, don't bother
43408         to try to make its parents.
43409         Close potential file descriptor leak if we can't chdir("/") (!).
43410         Don't always return true if chdir($PWD) fails; return true only
43411         if the requested action was done successfully (except for the
43412         chdir($PWD)).
43413         Don't log final directory unless we actually made it.
43414         Refactor to avoid duplicate code to fix up permissions.
43415         Don't attempt to fix up parent permissions if chdir($PWD) fails.
43416
43417         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
43418         to make it a bit faster and (I hope) clearer.
43419         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
43420         Fix bug in formats like %2N.
43421
43422         * lib/verify.h: New file.
43423
43424 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
43425
43426         Sync from coreutils.
43427         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
43428
43429 2005-09-22  Jim Meyering  <jim@meyering.net>
43430
43431         Sync from coreutils.
43432
43433         * m4/lstat.m4 (gl_FUNC_LSTAT):
43434         Use AC_LIBSOURCES to require lstat.c and lstat.h.
43435         Remove obsolete comment.
43436         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
43437         * m4/xstrtod.m4: Likewise.
43438
43439         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
43440
43441 2005-09-22  Jim Meyering  <jim@meyering.net>
43442
43443         Sync from coreutils.
43444
43445         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
43446
43447         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
43448         the .tm_year member, since otherwise gcc-4.0 would now warn about
43449         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
43450
43451         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
43452         order to avoid an unsuppressible warning from gcc on 64-bit systems.
43453
43454         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
43455         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
43456         when run in a time zone for which daylight savings time is in effect
43457         for the starting date.
43458
43459         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
43460         stop us from restricting permissions of just-created absolute-named
43461         directories.
43462         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
43463         to restore initial working directory.
43464         * lib/mkdir-p.c (make_dir_parents): New parameter:
43465         different_working_dir, to tell caller if/when we change the working
43466         directory and are unable to return to the initial one.
43467         * lib/mkdir-p.h (make_dir_parents): Update prototype.
43468         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
43469         `return false'.  This fixes a bug introduced on 2004-07-30.
43470
43471         * lib/openat.c (fdopendir): Be sure to close the supplied
43472         file descriptor before returning.  This makes our replacement
43473         implementation a little closer to Solaris's, where fdopendir
43474         ties the file descriptor to the returned DIR* pointer.
43475         * lib/openat.c (unlinkat): New function.
43476         * lib/openat.h (unlinkat): Add prototype.
43477         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
43478         (openat_restore_fail): Rename from openat_restore_die.
43479         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
43480
43481         Provide an alternative to exiting immediately upon save_cwd or
43482         restore_cwd failure.  Now, an application can arrange e.g.,
43483         to perform a longjump in that case.
43484         * lib/openat.c: Include dirname.h.
43485         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
43486         (rpl_openat, fdopendir, fstatat): Call openat_save_die
43487         and openat_restore_die rather than calling error directly.
43488         Don't include "error.h" or "exitfail.h"; they're no longer needed.
43489
43490         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
43491         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
43492         define.
43493
43494         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
43495         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
43496                             int utc, int nanoseconds);
43497         Background:
43498         date should not have to allocate a megabyte of virtual memory to
43499         handle a format argument like +%1048575T.  When implemented with
43500         strftime, it must allocate such a buffer, use strftime to fill it
43501         in, print it, then free it.
43502         With fprintftime, it simply prints everything and exits.
43503         With no need for memory allocation, that's one fewer way to fail.
43504         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
43505         optional field width, not before, so we accept %9:z, not %:9z.
43506         (my_strftime): Be sure to use L_('x') for literals.
43507
43508         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
43509         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
43510         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
43511         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
43512         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
43513         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
43514         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
43515         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
43516         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
43517         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
43518         * lib/xgethostname.c, lib/xreadlink.c:
43519         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
43520
43521         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
43522         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
43523         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
43524         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
43525         and don't include <sys/file.h>).
43526
43527 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
43528
43529         Sync from coreutils.
43530
43531         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
43532         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
43533         [!LDAV_DONE]: Avoid unused variable warning.
43534
43535 2005-09-21  Bruno Haible  <bruno@clisp.org>
43536
43537         * lib/unicodeio.h (unicode_to_mb): New declaration.
43538
43539 2005-09-20  Derek Price  <derek@ximbiot.com>
43540
43541         * lib/getaddrinfo.c: Don't include <netdb.h> included from
43542         getaddrinfo.h.
43543
43544 2005-09-20  Bruno Haible  <bruno@clisp.org>
43545
43546         * gnulib-tool: Remove trailing slashes from the values specified for
43547         --source-base, --m4-base, --tests-base, --aux-dir.
43548         Suggested by Simon Josefsson <jas@extundo.com>.
43549
43550 2005-09-20  Bruno Haible  <bruno@clisp.org>
43551
43552         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
43553         func_modules_to_filelist, func_import, func_create_testdir): Make all
43554         sorting results locale-independent, so that gnulib-cache.m4 doesn't
43555         change when gnulib-tool is invoked in a different locale.
43556
43557 2005-09-19  Simon Josefsson  <jas@extundo.com>
43558
43559         * m4/socklen.m4: Fix typo.
43560
43561 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43562
43563         Use a consistent style for including <config.h>.
43564         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
43565         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
43566         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
43567         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
43568         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
43569         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
43570         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
43571         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
43572         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
43573         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
43574         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
43575         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
43576         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
43577         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
43578         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
43579         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
43580         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
43581         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
43582         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
43583         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
43584         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
43585         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
43586         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
43587         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
43588         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
43589         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
43590         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
43591         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
43592         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
43593         lib/xstrtoumax.c, lib/yesno.c:
43594         Standardize inclusion of config.h.
43595         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
43596         lib/inttostr.h:  Removed inclusion of config.h from header files.
43597         * lib/inttostr.c:  Adjusted in-tree users.
43598         * lib/timespec.h: Remove superfluous warning to include config.h.
43599         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
43600         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
43601         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
43602         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
43603         config.h with HAVE_CONFIG_H.
43604
43605 2005-09-19  Jim Meyering  <jim@meyering.net>
43606
43607         * modules/pathmax (License): Change to LGPL.
43608
43609 2005-09-19  Derek Price  <derek@ximbiot.com>
43610
43611         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
43612
43613 2005-09-19  Bruno Haible  <bruno@clisp.org>
43614
43615         * gnulib-tool (import): Provide default for --tests-base.
43616
43617 2005-09-19  Bruno Haible  <bruno@clisp.org>
43618
43619         * doc/quote.texi: New file, extracted from gnulib.texi.
43620         * doc/ctime.texi: New file, extracted from gnulib.texi.
43621         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
43622         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
43623         * doc/gnulib.texi: Include them.
43624
43625 2005-09-18  Bruno Haible  <bruno@clisp.org>
43626
43627         Portability fix.
43628         * gnulib-tool (func_readlink): New function.
43629         (func_ln_if_changed): Use it.
43630
43631 2005-09-18  Bruno Haible  <bruno@clisp.org>
43632
43633         * gnulib-tool: Support --with-tests also with --import.
43634         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
43635         (func_import): Use variables $testsbase and $inctests. Emit a
43636         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
43637         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
43638         SUBDIRS += $testsdir.
43639         (func_create_testdir): Update.
43640
43641 2005-09-18  Bruno Haible  <bruno@clisp.org>
43642
43643         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
43644         instead of $dry_run.
43645         (func_cp_if_changed, func_mv_if_changed): Remove functions.
43646         (func_ln_if_changed): Don't handle dry-run here.
43647         (func_import): In dry-run mode, detect more precisely which actions
43648         would be performed, and don't use "...ing" verbs.
43649
43650 2005-09-18  Bruno Haible  <bruno@clisp.org>
43651
43652         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
43653         (func_import): Use join on two temporary files instead of three nested
43654         loops, in order to determine which files are new or old.
43655
43656 2005-09-18  Bruno Haible  <bruno@clisp.org>
43657
43658         * gnulib-tool (func_import): Comment out code that spits out the
43659         new files with --dry-run.
43660
43661 2005-09-18  Bruno Haible  <bruno@clisp.org>
43662
43663         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
43664
43665 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
43666
43667         * lib/stat-time.h: New file.
43668         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
43669         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
43670         in a different way.
43671         (timespec_cmp): New function.
43672         * lib/utimecmp.c: Include stat-time.h.
43673         (SYSCALL_RESOLUTION): Depend on whether various struct stat
43674         members exist, not on the obsolescent ST_MTIM_NSEC.
43675         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
43676
43677 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
43678
43679         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
43680
43681 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
43682
43683         * MODULES.html.sh (File system functions): Add stat-time.
43684         * modules/stat-time: New file.
43685         * modules/timespec (Files): Remove m4/st_mtim.m4; this
43686         is now done in a different way, by the stat-time module.
43687         * modules/utimecmp (Depends-on): Add stat-time.
43688
43689 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
43690
43691         * m4/st_mtim.m4: Remove.  Superseded by...
43692         * m4/stat-time.m4: New file.
43693         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
43694         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
43695
43696 2005-09-15  Derek Price  <derek@ximbiot.com>
43697
43698         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
43699
43700 2005-09-15  Derek Price  <derek@ximbiot.com>
43701
43702         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
43703         * lib/regex_internal.c: Ditto, using this...
43704         (__GNUC_PREREQ): ...new macro.
43705         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
43706         using...
43707         (__GNUC_PREREQ): ...this new macro.
43708
43709         * lib/strstr.h: Include string.h. Define strstr as a macro here.
43710
43711 2005-09-15  Derek Price  <derek@ximbiot.com>
43712             Paul Eggert  <eggert@cs.ucla.edu>
43713
43714         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
43715         changes, consolidating in...
43716         * lib/regex_internal.h: ...this file.
43717
43718 2005-09-13  Jim Meyering  <jim@meyering.net>
43719
43720         * lib/canon-host.c: Filter through gnu indent and reword comments
43721         slightly.
43722         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
43723
43724 2005-09-13  Derek Price  <derek@ximbiot.com>
43725
43726         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
43727         failure.
43728         Reported by Jim Meyering  <jim@meyering.net>.
43729
43730 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
43731
43732         * lib/base64.c: Typo.
43733         (base64_encode): Put b64str in initialized data section.
43734
43735 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
43736
43737         Merge glibc and coreutils changes into gnulib, plus a few
43738         extra fixes.
43739         * lib/md5.c: Use #error rather than a string.
43740         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
43741         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
43742         (__attribute__): Define to empty for non recent-GCC.
43743         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
43744         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
43745         Renamed from their non-__ counterparts, with new macros replacing
43746         them if not _LIBC.  Add __THROW attribute.
43747         (rol): Remove.
43748         (struct md5_ctx): Align buffer if using GCC.
43749         * lib/sha1.h (struct sha1_ctx): Likewise.
43750         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
43751         The old name was backwards.
43752         (NOTSWAP): Remove; not used.
43753         (rol): New macro, moved here from md5.h.
43754         (sha1_process_block): Remove a FIXME that doesn't make sense.
43755
43756 2005-09-12  Derek Price  <derek@ximbiot.com>
43757
43758         Return usable errors from canon-host.
43759         * lib/canon-host.h: New file.
43760         * lib/canon-host.c (canon_host): Wrap...
43761         (canon_host_r): ...this new function, which now relies exclusively on
43762         getaddrinfo.
43763         (ch_strerror): New function.
43764         (last_cherror): New global.
43765         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
43766         interface.
43767         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
43768         void *.
43769         (freeaddrinfo): Free ai->ai_canonname when set.
43770
43771 2005-09-12  Derek Price  <derek@ximbiot.com>
43772
43773         Make canon-host require getaddrinfo.
43774         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
43775         AC_LIBSOURCE canon-host.h.  Call...
43776         (gl_PREREQ_CANON_HOST): ...this new function, which requires
43777         gl_GETADDRINFO.
43778         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
43779
43780 2005-09-12  Derek Price  <derek@ximbiot.com>
43781
43782         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
43783         LGPL.
43784         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
43785
43786 2005-09-12  Derek Price  <derek@ximbiot.com>
43787
43788         * lib/gai_strerror.c: Include config.h when available.  Include
43789         getaddrinfo.h before other headers to test interface.
43790         Reported by Larry Jones <lawrence.jones@ugs.com>.
43791
43792 2005-09-12  Derek Price  <derek@ximbiot.com>
43793             Paul Eggert  <eggert@cs.ucla.edu>
43794
43795         * modules/glob (Files): Add glob-libc.h.
43796
43797 2005-09-12  Derek Price  <derek@ximbiot.com>
43798             Paul Eggert  <eggert@cs.ucla.edu>
43799
43800         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
43801         glob_.h, glob-libc.h.
43802         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
43803
43804 2005-09-12  Derek Price  <derek@ximbiot.com>
43805             Paul Eggert  <eggert@cs.ucla.edu>
43806
43807         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
43808         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
43809         protecting things that should be done only in gnulib contexts.
43810         * lib/glob_.h: New file, containing only the glob things needed for
43811         gnulib.
43812         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
43813         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
43814         (glob, globfree, glob_pattern_p): Now defined simply in terms of
43815         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
43816         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
43817         and to respect the namespace rules better.
43818
43819 2005-09-08  Simon Josefsson  <jas@extundo.com>
43820
43821         * modules/socklen: New file.
43822
43823 2005-09-08  Simon Josefsson  <jas@extundo.com>
43824
43825         * m4/socklen.m4: New file.
43826
43827 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
43828
43829         * modules/utimens (Files): Add m4/utimbuf.m4, since
43830         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
43831         Reported by Sergey Poznyakoff.
43832
43833 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
43834
43835         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
43836         definitions, since that's the preferred style in glibc.
43837         Fix a minor spacing issue, and update copyright notice to match
43838         glibc's.
43839
43840 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
43841
43842         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
43843
43844 2005-09-06  Simon Josefsson  <jas@extundo.com>
43845
43846         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
43847         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
43848
43849 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
43850
43851         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
43852         warning.
43853
43854 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
43855
43856         * config/srclist.txt: Add glibc bug 1302.
43857
43858 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
43859
43860         Change bitset word type from unsigned int to unsigned long int,
43861         as this has better performance on typical 64-bit hosts.
43862         Port bitset code to hosts with unusual word sizes.
43863         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
43864         (build_collating_symbol):
43865         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
43866         argument is a bitset.  This is merely a style issue, but it makes
43867         it clearer that an entire array is expected.
43868         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
43869         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
43870         Port to the case where bitset_word is not the same as unsigned int.
43871         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
43872         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
43873         Likewise.
43874         * lib/regexec.c (check_dst_limits_calc_pos_1,
43875         check_subexp_matching_top):
43876         (build_trtable, group_nodes_into_DFAstates):
43877         Likewise.
43878         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
43879         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
43880         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
43881         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
43882         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
43883         * lib/regcomp.c (optimize_subexps, lower_subexp):
43884         Work even if bitset_word has holes in its bitwise representation.
43885         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
43886         * lib/regexec.c (check_dst_limits_calc_pos_1,
43887         check_subexp_matching_top):
43888         Likewise.
43889         * lib/regex_internal.c (re_string_reconstruct):
43890         Don't assume UCHAR_MAX == 255.
43891         * lib/regex_internal.h (bitset_set_all): Likewise.
43892         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
43893         All uses changed.
43894         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
43895         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
43896         All uses changed.
43897         (BITSET_WORD_MAX): New macro.
43898         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
43899         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
43900         (bitset_empty, bitset_copy):
43901         Prefer sizeof (bitset) to multiplying it out ourselves.
43902         (bitset_not_merge): Remove; unused.
43903         (bitset_contain): Return bool, not unsigned int with one bit on.
43904         All callers changed.
43905         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
43906         alignment than re_node_set; do this by defining a new internal
43907         type struct dests_alloc and using it to allocate memory.
43908
43909 2005-09-05  Bruno Haible  <bruno@clisp.org>
43910
43911         * gnulib-tool (func_import): Fix comparison in handling of symbolic
43912         links.
43913
43914 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
43915
43916         * modules/size_max (Makefile.am): Add size_max.h
43917
43918 2005-09-04  Derek Price  <derek@ximbiot.com>
43919
43920         * gnulib-tool (func_import): Fix reversed $symbolic logic.
43921
43922 2005-09-03  Simon Josefsson  <jas@extundo.com>
43923
43924         * gnulib-tool: Fix typo.
43925
43926 2005-09-03  Simon Josefsson  <jas@extundo.com>
43927
43928         * config/srclist.txt: Add glibc bug 1293.
43929
43930 2005-09-03  Derek Price  <derek@ximbiot.com>
43931
43932         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
43933         From Larry Jones <lawrence.jones@ugs.com>.
43934
43935 2005-09-02  Simon Josefsson  <jas@extundo.com>
43936
43937         * modules/socklen: New file.
43938
43939 2005-09-02  Simon Josefsson  <jas@extundo.com>
43940
43941         * modules/havelib: New module.
43942
43943         * modules/gettext, modules/iconv, modules/lock, modules/readline:
43944         Use havelib.
43945
43946 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
43947
43948         Check for arithmetic overflow when calculating sizes, to prevent
43949         some buffer-overflow issues.  These patches are conservative, in the
43950         sense that when I couldn't determine whether an overflow was possible,
43951         I inserted a run-time check.
43952         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
43953         macros.
43954         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
43955         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
43956         (re_xnrealloc, re_x2nrealloc): New inline functions.
43957         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
43958         parse_bracket_exp):
43959         (build_equiv_class, build_charclass): Check for arithmetic overflow
43960         in size expression calculations.
43961         * lib/regex_internal.c (re_string_realloc_buffers):
43962         (build_wcs_upper_buffer, re_node_set_add_intersect):
43963         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
43964         (re_dfa_add_node, register_state): Likewise.
43965         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
43966         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
43967         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
43968         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
43969
43970 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
43971
43972         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
43973         m4/ulonglong.m4.  Problem reported by Martin Lambers.
43974
43975 2005-09-02  Bruno Haible  <bruno@clisp.org>
43976
43977         Support for lib vs. lib64 distinction on biarch platforms.
43978         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
43979         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
43980         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
43981
43982 2005-09-02  Bruno Haible  <bruno@clisp.org>
43983
43984         * gnulib-tool (import): In the other first-use case, provide defaults
43985         as well.
43986
43987 2005-09-02  Bruno Haible  <bruno@clisp.org>
43988
43989         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
43990         patches not yet found in the latest gettext release.
43991
43992 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
43993
43994         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
43995         to avoid a collision with bits/local_lim.h in glibc.
43996         All uses changed.  Problem reported by Dmitry V. Levin in
43997         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
43998
43999         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
44000         bugs in int versus size_t comparisons.
44001         (re_string_context_at): Fix bug where the code assumed that
44002         Idx is signed.
44003
44004         Use bool where appropriate.
44005         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
44006         All callers changed.
44007         (calc_eclosure_iter): Likewise, for ROOT arg.
44008         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
44009         (build_charclass_op): Likewise, for NON_MATCH arg.
44010         * lib/regex_internal.c (re_string_allocate, re_string_construct):
44011         (re_string_construct_common): Likewise, for ICASE arg.
44012         * lib/regexec.c (re_search_2_stub, re_search_stub):
44013         Likewise, for RET_LEN arg.
44014         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
44015         (set_regs): Likewise, for FL_BACKTRACK arg.
44016         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
44017         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
44018         (calc_eclosure_iter, parse_bracket_exp):
44019         Use bool for internal variables that are booleans.
44020         * lib/regexec.c (re_search_internal, check_matching,
44021         proceed_next_node):
44022         (set_regs, build_sifted_states, sift_states_bkref):
44023         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
44024         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
44025         (find_collation_sequence_value):
44026         Likewise.
44027         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
44028         (re_node_set_compare):
44029         Return bool, not int. All callers changed.
44030         * lib/regexec.c (check_halt_node_context, check_dst_limits):
44031         (build_trtable, check_node_accept): Likewise.
44032         * lib/regex_internal.h: Include stdbool.h.
44033
44034         Fix bugs uncovered when converting to bool.
44035         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
44036         failure instead of charging ahead blindly.
44037         * lib/regex_internal.c (register_state): Likewise.
44038         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
44039         for freeing internal storage.
44040         (group_nodes_into_DFA_states): Use unsigned int, not int, for
44041         bitset pieces used as boolean, to avoid undefined behavior
44042         on hosts that do int overflow checking.
44043
44044 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
44045
44046         * config/srclist.txt: Add glibc bugs 1285-1287.
44047
44048 2005-09-01  Jim Meyering  <jim@meyering.net>
44049
44050         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
44051         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
44052         Require gl_STAT_MACROS, too.
44053
44054 2005-09-01  Bruno Haible  <bruno@clisp.org>
44055
44056         * gnulib-tool (import): In the first-use case, provide defaults.
44057
44058 2005-09-01  Bruno Haible  <bruno@clisp.org>
44059
44060         * gnulib-tool (func_import): Remove the .tmp files.
44061
44062 2005-09-01  Bruno Haible  <bruno@clisp.org>
44063
44064         * gnulib-tool (func_import): Fix handling of symbolic links.
44065
44066 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
44067
44068         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
44069         old glibc regex code mishandles strings longer than 2**31 bytes.
44070         This patch fixes this when the regex code is used in gnulib
44071         (i.e., outside glibc).
44072
44073         This patch should not affect the use of the regex code inside
44074         glibc.  No doubt this problem also needs to be handled for glibc
44075         as well, but the result will be an incompatible change to the
44076         glibc ABI, and the old ABI will have to be supported too.  That
44077         can be the the subject for another patch.
44078
44079         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
44080         governing whether the rest of this patch is active.  By default,
44081         the macro is disabled and the patch has no effect.
44082         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
44083         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
44084         (struct re_pattern_buffer, re_search, re_search_2, re_match):
44085         (re_match_2, re_set_registers): Use the new types.
44086         * lib/regex_internal.h (Idx, re_hashval_t): New types.
44087         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
44088         New macros.
44089         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
44090         (re_string_context_at, bin_tree_t, re_dfastate_t):
44091         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
44092         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
44093         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
44094         (re_string_char_size_at, re_string_wchar_at):
44095         (re_string_elem_size_at):
44096         Use the new types and macros to port to 64-bit hosts.
44097         Use unsigned types for internal values, so that the code
44098         mostly works even for arrays larger than SSIZE_MAX.
44099         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
44100         (search_duplicated_node, calc_eclosure_iter, fetch_number):
44101         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
44102         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
44103         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
44104         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
44105         (calc_inveclosure, parse_dup_op, build_range_exp):
44106         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
44107         (fetch_number, create_token_tree, mark_opt_subexp):
44108         Likewise.
44109         * lib/regex_internal.c (re_string_construct_common,
44110         create_ci_newstate):
44111         (create_cd_newstate, re_string_allocate, re_string_construct):
44112         (re_string_realloc_buffers, build_wcs_upper_buffer):
44113         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
44114         (re_string_reconstruct, re_string_peek_byte_case):
44115         (re_string_fetch_byte_case, re_string_context_at):
44116         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
44117         (re_node_set_init_copy, re_node_set_add_intersect):
44118         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
44119         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
44120         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
44121         (re_acquire_state, re_acquire_state_context, register_state):
44122         Likewise.
44123         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
44124         search_cur_bkref_entry):
44125         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
44126         (re_search_internal, re_search_2_stub, re_search_stub)
44127         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
44128         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
44129         (update_cur_sifted_state, check_dst_limits):
44130         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
44131         (check_subexp_limits, sift_states_bkref, merge_state_array):
44132         (check_subexp_matching_top, get_subexp, get_subexp_sub):
44133         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
44134         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
44135         (expand_bkref_cache, check_node_accept_bytes):
44136         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
44137         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
44138         (acquire_init_state_context, check_halt_node_context):
44139         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
44140         (sift_states_backward, clean_state_log_if_needed):
44141         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
44142         (find_recover_state, transit_state_sb, transit_state_mb):
44143         (transit_state_bkref, build_trtable, match_ctx_clean):
44144         Likewise.
44145         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
44146         to work around an assumption that REG_MISSING is negative.
44147
44148         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
44149         (seek_collating_symbol_entry) [defined _LIBC]:
44150         (lookup_collation_sequence_value) [defined _LIBC]:
44151         (build_range_exp, build_collating_symbol) [defined _LIBC]:
44152         Use prototypes rather than old-style function definitions.
44153         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
44154         (transit_state_sb) [0]:
44155         (find_collation_sequence_value) [defined _LIBC]: Likewise.
44156
44157         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
44158         rm_eo.
44159
44160         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
44161         (optimize_subexps, lower_subexp):
44162         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
44163         since the signed shift might overflow.  Use 1u<<31 instead.
44164         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
44165         Likewise.
44166         * lib/regexec.c (check_dst_limits_calc_pos_1,
44167         check_subexp_matching_top): Likewise.
44168
44169         * lib/regcomp.c (optimize_subexps, lower_subexp):
44170         Use CHAR_BIT rather than 8, for clarity.
44171         * lib/regexec.c (check_dst_limits_calc_pos_1):
44172         (check_subexp_matching_top): Likewise.
44173         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
44174         have to worry about portability issues when shifting it left.
44175         Remove no-longer-needed test for table_size > 0.
44176         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
44177         in a word, as the resulting behavior is undefined.
44178         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
44179         in one case, a <= should have been an <, and in another case the
44180         whole test was missing.
44181         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
44182         the standard name CHAR_BIT.
44183         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
44184         this is not true on one's complement and signed-magnitude hosts.
44185
44186         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
44187         next_last_offset.
44188         (struct re_dfa_t): Remove unused member states_alloc.
44189         * lib/regcomp.c (init_dfa): Don't initialize unused members.
44190
44191 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
44192
44193         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
44194         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
44195         and large-file glibc and in 32-bit large-file Solaris.
44196
44197 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
44198
44199         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
44200         lengths fit in regoff_t; this isn't true if regoff_t is the same
44201         width as size_t.
44202         * lib/regex.c (re_search_internal): 5th arg is LAST_START
44203         (= START + RANGE) instead of RANGE.  This avoids overflow
44204         problems when regoff_t is the same width as size_t.
44205         All callers changed.
44206         (re_search_2_stub): Check for overflow when adding the
44207         sizes of the two strings.
44208         (re_search_stub): Check for overflow when adding START
44209         to RANGE; if it occurs, substitute the extreme value.
44210
44211 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
44212
44213         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
44214
44215 2005-08-31  Jim Meyering  <jim@meyering.net>
44216
44217         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
44218         a pointer-to-const.
44219         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
44220         (register_state): Likewise.
44221         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
44222         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
44223         (group_nodes_into_DFAstates): Likewise.
44224
44225 2005-08-31  Jim Meyering  <jim@meyering.net>
44226
44227         * check-module: Add a FIXME comment.
44228
44229 2005-08-31  Eric Blake  <ebb9@byu.net>
44230
44231         * modules/unistd-safer (Files): Add unistd--.h.
44232         * modules/stdio-safer (Files): Add stdio--.h.
44233
44234 2005-08-31  Derek Price  <derek@ximbiot.com>
44235
44236         * lib/getdelim.c (getdelim): Return EOF on EOF.
44237         Reported by Larry Jones <lawrence.jones@ugs.com>.
44238
44239 2005-08-31  Bruno Haible  <bruno@clisp.org>
44240
44241         Avoid unnecessary diffs in the generated lib/Makefile.am.
44242         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
44243         the generated files.
44244         (func_import): Don't set cmd.
44245
44246 2005-08-31  Bruno Haible  <bruno@clisp.org>
44247
44248         * lib/strstr.c: Include <stddef.h>, for NULL.
44249         * lib/strcasestr.c: Likewise.
44250         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
44251
44252 2005-08-31  Bruno Haible  <bruno@clisp.org>
44253
44254         * gnulib-tool: New option --macro-prefix.
44255         (func_import): Use macro_prefix.
44256         (import): Handle option --macro-prefix.
44257
44258 2005-08-31  Bruno Haible  <bruno@clisp.org>
44259
44260         * gnulib-tool (import): Rename most ac_* variables to cached_*.
44261         Also use new variables cached_lgpl, cached_libtool.
44262
44263 2005-08-31  Bruno Haible  <bruno@clisp.org>
44264
44265         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
44266         always instantiating them.
44267
44268 2005-08-31  Bruno Haible  <bruno@clisp.org>
44269
44270         * gnulib-tool (func_import): Read the previous cached settings
44271         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
44272         earlier added by gnulib but are now dropped. Warn when a gnulib file
44273         overwrites a non-gnulib file.
44274
44275 2005-08-31  Bruno Haible  <bruno@clisp.org>
44276
44277         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
44278         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
44279         projects that don't keep autogenerated files in CVS. Put into
44280         actioncmd only the specified modules, not the transitive closure.
44281
44282 2005-08-31  Bruno Haible  <bruno@clisp.org>
44283
44284         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
44285         Create directories that shall be filled.
44286         (import): Don't look for gl_* macros in configure.ac. Recurse across
44287         all directories containing a gnulib-cache.m4 files, if meaningful.
44288
44289 2005-08-31  Bruno Haible  <bruno@clisp.org>
44290
44291         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
44292         (import): Set seen_libtool when we see gl_LIBTOOL.
44293
44294 2005-08-31  Bruno Haible  <bruno@clisp.org>
44295
44296         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
44297         declaration macro definitions from generated gnulib.m4.
44298
44299 2005-08-30  Oskar Liljeblad  <oskar@osk.mine.nu>
44300
44301         * lib/iconvme.h: Add prototype for iconv_alloc.
44302
44303 2005-08-29  Simon Josefsson  <jas@extundo.com>
44304
44305         * lib/iconvme.c: Fix errno.
44306
44307 2005-08-29  Bruno Haible  <bruno@clisp.org>
44308
44309         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
44310         that it works when the directory contains spaces.
44311
44312 2005-08-29  Bruno Haible  <bruno@clisp.org>
44313
44314         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
44315
44316 2005-08-29  Bruno Haible  <bruno@clisp.org>
44317
44318         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
44319         Emit more advice.
44320
44321 2005-08-29  Bruno Haible  <bruno@clisp.org>
44322         and Stepan Kasal  <kasal@ucw.cz>
44323
44324         * check-module: If more parameters are given, check each of them
44325         separately; add more exceptions, as noted by Jim Meyering.
44326         (check_module): New procedure.
44327         (%exempt_header): Now contains all exceptions.
44328
44329 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
44330
44331         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
44332
44333 2005-08-29  Oskar Liljeblad  <oskar@osk.mine.nu>
44334
44335         * lib/iconvme.c: Split iconv_string into iconv_alloc.
44336
44337 2005-08-28  Bruno Haible  <bruno@clisp.org>
44338
44339         * m4/gnulib-tool.m4: New file.
44340
44341 2005-08-27  Jim Meyering  <jim@meyering.net>
44342
44343         * modules/unistd-safer (Files): Add pipe-safer.c.
44344         * modules/fcntl-safer (Files): Add creat-safer.c.
44345
44346 2005-08-27  Jim Meyering  <jim@meyering.net>
44347
44348         * m4/stdlib-safer.m4: New file.  From coreutils.
44349         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
44350         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
44351         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
44352         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
44353         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
44354
44355 2005-08-27  Jim Meyering  <jim@meyering.net>
44356
44357         * lib/fopen-safer.c: Merge minor changes from coreutils.
44358         * lib/dup-safer.c: Likewise.
44359         * lib/fd-safer.c: Likewise.
44360
44361         Merge from coreutils.
44362         * lib/stdio--.h: New file.
44363         * lib/stdlib--.h: New file.
44364         * lib/mkstemp-safer.c: New file.
44365
44366         GNU tar needs these.
44367         * lib/pipe-safer.c: New file.
44368         * lib/creat-safer.c: New file.
44369         * lib/fcntl--.h (creat): Define to creat_safer.
44370         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
44371         * lib/unistd--.h (pipe): Define to pipe_safer.
44372         * lib/unistd-safer.h: Declare pipe_safer.
44373
44374 2005-08-26  Simon Josefsson  <jas@extundo.com>
44375
44376         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
44377         Haible <bruno@clisp.org>.
44378
44379 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
44380
44381         * lib/regex_internal.h: Remove all references to
44382         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
44383         or better.
44384         (bitset_not, bitset_merge, bitset_not_merge):
44385         (bitset_mask, re_string_allocate, re_string_construct):
44386         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
44387         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
44388         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
44389         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
44390         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
44391         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
44392         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
44393         (re_acquire_state_context):
44394         Remove unnecessary forward decls.
44395         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
44396         Put __attribute at function definition,
44397         now that the function decl has been removed.
44398         * lib/regex_internal.c (re_string_peek_byte_case):
44399         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
44400         Likewise.
44401
44402 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
44403
44404         * m4/regex.m4: Add AC_PREREQ(2.50).
44405         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
44406
44407 2005-08-25  Simon Josefsson  <jas@extundo.com>
44408
44409         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
44410         __fsetlocking.
44411
44412 2005-08-25  Simon Josefsson  <jas@extundo.com>
44413
44414         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
44415         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
44416         GLIBC specific code.
44417
44418 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
44419
44420         Make regex safe for g++.  This fixes one real bug (an "err"
44421         that should have been "*err").  g++ problem reported by
44422         Sam Steingold.
44423         * lib/regex_internal.h (re_calloc): New macro, consistent with
44424         re_malloc etc.  All callers of calloc changed to use re_calloc.
44425         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
44426         not int.  All callers changed.
44427         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
44428         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
44429         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
44430         (find_recover_state): Change "err" to "*err"; this fixes what
44431         appears to be a real bug.
44432         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
44433         versus int.
44434
44435 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
44436
44437         * modules/regex (Depends-on): Add malloc, since the code
44438         assumes that !malloc(0) means failure.
44439
44440 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
44441
44442         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
44443
44444         alloca modernization/simplification for regex.
44445         * lib/regex.c: Remove portability cruft for alloca.  This no longer
44446         needs to be at the start of the file, and can be moved into
44447         regex_internal.h and simplified.
44448         * lib/regex_internal.h: Include <alloca.h>.
44449         (__libc_use_alloca) [!defined _LIBC]: New macro.
44450         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
44451         now works outside glibc.
44452
44453 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
44454
44455         * config/srclist.txt: Add glibc bugs 1241, 1245.
44456
44457 2005-08-25  Jim Meyering  <jim@meyering.net>
44458
44459         * lib/open-safer.c: Include <config.h>.
44460         Otherwise, we'd lose LARGEFILE support in any file using
44461         e.g. "fcntl--.h"
44462
44463 2005-08-25  Bruno Haible  <bruno@clisp.org>
44464
44465         * m4/minmax.m4: Require autoconf 2.52.
44466         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
44467         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
44468         alternatives of translit over the alphabet.
44469         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
44470
44471 2005-08-24  Simon Josefsson  <jas@extundo.com>
44472
44473         * tests/test-getpass.c: New file.
44474
44475 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
44476
44477         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
44478         for GNU regex features.
44479
44480 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
44481
44482         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
44483         * lib/regex.h (regerror): Likewise.
44484
44485         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
44486         requires this.  (The code never needed it.)
44487
44488         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
44489         All uses of recently-renamed identifiers changed to use the new,
44490         POSIX-compliant names.  The code will build and run just fine
44491         without these changes, but it's better to eat our own dog food
44492         and use the standard-conforming names.
44493
44494         * lib/regex.h: Fix a multitude of POSIX name space violations.
44495         These changes have an effect only for programs that define
44496         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
44497         do not change anything for programs compiled in the normal way.
44498         Also, there is no effect on the ABI.
44499
44500         (_REGEX_SOURCE): New macro.
44501         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
44502         defined and _GNU_SOURCE is not; this fixes a name space violation.
44503
44504         Rename the following macros to obey POSIX requirements.
44505         The old names are still visible as macros if _REGEX_SOURCE is defined.
44506         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
44507         RE_BACKSLASH_ESCAPE_IN_LISTS.
44508         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
44509         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
44510         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
44511         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
44512         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
44513         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
44514         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
44515         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
44516         (REG_INTERVALS): renamed from RE_INTERVALS.
44517         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
44518         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
44519         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
44520         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
44521         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
44522         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
44523         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
44524         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
44525         RE_UNMATCHED_RIGHT_PAREN_ORD.
44526         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
44527         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
44528         (REG_DEBUG): renamed from RE_DEBUG.
44529         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
44530         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
44531         unusual, since we can't clash with the POSIX REG_ICASE.
44532         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
44533         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
44534         (REG_NO_SUB): renamed from RE_NO_SUB.
44535         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
44536         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
44537         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
44538         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
44539         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
44540         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
44541         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
44542         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
44543         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
44544         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
44545         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
44546         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
44547         RE_SYNTAX_POSIX_MINIMAL_BASIC.
44548         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
44549         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
44550         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
44551         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
44552         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
44553         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
44554         (REG_FIXED): Renamed from REGS_FIXED.
44555         (REG_NREGS): Renamed from RE_NREGS.
44556
44557         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
44558         of other REG_* macros, since POSIX says the user is allowed to
44559         #undef these macros selectively.
44560
44561         (reg_errcode_t): Update comment stating what other tables need
44562         to be consistent.
44563
44564         Rename the following enum values to obey POSIX requirements.
44565         The old names are still visible as macros.
44566         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
44567         is not defined, since GNU is supposed to be a superset of POSIX as
44568         much as possible, and since we want reg_errcode_t to be a signed
44569         type for implementation consistency.
44570         (_REG_NOERROR): Renamed from REG_NOERROR.
44571         (_REG_NOMATCH): Renamed from REG_NOMATCH.
44572         (_REG_BADPAT): Renamed from REG_BADPAT.
44573         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
44574         (_REG_ECTYPE): Renamed from REG_ECTYPE.
44575         (_REG_EESCAPE): Renamed from REG_EESCAPE.
44576         (_REG_ESUBREG): Renamed from REG_ESUBREG.
44577         (_REG_EBRACK): Renamed from REG_EBRACK.
44578         (_REG_EPAREN): Renamed from REG_EPAREN.
44579         (_REG_EBRACE): Renamed from REG_EBRACE.
44580         (_REG_BADBR): Renamed from REG_BADBR.
44581         (_REG_ERANGE): Renamed from REG_ERANGE.
44582         (_REG_ESPACE): Renamed from REG_ESPACE.
44583         (_REG_BADRPT): Renamed from REG_BADRPT.
44584         (_REG_EEND): Renamed from REG_EEND.
44585         (_REG_ESIZE): Renamed from REG_ESIZE.
44586         (_REG_ERPAREN): Renamed from REG_ERPAREN.
44587         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
44588         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
44589         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
44590         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
44591
44592         (_REG_RE_NAME, _REG_RM_NAME): New macros.
44593         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
44594         changed.  But support the old name if the new one is not defined
44595         and if _REGEX_SOURCE.
44596
44597         Change the following member names in struct re_pattern_buffer.
44598         The old names are still supported if !_REGEX_SOURCE.
44599         The new names are always supported, regardless of _REGEX_SOURCE.
44600         (re_buffer): Renamed from buffer.
44601         (re_allocated): Renamed from allocated.
44602         (re_used): Renamed from used.
44603         (re_syntax): Renamed from syntax.
44604         (re_fastmap): Renamed from fastmap.
44605         (re_translate): Renamed from translate.
44606         (re_can_be_null): Renamed from can_be_null.
44607         (re_regs_allocated): Renamed from regs_allocated.
44608         (re_fastmap_accurate): Renamed from fastmap_accurate.
44609         (re_no_sub): Renamed from no_sub.
44610         (re_not_bol): Renamed from not_bol.
44611         (re_not_eol): Renamed from not_eol.
44612         (re_newline_anchor): Renamed from newline_anchor.
44613
44614         Change the following member names in struct re_registers.
44615         The old names are still supported if !_REGEX_SOURCE.
44616         The new names are always supported, regardless of _REGEX_SOURCE.
44617         (rm_num_regs): Renamed from num_regs.
44618         (rm_start): Renamed from start.
44619         (rm_end): Renamed from end.
44620
44621         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
44622         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
44623         Prepend __ to parameter names.
44624
44625         Undo yesterday's changes.
44626
44627 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
44628
44629         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
44630         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
44631         lib/regex.c.
44632
44633 2005-08-24  Jim Meyering  <jim@meyering.net>
44634
44635         Sync from coreutils.
44636         * m4/fcntl-safer.m4: New file.
44637
44638         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
44639         and object files for this module.
44640
44641 2005-08-24  Jim Meyering  <jim@meyering.net>
44642
44643         Sync from coreutils.
44644         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
44645
44646 2005-08-24  Jim Meyering  <jim@meyering.net>
44647
44648         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
44649         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
44650
44651 2005-08-24  Jim Meyering  <jim@meyering.net>
44652
44653         * modules/fcntl-safer: New module.
44654         * modules/fts (Depends-on): Add fcntl-safer.
44655         * MODULES.html.sh (File descriptor based Input/Output):
44656         Add fcntl-safer.
44657
44658 2005-08-24  Bruno Haible  <bruno@clisp.org>
44659
44660         Support for unit test modules.
44661         * modules/README: Mention tests modules.
44662         * modules/TEMPLATE-TESTS: New file.
44663         * gnulib-tool: New options --extract-tests-module, --with-tests and
44664         --tests-base (unused for the moment).
44665         (testsbase, inctests): New variables.
44666         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
44667         (func_verify_module): Exclude TEMPLATE-TESTS.
44668         (func_verify_nontests_module, func_verify_tests_module): New functions.
44669         (func_get_dependencies): Add implicit dependency for tests modules.
44670         (func_get_tests_module): New function.
44671         (func_modules_transitive_closure): When --with-tests was specified,
44672         include the unit tests as well, unless explicitly avoided.
44673         (func_emit_lib_Makefile_am): Ignore the tests modules here.
44674         (func_emit_tests_Makefile_am): New function.
44675         (func_create_testdir): When --with-tests was specified, emit a
44676         tests/ directory.
44677         * MODULES.html.sh (Future developments): Update.
44678
44679 2005-08-24  Bruno Haible  <bruno@clisp.org>
44680
44681         * modules/tls-tests: New file.
44682         * tests/test-tls.c: New file, from GNU gettext.
44683
44684 2005-08-24  Bruno Haible  <bruno@clisp.org>
44685
44686         * modules/lock-tests: New file.
44687         * tests/test-lock.c: New file, from GNU gettext.
44688
44689 2005-08-24  Bruno Haible  <bruno@clisp.org>
44690
44691         * lib/lock.h: Add multiple inclusion guard.
44692         * lib/tls.h: Add multiple inclusion guard.
44693
44694 2005-08-24  Bruno Haible  <bruno@clisp.org>
44695
44696         * gnulib-tool: Add support for the --aux-dir option to
44697         --create-testdir, --create-megatestdir, --test, --megatest.
44698         (func_create_testdir, func_create_megatestdir): Optionally emit a
44699         AC_CONFIG_AUX_DIR directive.
44700         (create-testdir, create-megatestdir, test, megatest): Provide a
44701         default value for $auxdir.
44702
44703 2005-08-24  Bruno Haible  <bruno@clisp.org>
44704
44705         * gnulib-tool (import): Use compound statement instead of subshell
44706         where possible.
44707
44708 2005-08-24  Bruno Haible  <bruno@clisp.org>
44709
44710         * gnulib-tool (import): Change --aux-dir default to "build-aux".
44711
44712 2005-08-24  Bruno Haible  <bruno@clisp.org>
44713
44714         * gnulib-tool (func_version): Update.
44715
44716 2005-08-24  Bruno Haible  <bruno@clisp.org>
44717
44718         * gnulib-tool (func_import, func_create_testdir,
44719         func_create_megatestdir): Quote all autoconf macro arguments.
44720
44721 2005-08-24  Bruno Haible  <bruno@clisp.org>
44722
44723         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
44724         option --force, because --force causes the aclocal.m4 of each
44725         subdirectory to be newer than the corresponding config.h.in.
44726
44727 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
44728
44729         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
44730         All contents moved to gl_REGEX.
44731         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
44732         assume that it does.
44733
44734 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
44735
44736         * lib/regex.h (REG_NOSYS)
44737         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
44738         Define, since POSIX requires it as of 2001.
44739         (_REG_ENOSYS)
44740         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
44741         New private symbol, used to keep the enum signed in all cases.
44742         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
44743         Youngman in
44744         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
44745
44746         * lib/regex_internal.c (re_string_skip_chars, register_state):
44747         (calc_state_hash):
44748         Remove forward decls; no longer needed now that we use prototypes.
44749         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
44750         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
44751         (clean_state_log_if_needed): Likewise.
44752
44753 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
44754
44755         * config/srclist.txt: Add glibc bugs 1231-1233.
44756
44757 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
44758
44759         Fix problems reported by Sam Steingold in
44760         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
44761         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
44762         assumed that reg_errcode_t is a signed type, which is not
44763         necessarily true if _XOPEN_SOURCE is not defined.
44764         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
44765         since some compilers warn about it otherwise.
44766
44767 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
44768
44769         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
44770         (init_word_char, create_initial_state, duplicate_node_closure):
44771         (fetch_token, peek_token_bracket, build_range_exp):
44772         (build_collating_symbol): Remove forward decls; no longer needed
44773         now that we use prototypes.
44774
44775         * lib/regcomp.c:
44776         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
44777         (re_compile_fastmap_iter, regcomp, regerror, regfree):
44778         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
44779         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
44780         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
44781         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
44782         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
44783         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
44784         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
44785         (build_range_exp, build_collating_symbol, parse_bracket_exp):
44786         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
44787         (build_charclass, build_charclass_op, fetch_number, create_tree):
44788         (create_token_tree, mark_opt_subexp, duplicate_tree):
44789         Use prototypes rather than old-style definitions.
44790
44791         * lib/regex_internal.c:
44792         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
44793         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
44794         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
44795         (re_string_reconstruct, re_string_peek_byte_case):
44796         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
44797         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
44798         (re_node_set_init_copy, re_node_set_add_intersect):
44799         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
44800         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
44801         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
44802         (re_acquire_state, re_acquire_state_context, register_state):
44803         (create_ci_newstate, create_cd_newstate, free_state):
44804         Likewise.
44805         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
44806         re_search_2):
44807         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
44808         (re_search_internal, prune_impossible_nodes):
44809         (acquire_init_state_context, check_matching, static):
44810         (check_halt_node_context, check_halt_state_context, proceed_next_node):
44811         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
44812         (update_regs, sift_states_backward, build_sifted_states):
44813         (clean_state_log_if_needed, merge_state_array):
44814         (update_cur_sifted_state, add_epsilon_src_nodes):
44815         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
44816         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
44817         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
44818         (find_recover_state, check_subexp_matching_top, transit_state_mb):
44819         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
44820         (check_arrival, check_arrival_add_next_nodes):
44821         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
44822         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
44823         (check_node_accept_bytes, check_node_accept, extend_buffers):
44824         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
44825         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
44826         (sift_ctx_init):
44827         Likewise.
44828
44829         * lib/regex_internal.h:
44830         (re_string_allocate, re_string_construct, re_string_reconstruct):
44831         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
44832         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
44833         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
44834         (re_string_context_at, re_string_peek_byte_case):
44835         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
44836         is defined, since we now use prototypes always.
44837
44838         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
44839         C89 or better.  All uses removed.
44840
44841 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
44842
44843         * config/srclist.txt: Add glibc bugs 1220-1227.
44844
44845 2005-08-20  Jim Meyering  <jim@meyering.net>
44846
44847         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
44848         of unused local, dfa.
44849
44850 2005-08-20  Bruno Haible  <bruno@clisp.org>
44851
44852         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
44853
44854 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
44855
44856         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
44857         (re_node_set_insert_last, re_dfa_add_node):
44858         Rename local variables to avoid GCC shadowing warnings.
44859
44860 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
44861
44862         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
44863         [defined lint]: Suppress bogus uninitialized-variable warnings.
44864
44865         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
44866         and let the caller return REG_ESPACE if out of space.  This
44867         removes an uninitialied-variable warning with GCC 4.0.1, and also
44868         avoids taking the address of a local variable.  All callers
44869         changed.
44870
44871 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
44872
44873         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
44874         $LIBCSRC/posix/regexec.c.
44875         Add glibc bug 1217 for regcomp.c.
44876
44877 2005-08-19  Jim Meyering  <jim@meyering.net>
44878
44879         * lib/regexec.c (proceed_next_node): Redo local variables to
44880         avoid GCC shadowing warnings.
44881
44882 2005-08-18  Bruno Haible  <bruno@clisp.org>
44883
44884         * lib/strstr.c (strstr): Fix return value in multibyte case.
44885         * lib/strcasestr.c (strcasestr): Likewise.
44886
44887 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
44888
44889         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
44890
44891 2005-08-17  Jim Meyering  <jim@meyering.net>
44892
44893         Make the %s format (seconds since the epoch) work for a negative
44894         number and when used with a zero-padded field width, e.g. %015s.
44895
44896         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
44897         label so that it precedes the code to set `digits'.  Otherwise,
44898         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
44899         print `00-22'.  Now, it prints `-0022', as it should.
44900
44901 2005-08-17  Bruno Haible  <bruno@clisp.org>
44902
44903         * modules/strstr (Files): Add m4/mbrtowc.m4.
44904         (Depends-on): Add mbuiter.
44905
44906 2005-08-17  Bruno Haible  <bruno@clisp.org>
44907
44908         * modules/strcasestr: New file.
44909         * MODULES.html.sh (String handling, based on ANSI C 89): Add
44910         strcasestr.
44911
44912 2005-08-17  Bruno Haible  <bruno@clisp.org>
44913
44914         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
44915
44916 2005-08-17  Bruno Haible  <bruno@clisp.org>
44917
44918         * modules/mbuiter: New file.
44919         * MODULES.html.sh (Extended multibyte and wide character utilities):
44920         Add mbuiter.
44921
44922 2005-08-17  Bruno Haible  <bruno@clisp.org>
44923
44924         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
44925         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
44926
44927 2005-08-17  Bruno Haible  <bruno@clisp.org>
44928
44929         * m4/strcasestr.m4: New file.
44930
44931 2005-08-17  Bruno Haible  <bruno@clisp.org>
44932
44933         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
44934         * lib/strstr.c: Completely rewritten, with multibyte locale support.
44935
44936 2005-08-17  Bruno Haible  <bruno@clisp.org>
44937
44938         * lib/strcasestr.h: New file.
44939         * lib/strcasestr.c: New file.
44940
44941 2005-08-17  Bruno Haible  <bruno@clisp.org>
44942
44943         * lib/strcasecmp.c: Use mbuiter.h.
44944
44945 2005-08-17  Bruno Haible  <bruno@clisp.org>
44946
44947         * lib/mbuiter.h: New file.
44948
44949 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
44950
44951         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
44952         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
44953         and gl_GETOPT are both invoked via different paths (as happens
44954         with GNU tar CVS because it uses both argp and getopt), the former
44955         wins.
44956
44957 2005-08-16  Bruno Haible  <bruno@clisp.org>
44958
44959         * modules/tls: New file.
44960         * MODULES.html.sh (Multithreading): Add tls.
44961
44962 2005-08-16  Bruno Haible  <bruno@clisp.org>
44963
44964         * modules/strnlen1: New file.
44965         * MODULES.html.sh (String handling): Add strnlen1.
44966
44967 2005-08-16  Bruno Haible  <bruno@clisp.org>
44968
44969         * modules/strcase (Files): Add m4/mbrtowc.m4.
44970         (Depends-on): Add strnlen1, mbchar.
44971
44972 2005-08-16  Bruno Haible  <bruno@clisp.org>
44973
44974         * modules/mbiter: New file.
44975         * MODULES.html.sh (Extended multibyte and wide character utilities):
44976         Add mbiter.
44977
44978 2005-08-16  Bruno Haible  <bruno@clisp.org>
44979
44980         * modules/mbfile: New file.
44981         * MODULES.html.sh (Extended multibyte and wide character utilities):
44982         Add mbfile.
44983
44984 2005-08-16  Bruno Haible  <bruno@clisp.org>
44985
44986         * modules/mbchar: New file.
44987         * MODULES.html.sh (Extended multibyte and wide character utilities):
44988         New section.
44989
44990 2005-08-16  Bruno Haible  <bruno@clisp.org>
44991
44992         * m4/tls.m4: New file, from GNU gettext.
44993
44994 2005-08-16  Bruno Haible  <bruno@clisp.org>
44995
44996         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
44997         always.
44998         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
44999
45000 2005-08-16  Bruno Haible  <bruno@clisp.org>
45001
45002         * m4/mbiter.m4: New file.
45003
45004 2005-08-16  Bruno Haible  <bruno@clisp.org>
45005
45006         * m4/mbfile.m4: New file.
45007
45008 2005-08-16  Bruno Haible  <bruno@clisp.org>
45009
45010         * m4/mbchar.m4: New file.
45011
45012 2005-08-16  Bruno Haible  <bruno@clisp.org>
45013
45014         * lib/tls.h: New file, from GNU gettext.
45015         * lib/tls.c: New file, from GNU gettext.
45016
45017 2005-08-16  Bruno Haible  <bruno@clisp.org>
45018
45019         * lib/strnlen1.h: New file.
45020         * lib/strnlen1.c: New file.
45021
45022 2005-08-16  Bruno Haible  <bruno@clisp.org>
45023
45024         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
45025         (mbi_init): Update.
45026         (mbi_avail, mbi_advance): Let the iteration end before the terminating
45027         NUL byte, not after it.
45028
45029 2005-08-16  Bruno Haible  <bruno@clisp.org>
45030
45031         * lib/strcase.h (strcasecmp): Add note in comments.
45032         * lib/strncasecmp.c: Use code from strcasecmp.c.
45033         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
45034         (strcasecmp): Work correctly in multibyte locales.
45035
45036 2005-08-16  Bruno Haible  <bruno@clisp.org>
45037
45038         * lib/mbiter.h: New file.
45039
45040 2005-08-16  Bruno Haible  <bruno@clisp.org>
45041
45042         * lib/mbfile.h: New file.
45043
45044 2005-08-16  Bruno Haible  <bruno@clisp.org>
45045
45046         * lib/mbchar.h: New file.
45047         * lib/mbchar.c: New file.
45048
45049 2005-08-16  Bruno Haible  <bruno@clisp.org>
45050
45051         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
45052         the valid ones. Makes the comparison operations transitive:
45053         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
45054         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
45055
45056 2005-08-15  Simon Josefsson  <jas@extundo.com>
45057
45058         * modules/ssize_t (License): Change to 'unlimited'.
45059
45060         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
45061
45062 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
45063
45064         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
45065         Add comments for each pending glibc patch.
45066
45067 2005-08-15  Bruno Haible  <bruno@clisp.org>
45068
45069         * lib/regex.h (__restrict_arr): Don't define to __restrict if
45070         __cplusplus is defined.
45071
45072 2005-08-14  Jim Meyering  <jim@meyering.net>
45073
45074         Sync from coreutils.
45075
45076         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
45077         Use the hash-table-based cycle-detection code not just when
45078         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
45079         Reported by James Youngman in
45080         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
45081         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
45082         FTS_TIGHT_CYCLE_CHECK.
45083         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
45084         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
45085         once again.
45086         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
45087         * lib/fts.c (fd_safer): Remove decl.
45088         Include fcntl--.h rather than unistd-safer.h
45089         (fts_safe_changedir): Don't call fd_safer; no longer needed
45090         now that we include fcntl--.h.
45091
45092 2005-08-12  Simon Josefsson  <jas@extundo.com>
45093
45094         * modules/getndelim2: Use ssize_t module.
45095         * modules/getnline: Likewise.
45096         * modules/safe-read: Likewise.
45097         * modules/xreadlink: Likewise.
45098
45099         * modules/ssize_t: New file.
45100
45101 2005-08-12  Simon Josefsson  <jas@extundo.com>
45102
45103         * m4/readline.m4: Look for termcap, curses or ncurses if required.
45104
45105 2005-08-12  Simon Josefsson  <jas@extundo.com>
45106
45107         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
45108         ssize_t.
45109
45110 2005-08-12  Simon Josefsson  <jas@extundo.com>
45111
45112         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
45113         readline, getdelim and check_version.
45114         (Support for systems lacking ISO C 99: Sizes of integer types):
45115         Add size_max.
45116
45117 2005-08-12  Bruno Haible  <bruno@clisp.org>
45118
45119         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
45120
45121 2005-08-11  Simon Josefsson  <jas@extundo.com>
45122
45123         * modules/readline: New file.
45124
45125         * modules/strnlen (Files): Add strnlen.h.
45126
45127 2005-08-11  Simon Josefsson  <jas@extundo.com>
45128
45129         * m4/readline.m4: New file.
45130
45131 2005-08-11  Simon Josefsson  <jas@extundo.com>
45132
45133         * lib/readline.h, readline.c: New file.
45134
45135 2005-08-11  Simon Josefsson  <jas@extundo.com>
45136
45137         * doc/gnulib.texi (Initial import, Finishing touches): Mention
45138         gl_AVOID.
45139
45140 2005-08-11  Bruno Haible  <bruno@clisp.org>
45141
45142         * lib/strnlen.h (strnlen): Change parameter name to match comment.
45143
45144 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
45145
45146         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
45147
45148 2005-08-10  Simon Josefsson  <jas@extundo.com>
45149
45150         * tests/test-iconvme.c: New file.
45151
45152 2005-08-10  Simon Josefsson  <jas@extundo.com>
45153
45154         * m4/strnlen.m4: New file.
45155
45156         * m4/strndup.m4: Don't check for strnlen declaration, done in
45157         strnlen.m4.
45158
45159 2005-08-10  Simon Josefsson  <jas@extundo.com>
45160
45161         * lib/strndup.c: Use strnlen.h.
45162
45163         * lib/strnlen.h: New file.
45164
45165 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
45166
45167         * README: Typos.
45168
45169 2005-08-02  Simon Josefsson  <jas@extundo.com>
45170
45171         * modules/readline: New file.
45172
45173 2005-08-02  Simon Josefsson  <jas@extundo.com>
45174
45175         * modules/getdelim: New file.
45176
45177         * modules/getline: Rewrite, don't use getndelim2.
45178
45179 2005-08-02  Simon Josefsson  <jas@extundo.com>
45180
45181         * m4/getline.m4: Separate out getdelim stuff into separate module.
45182
45183         * m4/getdelim.m4: New file.
45184
45185 2005-08-02  Simon Josefsson  <jas@extundo.com>
45186
45187         * lib/getline.h, getline.c: Rewrite.
45188
45189         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
45190
45191 2005-07-31  Bruno Haible  <bruno@clisp.org>
45192
45193         * lib/lock.h (gl_lock_initializer): New macro.
45194         (gl_lock_define_initialized): Use it.
45195         (gl_rwlock_initializer): New macro.
45196         (gl_rwlock_define_initialized): Use it.
45197         (gl_recursive_lock_initializer): New macro.
45198         (gl_recursive_lock_define_initialized): Use it.
45199
45200 2005-07-30  Karl Berry  <karl@gnu.org>
45201
45202         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
45203         Report from Ben Pfaff, regarding getopt.
45204
45205 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
45206
45207         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
45208         normal way.
45209         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
45210         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
45211         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
45212         (gl_GETOPT): Use the new macros.  Most of the implementation
45213         is moved to the new macros.  This is for programs like Emacs
45214         that don't want all the functionality of gl_GETOPT.
45215
45216 2005-07-26  Bruno Haible  <bruno@clisp.org>
45217
45218         * m4/lock.m4: Update from GNU gettext.
45219
45220 2005-07-26  Bruno Haible  <bruno@clisp.org>
45221
45222         * lib/lock.h: Update from GNU gettext.
45223         * lib/lock.c: Update from GNU gettext.
45224
45225 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
45226
45227         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
45228         obsolescent AC_TRY_RUN.  Include the default includes files, for
45229         'exit'.
45230
45231 2005-07-24  Bruno Haible  <bruno@clisp.org>
45232
45233         * modules/visibility: New file.
45234         * MODULES.html.sh (Misc): Add visibility.
45235
45236 2005-07-24  Bruno Haible  <bruno@clisp.org>
45237
45238         * m4/visibility.m4: New file.
45239
45240 2005-07-24  Bruno Haible  <bruno@clisp.org>
45241
45242         * doc/visibility.texi: New file.
45243
45244 2005-07-22  Bruno Haible  <bruno@clisp.org>
45245
45246         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
45247         $(ALLOCA_H), redundant through BUILT_SOURCES.
45248         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
45249         redundant through BUILT_SOURCES.
45250         * modules/byteswap (Makefile.am): Remove explicit dependency on
45251         $(BYTESWAP_H), redundant through BUILT_SOURCES.
45252         * modules/fnmatch (Makefile.am): Remove explicit dependency on
45253         $(FNMATCH_H), redundant through BUILT_SOURCES.
45254         * modules/getopt (Makefile.am): Remove explicit dependency on
45255         $(GETOPT_H), redundant through BUILT_SOURCES.
45256         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
45257         redundant through BUILT_SOURCES.
45258         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
45259         redundant through BUILT_SOURCES.
45260         * modules/stdbool (Makefile.am): Remove explicit dependency on
45261         $(STDBOOL_H), redundant through BUILT_SOURCES.
45262         * modules/stdint (Makefile.am): Remove explicit dependency on
45263         $(STDINT_H), redundant through BUILT_SOURCES.
45264         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
45265         Remove explicit dependency on $(SYSEXITS_H).
45266         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
45267
45268 2005-07-18  Simon Josefsson  <jas@extundo.com>
45269
45270         * lib/check-version.c (check_version): Accept identical versions too.
45271
45272 2005-07-18  Bruno Haible  <bruno@clisp.org>
45273
45274         * modules/lock: New file.
45275         * MODULES.html.sh (Multithreading): New section.
45276
45277 2005-07-18  Bruno Haible  <bruno@clisp.org>
45278
45279         * m4/lock.m4: New file, from GNU gettext.
45280
45281 2005-07-18  Bruno Haible  <bruno@clisp.org>
45282
45283         * lib/lock.h: New file, from GNU gettext.
45284         * lib/lock.c: New file, from GNU gettext.
45285
45286 2005-07-18  Bruno Haible  <bruno@clisp.org>
45287
45288         * lib/lock.h (gl_once_t): New type.
45289         (gl_once_define, gl_once): New macros.
45290         * lib/lock.c (fresh_once): New variable.
45291         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
45292         functions.
45293
45294 2005-07-16  Simon Josefsson  <jas@extundo.com>
45295
45296         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
45297         workaround, suggested by Bruno.
45298
45299 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
45300
45301         * modules/xalloc (Depends-on): Add xalloc-die.
45302         * modules/xvasprintf (Depends-on): Add xalloc-die.
45303
45304 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
45305
45306         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
45307         with a minor change.
45308
45309 2005-07-15  Bruno Haible  <bruno@clisp.org>
45310
45311         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
45312         When using lib/poll.c, define poll as rpl_poll.
45313
45314 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
45315
45316         * modules/argp (Depends-on): Remove unlocked-io.
45317
45318 2005-07-14  Derek Price  <derek@ximbiot.com>
45319
45320         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
45321         for glob symlink bug.
45322
45323 2005-07-14  Bruno Haible  <bruno@clisp.org>
45324
45325         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
45326         Instead, test for *_unlocked function declarations directly.
45327
45328 2005-07-11  Simon Josefsson  <jas@extundo.com>
45329
45330         * modules/size_max: New file.
45331
45332         * modules/xsize: Depend on size_max module for size_max.m4.
45333
45334 2005-07-11  Simon Josefsson  <jas@extundo.com>
45335
45336         * lib/size_max.h: New file.
45337
45338 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
45339
45340         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
45341         copyright symbol and the year.
45342         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
45343         (version_etc_va): Use parameterized copyright notice.
45344         Reword to conform to the current GNU coding standards.
45345
45346 2005-07-11  Karl Berry  <karl@gnu.org>
45347
45348         * doc/gnulib.texi (Quoting): new node.
45349         (Initial import): more info, from Patrice.
45350
45351 2005-07-11  Bruno Haible  <bruno@clisp.org>
45352
45353         * gnulib-tool (func_usage): Document option --avoid.
45354         (Command line options): Handle --avoid.
45355         (func_acceptable): New function.
45356         (func_modules_transitive_closure): Use it.
45357
45358 2005-07-11  Bruno Haible  <bruno@clisp.org>
45359
45360         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
45361         Reported by Jim Meyering.
45362
45363 2005-07-10  Bruno Haible  <bruno@clisp.org>
45364
45365         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
45366         Needed when size_t is smaller than 'unsigned int'.
45367         Reported by Paul Eggert.
45368
45369 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
45370
45371         * modules/argp (Depends-on): Add unlocked-io
45372
45373 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
45374
45375         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
45376         block of defines.
45377
45378 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
45379
45380         * config/srclist.txt: Comment out regcomp.c, since we have a porting
45381         fix now.
45382
45383 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
45384         and Paul Eggert  <eggert@cs.ucla.edu>
45385
45386         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
45387         in wint_t, not wchar_t.  Remove now-unnecessary cast.
45388
45389 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
45390
45391         * modules/regex (Files): Add lib/regex_internal.c,
45392         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
45393         (Depends-on): Add extensions.
45394         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
45395
45396 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
45397
45398         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
45399         pathconf.
45400         * m4/same.m4 (gl_SAME): Likewise.
45401         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
45402
45403         * m4/regex.m4: Adjust to new libc regex implementation.
45404         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
45405         all the .c and .h parts of (the new) regex.
45406         Quote the m4 stuff better.
45407         Check for RE_ICASE bug of old gnulib.
45408         Check for REG_STARTEND of recent libc.
45409         Rename local variables from jm_* to gl_*.
45410         Quote operand of "test -f".
45411         Say "recent enough" version of libc, not "version 2".
45412         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
45413         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
45414         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
45415         Remove check for btowc, isascii.
45416         Require AM_LANGINFO_CODESET.
45417
45418 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
45419
45420         * lib/regex.c, regex.h: Sync from libc.
45421         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
45422         * lib/regexec.c:
45423         New files, synced from libc, except that regex_internal.h
45424         currently has a small porting fix.
45425
45426 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
45427
45428         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
45429         regex_internal.c, regexec.c.
45430         Add regex_internal.h too, but as a comment, since the libc version
45431         is currently broken in gnulib mode.
45432
45433 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
45434
45435         Support programs like Emacs that use gnulib but not gettext.
45436         * MODULES.html.sh (Internationalization functions): Add gettext-h.
45437         * modules/gettext-h: New file.
45438         * modules/gettext (Files): Remove lib/gettext.h.
45439         (Depends-on): Add gettext-h.
45440         (Makefile.am): Remove lib_SOURCES.
45441         * modules/argmatch, modules/c-stack, modules/closeout:
45442         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
45443         * modules/execute, modules/file-type, modules/getaddrinfo:
45444         * modules/getopt, modules/human, modules/javacomp:
45445         * modules/javaexec, modules/mkdir-p, modules/obstack:
45446         * modules/openat, modules/pagealign_alloc, modules/pipe:
45447         * modules/quotearg, modules/regex, modules/rpmatch:
45448         * modules/unicodeio, modules/userspec, modules/version-etc:
45449         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
45450         * modules/xsetenv:
45451         Depend on gettext-h, not gettext.
45452
45453 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
45454
45455         * gnulib-tool (func_import): Add support for 'public domain' license.
45456         * modules/alloca, modules/atexit, modules/memmove:
45457         Now public domain, not GPL.
45458         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
45459         * modules/realloc, modules/strerror, modules/strtod:
45460         Now LGPL, not GPL.
45461
45462 2005-07-05  Bruno Haible  <bruno@clisp.org>
45463
45464         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
45465         autoconf CVS. Needed for mingw.
45466
45467 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
45468
45469         Remove the dependency of the strftime module on the tzset module.
45470         * modules/strftime (Depends-on): Remove dependency on tzset.
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         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
45476         gl_FUNC_TZSET_CLOBBER.
45477
45478 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
45479
45480         Remove the dependency of the strftime module on the tzset module.
45481         * lib/strftime.c (my_strftime)
45482         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
45483         Copy the input structure, to work around some of the bug with
45484         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
45485         Solaris releases, you should also use the tzset module, but we won't
45486         require it as a dependency any more since we don't want LGPLed code
45487         to depend on GPLed code.
45488
45489 2005-07-02  Jim Meyering  <jim@meyering.net>
45490
45491         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
45492         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
45493         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
45494         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
45495
45496 2005-07-02  Jim Meyering  <jim@meyering.net>
45497
45498         * lib/backupfile.c (backup_args): Change a `0' to NULL.
45499
45500 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
45501
45502         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
45503         declares only 'struct timespec;' (!).
45504
45505 2005-07-01  Jim Meyering  <jim@meyering.net>
45506
45507         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
45508         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
45509         * lib/save-cwd.c, tempname.c:
45510         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
45511         and don't include <sys/file.h>).
45512
45513 2005-06-29  Jim Meyering  <jim@meyering.net>
45514
45515         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
45516         type name.  Use the variable name instead.
45517         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
45518         Likewise.
45519
45520 2005-06-28  Simon Josefsson  <jas@extundo.com>
45521
45522         * modules/check-version (Files): Add check-version.m4.
45523
45524 2005-06-28  Simon Josefsson  <jas@extundo.com>
45525
45526         * m4/check-version.m4: New file, suggested by Jim Meyering
45527         <jim@meyering.net>.
45528
45529 2005-06-28  Simon Josefsson  <jas@extundo.com>
45530
45531         * lib/check-version.h, lib/check-version.c: New files.
45532
45533 2005-06-28  Simon Josefsson  <jas@extundo.com>
45534
45535         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
45536         collision with global variable.  Better indentation.  Don't
45537         increment buffer pointer beyond buffer end.  Based on comments
45538         from Paul Eggert <eggert@cs.ucla.edu>.
45539
45540         * lib/base64.h: Indent.
45541
45542 2005-06-28  Simon Josefsson  <jas@extundo.com>
45543
45544         * doc/gnulib.texi (Library version handling): New section.
45545
45546 2005-06-28  Jim Meyering  <jim@meyering.net>
45547
45548         * check-module (find_included_lib_files): Hard-code another
45549         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
45550         but modules/fts-lgpl (correctly) does not list those files.
45551
45552         * modules/canonicalize (Files): Add lib/pathmax.h.
45553
45554 2005-06-25  Simon Josefsson  <jas@extundo.com>
45555
45556         * modules/check-version: New file.
45557
45558 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
45559
45560         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
45561         initializer of struct addrinfo, as an indication that we don't
45562         care how many members the structure has.
45563
45564 2005-06-24  Derek Price  <derek@ximbiot.com>
45565         and Bruno Haible  <bruno@clisp.org>
45566
45567         Remove stat module & update lstat.
45568         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
45569         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
45570         * m4/stat.m4: Remove this file.
45571
45572 2005-06-24  Derek Price  <derek@ximbiot.com>
45573         and Bruno Haible  <bruno@clisp.org>
45574
45575         Remove stat module & update lstat.
45576         * lib/stat.c: Remove this file...
45577         (slash_aware_lstat): ...moving this content and its support...
45578         * lib/lstat.c (rpl_lstat): ...into here.
45579         * lib/lstat.h: New file.
45580
45581 2005-06-24  Derek Price  <derek@ximbiot.com>
45582         and Bruno Haible  <bruno@clisp.org>
45583
45584         Remove stat module & update lstat.
45585         * config/srclist.txt (libc sources): Remove stat.
45586
45587 2005-06-24  Derek Price  <derek@ximbiot.com>
45588         and Bruno Haible  <bruno@clisp.org>
45589
45590         Remove stat module & update lstat.
45591         * MODULES.html.sh (stat): Remove.
45592         * MODULES.html: Regenerated.
45593         * modules/lstat (Description): Correct function name.
45594         (Files): Add "lstat.h".
45595         (Depends-on): Remove stat, add xalloc, stat-macros.
45596         * modules/stat: Remove this file.
45597         (Include): Add "lstat.h", remove <sys/stat.h>.
45598
45599 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
45600
45601         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
45602         (ranged_convert): Don't save conversion in a temporary struct.
45603         This causes a warning with GCC 4.0.0, and anyway in the typical
45604         case it's not worth the extra 100 bytes or so of code.
45605         (ranged_convert, __mktime_internal): When calling a function via a
45606         pointer P, use P () rather than (*P) (), as we now assume C89 or
45607         better.
45608
45609 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
45610
45611         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
45612         "who -r" failed to give output.  Problem reported by Tim Waugh.
45613
45614         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
45615         (xcalloc): Use it to avoid needless tests.
45616         Problem reported by Jim Meyering.
45617
45618 2005-06-20  Derek Price  <derek@ximbiot.com>
45619
45620         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
45621         unnecessary for Autoconfs > 2.59c.
45622
45623 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
45624
45625         * lib/argp.h (__option_is_short): Check upper limit of
45626         __key. Isprint() requires its argument to have the value
45627         of an unsigned char or EOF.
45628
45629 2005-06-16  Jim Meyering  <jim@meyering.net>
45630
45631         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
45632         when either N or S is zero.
45633
45634 2005-06-16  Derek Price  <derek@ximbiot.com>
45635
45636         * m4/bison.m4: Declare YACC & YFLAGS precious.
45637
45638 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
45639
45640         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
45641         multibyte string or pattern, fall back on unibyte matching.
45642         Problem reported by James Youngman.
45643
45644 2005-06-08  Bruno Haible  <bruno@clisp.org>
45645
45646         * modules/csharpcomp: New file.
45647         * MODULES.html.sh (C#): Add csharpcomp.
45648
45649 2005-06-08  Bruno Haible  <bruno@clisp.org>
45650
45651         * m4/csharpcomp.m4: New file, from GNU gettext.
45652
45653 2005-06-08  Bruno Haible  <bruno@clisp.org>
45654
45655         * lib/csharpcomp.h: New file, from GNU gettext.
45656         * lib/csharpcomp.c: New file, from GNU gettext.
45657         * lib/csharpcomp.sh.in: New file, from GNU gettext.
45658
45659 2005-06-08  Bruno Haible  <bruno@clisp.org>
45660
45661         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
45662         warning on mingw.
45663
45664 2005-06-07  Derek Price  <derek@ximbiot.com>
45665
45666         Sync from CVS.
45667         * lib/glob_.h: Indent nested #ifdef.
45668
45669 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
45670
45671         Sync from coreutils.
45672         Use "file name" when talking about file names, instead of "filename"
45673         or "path", as per the GNU coding standards.
45674         * lib/mkdir-p.c: Renamed from makepath.c.
45675         (make_dir_parents): Renamed from make_path.  All callers changed.
45676         * lib/mkdir-p.h: Likewise.  All includers changed.
45677         * lib/filenamecat.c: Renamed from path-concat.c.
45678         (file_name_concat): Renamed from path_concat.  All callers changed.
45679         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
45680         * lib/filenamecat.h: Likewise.  All includers changed.
45681         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
45682         in comments or local variable names.
45683         * lib/basename.c: Likewise.
45684         * lib/canonicalize.c, canonicalize.h: Likewise.
45685         * lib/dirname.c, dirname.h: Likewise.
45686         * lib/euidaccess.c: Likewise.
45687         * lib/exclude.c: Likewise
45688         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
45689         * lib/fsusage.c, fsuage.h: Likewise.
45690         * lib/fts.c, fts_.h: Likewise.
45691         * lib/getcwd.c: Likewise.
45692         * lib/getloadavg.c: Likewise.
45693         * lib/mkstemp.c: Likewise.
45694         * lib/mountlist.c, mountlist.h: Likewise.
45695         * lib/openat.c, openat.h: Likewise.
45696         * lib/readlink-stub.c: Likewise.
45697         * lib/readutmp.c, readutmp.h: Likewise.
45698         * lib/rename.c: Likewise.
45699         * lib/rmdir.c: Likewise.
45700         * lib/same.c: Likewise.
45701         * lib/savedir.c: Likewise.
45702         * lib/stripslash.c: Likewise.
45703         * lib/tempname.c: Likewise.
45704         * lib/xreadlink.c: Likewise.
45705         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
45706         All uses changed.
45707         * lib/exclude.h: Likewise.
45708
45709         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
45710         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
45711         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
45712         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
45713         * lib/pathmax.h: Include <limits.h> unconditionally, since other
45714         files have been getting away with it for years (MORE/BSD 4.3
45715         is extinct now).
45716         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
45717         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
45718
45719         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
45720         Define to 256, not 255, as per modern POSIX.
45721
45722 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
45723
45724         Sync from coreutils.
45725         Use "file name" when talking about file names, instead of "filename"
45726         or "path", as per the GNU coding standards.
45727         * MODULES.html.sh: mkdir-p renamed from makepath.
45728         filenamecat renamed from path-concat.
45729         * modules/filenamecat: Renamed from modules/path-concat.
45730         (Files): filenamecat.h and filenamecat.c renamed from
45731         path-concat.h and path-concat.c.
45732         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
45733         (Include): filenamecat.h, not path-concat.h.
45734         * modules/mkdir-p: Renamed from modules/makepath.
45735         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
45736         makepath.c.
45737         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
45738         (Include): mkdir-p.h, not makepath.h.
45739
45740 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
45741
45742         Sync from coreutils.
45743         * m4/mkdir-p.m4: Renamed from makepath.m4.
45744         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
45745         Rename files from makepath.c to mkdir-p.c, and from
45746         makepath.h to mkdir-p.h.
45747         * m4/filenamecat.m4: Renamed from path-concat.m4.
45748         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
45749         Rename files from path-concat.c to filenamecat.c,
45750         and from path-concat.h to filenamecat.h.
45751         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
45752         "file name" in local variables or comments.
45753         * m4/rename.m4: Likewise.
45754
45755 2005-06-01  Bruno Haible  <bruno@clisp.org>
45756
45757         * modules/csharpexec: New file.
45758         * MODULES.html.sh (C#): New section.
45759
45760 2005-06-01  Bruno Haible  <bruno@clisp.org>
45761
45762         * m4/csharp.m4: New file, from GNU gettext.
45763         * m4/csharpexec.m4: New file, from GNU gettext.
45764
45765 2005-06-01  Bruno Haible  <bruno@clisp.org>
45766
45767         * lib/csharpexec.h: New file, from GNU gettext.
45768         * lib/csharpexec.c: New file, from GNU gettext.
45769         * lib/csharpexec.sh.in: New file, from GNU gettext.
45770
45771 2005-05-31  Derek Price  <derek@ximbiot.com>
45772             Paul Eggert  <eggert@cs.ucla.edu>
45773
45774         Sync from cvs.
45775         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
45776
45777 2005-05-31  Derek Price  <derek@ximbiot.com>
45778             Paul Eggert  <eggert@cs.ucla.edu>
45779
45780         Sync from cvs.
45781         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
45782
45783 2005-05-29  Derek Price  <derek@ximbiot.com>
45784
45785         * config/srclist.txt (glob_.h, glob.c): Add these files.
45786
45787 2005-05-29  Derek Price  <derek@ximbiot.com>
45788
45789         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
45790         * modules/glob: New file.
45791         * modules/getlogin_r: Add link to POSIX spec in description.
45792
45793 2005-05-29  Derek Price  <derek@ximbiot.com>
45794             Paul Eggert  <eggert@cs.ucla.edu>
45795
45796         * m4/glob.m4: New file.
45797
45798 2005-05-29  Derek Price  <derek@ximbiot.com>
45799             Paul Eggert  <eggert@cs.ucla.edu>
45800
45801         * lib/glob_.h, lib/glob.c: New files.
45802
45803 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
45804
45805         * modules/fts (Files): Remove m4/inttypes-pri.m4.
45806         * modules/fts-lgpl (Depends-on): Remove gettext.
45807
45808 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
45809
45810         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
45811         and don't require gt_INTTYPES_PRI.
45812
45813 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
45814
45815         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
45816
45817         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
45818         the configuration hassle isn't worth it.
45819         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
45820         (LONGEST_MODIFIER, PRIuMAX): Remove.
45821
45822 2005-05-27  Bruno Haible  <bruno@clisp.org>
45823
45824         * lib/getlogin_r.h: Remove second include of <stddef.h>.
45825
45826 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
45827
45828         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
45829         _POSIX_PTHREAD_SEMANTICS for Solaris.
45830
45831 2005-05-25  Derek Price  <derek@ximbiot.com>
45832
45833         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
45834
45835 2005-05-25  Derek Price  <derek@ximbiot.com>
45836             Paul Eggert  <eggert@cs.ucla.edu>
45837
45838         * modules/getlogin_r, m4/getlogin_r.m4: New files.
45839         * lib/getlogin_r.c, getlogin_r.h: New files.
45840
45841 2005-05-25  Bruno Haible  <bruno@clisp.org>
45842             Derek Price  <derek@ximbiot.com>
45843
45844         * lib/getlogin_r.h: Simplify API documentation.
45845
45846 2005-05-23  Derek Price  <derek@ximbiot.com>
45847
45848         * modules/minmax (Files): Add m4/minmax.m4.
45849         (configure.ac): Add gl_MINMAX.
45850
45851 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
45852
45853         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
45854         so that unistd-safer.h (GPL'ed code) need not be included.
45855
45856 2005-05-22  Bruno Haible  <bruno@clisp.org>
45857
45858         * m4/minmax.m4: New file.
45859         Based on a patch by Derek Price <derek@ximbiot.com>.
45860
45861 2005-05-22  Bruno Haible  <bruno@clisp.org>
45862
45863         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
45864         (INT64_MIN): Fix definition.
45865         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
45866
45867         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
45868         NEED_SIGNED_INT_TYPES.
45869
45870         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
45871         HAVE_SYSTEM_INTTYPES.
45872
45873 2005-05-22  Bruno Haible  <bruno@clisp.org>
45874
45875         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
45876         Also include <sys/param.h> if it defines MIN, MAX.
45877         Based on a patch by Derek Price <derek@ximbiot.com>.
45878
45879 2005-05-21  Jim Meyering  <jim@meyering.net>
45880
45881         * modules/fts (Files): Add m4/inttypes-pri.m4.
45882         (Depends-on): Add lstat and remove gettext.  Alphabetize.
45883
45884 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
45885
45886         New fts module.
45887         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
45888         (setup_dir, free_dir): New functions.
45889         (enter_dir, leave_dir): Define trivial
45890         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
45891         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
45892         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
45893         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
45894         Move to fts-cycle.c.
45895         (fts_open): Use setup_dir.
45896         (fts_close): Use free_dir.
45897         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
45898         This adds a label and some gotos, but the alternatives were messier.
45899         Check for memory allocation failure when entering a dir.
45900         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
45901         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
45902         (FTS): New member fts_cycle, that is a union that contains the
45903         old active_dir_ht and cycle_state.  All uses changed to mention
45904         fts_cycle.ht and fts_cycle.state.
45905         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
45906         fts.c, with the following changes:
45907         (setup_dir, free_dir): New functions.
45908         (enter_dir): Now returns bool.  Return true if successful, false
45909         if memory exhausted.  All callers changed.
45910         Do not bother partly cleaning up on
45911         memory allocation failure; that is free_dir's job.
45912         However, free ad if hash_insert fails, to avoid memory leak.
45913         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
45914         fts->fts_options to see which union member to use.
45915
45916 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
45917
45918         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
45919         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
45920
45921 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
45922
45923         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
45924
45925 2005-05-20  Jim Meyering  <jim@meyering.net>
45926
45927         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
45928         Now a macro, to pacify GCC.
45929
45930 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
45931
45932         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
45933         of -1.
45934
45935 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
45936
45937         * lib/chown.c (rpl_chown): Return -1 on failure.
45938
45939 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
45940
45941         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
45942         Don't check for stddef.h.
45943         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
45944         don't use its results.
45945         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
45946         since we include them unconditionally.  Don't require
45947         AM_STDBOOL_H, since stdbool is a prerequisite.
45948         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
45949         since we assume C89 or better.
45950         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
45951         as we don't use their results.
45952         Don't check for fchdir, memmove, memset, strrchr, as we use
45953         them unconditionally.
45954         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
45955         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
45956
45957 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
45958
45959         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
45960         Include <stddef.h> unconditionally, since we assume C89 now.
45961         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
45962         * lib/fts.c: Include fts_.h first, to check interface.
45963         Do not include intprops.h; no longer needed.
45964         Include cycle-check.h and hash.h, since fts_.h no longer does.
45965         Remove unnecessary casts of closedir to void.
45966         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
45967         decide whether to decrement nlinks.
45968         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
45969         (FTS): Use struct hash_table * instead of Hash_table, so that
45970         we no longer need to include hash.h here.
45971
45972 2005-05-18  Jim Meyering  <jim@meyering.net>
45973
45974         * modules/dirfd (License): Change to LGPL.  Most of the code
45975         is already in the public domain.
45976
45977 2005-05-18  Jim Meyering  <jim@meyering.net>
45978
45979         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
45980         Reported by Yoann Vandoorselaere.
45981
45982 2005-05-17  Jim Meyering  <jim@meyering.net>
45983
45984         * m4/fts.m4: New file, from coreutils.
45985
45986 2005-05-17  Jim Meyering  <jim@meyering.net>
45987
45988         * lib/fts.c, lib/fts_.h: New files, from coreutils.
45989
45990 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
45991
45992         Sync from coreutils.
45993         * m4/unlinkdir.m4: New file.
45994
45995 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
45996
45997         Sync from coreutils.
45998         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
45999         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
46000         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
46001         White space changes only.
46002         * lib/makepath.c (make_path): Port to hosts where leading "//" is
46003         special.
46004         * lib/yesno.c: Include getline.h, not ctype.h.
46005         (yesno): Don't remove leading white space; POSIX doesn't allow it.
46006         Use getline to remove arbitrary restriction on response length.
46007
46008 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
46009
46010         * config/srclist-update: Spell out "Street" in FSF postal
46011         mail address; this is the style the FSF seems to prefer.
46012
46013         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
46014         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
46015         this updates FSF postal mail address.
46016
46017         Sync from coreutils.
46018         * modules/unlinkdir: New file.
46019         * modules/yesno (Depends-on): Add getline.
46020         * MODULES.html.sh (File system functions): Add unlinkdir.
46021
46022 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
46023
46024         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
46025         lib/strsep.h:
46026         Change the initial comment to refer to GPL, not LGPL.
46027         gnulib-tool will change it to LGPL as needed.
46028
46029         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
46030         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
46031         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
46032         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
46033         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
46034         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
46035         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
46036         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
46037         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
46038         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
46039         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
46040         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
46041         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
46042         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
46043         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
46044         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
46045         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
46046         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
46047         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
46048         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
46049         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
46050         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
46051         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
46052         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
46053         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
46054         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
46055         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
46056         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
46057         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
46058         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
46059         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
46060         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
46061         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
46062         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
46063         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
46064         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
46065         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
46066         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
46067         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
46068         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
46069         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
46070         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
46071         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
46072         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
46073         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
46074         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
46075         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
46076         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
46077         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
46078         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
46079         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
46080         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
46081         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
46082         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
46083         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
46084         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
46085         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
46086         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
46087         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
46088         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
46089         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
46090         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
46091         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
46092         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
46093         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
46094         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
46095         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
46096         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
46097         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
46098         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
46099         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
46100         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
46101         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
46102         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
46103         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
46104         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
46105         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
46106         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
46107         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
46108         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
46109         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
46110         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
46111         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
46112         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
46113         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
46114         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
46115         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
46116         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
46117         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
46118         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
46119         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
46120         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
46121         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
46122         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
46123         lib/yesno.c, lib/yesno.h:
46124         Update FSF postal mail address.
46125
46126 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
46127
46128         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
46129         tests/test-memmem.c, tests/test-stpncpy.c:
46130         Update FSF postal mail address.
46131
46132 2005-05-13  Bruno Haible  <bruno@clisp.org>
46133
46134         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
46135         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
46136         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
46137         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
46138         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
46139         Add support for 64-bit integers in the MSVC compiler.
46140
46141 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
46142
46143         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
46144
46145 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
46146
46147         * gnulib-tool (func_import): Sort and uniquify recommended includes.
46148
46149 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
46150
46151         * doc/getdate.texi (General date syntax): Don't say that date
46152         date --iso-8601=ns generates acceptable dates; it doesn't yet.
46153         Problem reported by Nic Ferrier.
46154
46155 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
46156
46157         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
46158         specified in ai_socktype. Fix invalid ai_protocol
46159         check. ai_protocol is usually set to 0 or depending on
46160         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
46161         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
46162         ai_socktype / ai_protocol in the returned addrinfo structure.
46163
46164 2005-05-10  Simon Josefsson  <jas@extundo.com>
46165
46166         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
46167         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
46168
46169 2005-05-10  Karl Berry  <karl@gnu.org>
46170
46171         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
46172         (from http://www.gnu.org/licenses).
46173         * doc/COPYING.LIB: also rename to COPYING.LESSER.
46174         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
46175         fdl.texi suffices.
46176
46177 2005-05-10  Karl Berry  <karl@gnu.org>
46178
46179         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
46180         (COPYING.DOC): remove.
46181
46182         * config/srclist-update: new FSF address.
46183
46184 2005-05-10  Derek Price  <derek@ximbiot.com>
46185
46186         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
46187         possible.
46188
46189 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
46190             Bruno Haible  <bruno@clisp.org>
46191
46192         * modules/inet_ntop: New file.
46193         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
46194         inet_ntop.
46195
46196 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
46197             Bruno Haible  <bruno@clisp.org>
46198
46199         * m4/inet_ntop.m4: New file.
46200
46201 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
46202             Bruno Haible  <bruno@clisp.org>
46203
46204         * lib/inet_ntop.h: New file.
46205         * lib/inet_ntop.c: New file, from glibc with modifications.
46206
46207 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
46208
46209         * modules/time_r (License): Change to LGPL.
46210         * modules/extensions (License): Change to LGPL.  Actually,
46211         the license is more permissive than that, but currently gnulib-tool
46212         doesn't know how to handle more-permissive licenses.
46213
46214         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
46215         Problem reported by Dave Love.
46216
46217 2005-05-08  Jim Meyering  <jim@meyering.net>
46218
46219         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
46220         blank.
46221
46222 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
46223
46224         * modules/argmatch (Depends-on): Add stdbool.
46225         * modules/backupfile (Depends-on): Likewise.
46226         * modules/chdir-long (Depends-on): Likewise.
46227         * modules/closeout (Depends-on): Likewise.
46228         * modules/cycle-check (Depends-on): Likewise.
46229         * modules/dirname (Depends-on): Likewise.
46230         * modules/fnmatch (Depends-on): Likewise.
46231         * modules/fsusage (Depends-on): Likewise.
46232         * modules/fwriteerror (Depends-on): Likewise.
46233         * modules/getcwd (Depends-on): Likewise.
46234         * modules/getloadavg (Depends-on): Likewise.
46235         * modules/hard-locale (Depends-on): Likewise.
46236         * modules/makepath (Depends-on): Likewise.
46237         * modules/mountlist (Depends-on): Likewise.
46238         * modules/nanosleep (Depends-on): Likewise.
46239         * modules/posixtm (Depends-on): Likewise.
46240         * modules/quotearg (Depends-on): Likewise.
46241         * modules/readtokens (Depends-on): Likewise.
46242         * modules/readtokens0 (Depends-on): Likewise.
46243         * modules/readutmp (Depends-on): Likewise.
46244         * modules/save-cwd (Depends-on): Likewise.
46245         * modules/strftime (Depends-on): Likewise.
46246         * modules/userspec (Depends-on): Likewise.
46247         * modules/utimecmp (Depends-on): Likewise.
46248         * modules/xgetcwd (Depends-on): Likewise.
46249         * modules/xnanosleep (Depends-on): Likewise.
46250         * modules/xstrtod (Depends-on): Likewise.
46251         * modules/yesno (Depends-on): Likewise.
46252
46253 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
46254
46255         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
46256         needless checks.
46257
46258 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
46259
46260         Merge from coreutils.  Among other things,
46261         add bulletproofing for cases where stdin, stdout, or stderr are closed.
46262         * lib/fd-safer.c: New file.
46263         * lib/fcntl-safer.h, open-safer.c: Remove.
46264         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
46265         * lib/dup-safer.c: Include unistd-safer.h first.
46266         Don't include errno.h.
46267         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
46268         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
46269         * lib/file-type.c: Rely on file-type.h change.
46270         * lib/getloadavg.c: Include unistd-safer.h.
46271         (getloadavg): Use safer open.
46272         * lib/getusershell.c: Include "stdio-safer.h".
46273         (getusershell): Use safer fopen.
46274         * lib/long-options.c (long_options): Use NULL rather than 0.
46275         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
46276         'free'.
46277         * lib/modechange.c: Likewise.
46278         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
46279         (MODE_DONE): New constant.
46280         (struct mode_change): Remove 'next' member.
46281         (make_node_op_equals): New function; like the old one of the
46282         same name, except it allocates an array.
46283         (mode_compile, mode_create_from_ref): Use it.
46284         (mode_compile): Allocate result as an array, not a linked list.
46285         Parse octal string ourself, so that we catch mistakes like "+0".
46286         (mode_adjust): Arg is an array, not a linked list.
46287         * lib/modechange.c: Include stat-macros.h, xalloc.h.
46288         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
46289         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
46290         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
46291         Remove.  This is now stat-macros.h's job.
46292         (talloc): Remove.  All callers replaced by xalloc, so that
46293         our invokers don't have to worry about reporting memory failures.
46294         (make_node_op_equals): Remove.
46295         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
46296         New constants.
46297         (struct mode_change): Moved here from modechange.h.
46298         (mode_append_entry): Remove.
46299         (mode_compile): Remove MASKED_OPS arg, since it encouraged
46300         apps to have incorrect behavior.  Use simpler algorithm for head
46301         and tail.  Don't futz with umask; that's now the job of mode_adjust.
46302         Detect more invalid usages rather than having somewhat-random behavior.
46303         Don't insert an "a=" action, as that leads to incorrect behavior.
46304         (mode_compile, mode_create_from_ref): Return NULL on error instead
46305         of an enum, since now there's only one way to have an error.  All
46306         callers changed.
46307         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
46308         at the correct time.  Simplify calculation of "+u" and its ilk.
46309         Don't mishandle "+X".
46310         (mode_free): Remove "register" and localize decls.
46311         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
46312         (struct mode_change): Move to modechange.c; callers don't
46313         need to see this stuff.
46314         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
46315         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
46316         (mode_change, mode_adjust): Reflect the new signatures noted above.
46317         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
46318         that might redefine system include files.
46319         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
46320         (my_usleep): Use NULL rather than (void *) 0.
46321         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
46322         Use siginterrupt to specify that system calls should be interrupted.
46323         (rpl_nanosleep): Move initialization of suspended closer to call of
46324         my_usleep.
46325         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
46326         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
46327         (desirable_utmp_entry): New function.
46328         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
46329         using x2nrealloc, to simplify logic.
46330         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
46331         size calculation.  Do not assume utmp file is a regular file.
46332         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
46333         (READ_UTMP_CHECK_PIDS): New constant.
46334         * lib/save-cwd.c: Include unistd-safer.h.
46335         (save_cwd): Use fd_safer.
46336         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
46337         [!_LIBC] Include "stat-macros.h" instead.
46338         * lib/unistd-safer.h (fd_safer): New decl.
46339
46340 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
46341
46342         * modules/getloadavg (Depends-on): Add unistd-safer.
46343         * modules/getusershell (Depends-on): Add stdio-safer.
46344         * modules/lstat (Depends-on): Remove xalloc.
46345         * modules/mkstemp (Depends-on): Add stat-macros.
46346         * modules/modechange (Depends-on): Remove xstrtol.
46347         Add stat-macros, xalloc.
46348         * modules/save-cwd (Depends-on): Add unistd-safer.
46349         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
46350         * modules/unistd-safer (Files): Add lib/fd-safer.c
46351         (Makefile.am): Remove lib_SOURCES.
46352
46353         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
46354         Remove fcntl-safer; unistd-safer supersedes it.
46355
46356 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
46357
46358         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
46359         AC_HEADER_STAT.
46360         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
46361         (gl_PREREQ_CHOWN): Remove.
46362         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
46363         it.  Don't require AC_HEADER_STAT.
46364         (gl_PREREQ_LSTAT): Remove.
46365         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
46366         Don't require AC_HEADER_STAT.
46367         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
46368         (gl_PREREQ_RMDIR): Remove.
46369         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
46370         mention stat-macros.h or AC_HEADER_STAT, since we'll make
46371         the stat-macros module a prerequisite.
46372         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
46373         * m4/filemode.m4 (gl_FILEMODE): Likewise.
46374         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
46375         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
46376         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
46377         variable names.
46378         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
46379         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
46380         variable prefixes.
46381         * m4/fcntl-safer.m4: Remove.
46382         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
46383         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
46384         Invoke gl_PREREQ_FD_SAFER.
46385         (gl_PREREQ_FD_SAFER): New macro.
46386         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
46387         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
46388         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
46389         Remove duplicate call to AC_LIBOBJ(readutmp).
46390         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
46391
46392         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
46393         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
46394
46395 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
46396
46397         * MODULES.html.sh (Misc): Add byteswap.
46398
46399 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
46400
46401         * modules/getcwd (Depends-on): Add extensions.
46402         * modules/openat (Depends-on): Likewise.
46403
46404 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
46405
46406         * modules/byteswap: New file.
46407
46408 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
46409
46410         * m4/byteswap.m4: New file.
46411
46412 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
46413
46414         * lib/byteswap_.h: New file.
46415
46416 2005-04-25  Karl Berry  <karl@gnu.org>
46417
46418         * m4/gettext.m4: Update from GNU gettext 0.14.4.
46419
46420 2005-04-25  Albert Chin  <china@thewrittenword.com>
46421
46422         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
46423         Toolkit C bug.
46424
46425 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
46426
46427         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
46428         (func_ln_if_changed) Remove forcibly for no error message
46429         in case file does not exist.
46430
46431 2005-04-19  Simon Josefsson  <jas@extundo.com>
46432
46433         * gnulib-tool (Options): Make --symlink mean --symbolic.
46434
46435 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
46436
46437         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
46438
46439 2005-04-16  Simon Josefsson  <jas@extundo.com>
46440
46441         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
46442
46443 2005-04-15  Simon Josefsson  <jas@extundo.com>
46444
46445         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
46446
46447 2005-04-15  Simon Josefsson  <jas@extundo.com>
46448
46449         * gnulib-tool: Rename --symlink to --symbolic.
46450
46451 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
46452
46453         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
46454         symbolic links to files instead of copying/moving.  Add --aux-dir,
46455         specifying directory relative --dir where auxiliary build tools
46456         are placed.
46457
46458 2005-04-14  Bruno Haible  <bruno@clisp.org>
46459
46460         * modules/allocsa (License): Change to LGPL.
46461         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
46462
46463 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
46464
46465         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
46466         that "UTC +1 second" continues to work.  Problem reported
46467         by Dmitry V. Levin.
46468         (relunit_snumber): New rule.
46469         (relunit): Use it.
46470
46471 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
46472
46473         * lib/getdate.y (universal_time_zone_table): New constant.
46474         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
46475         universal_time_zone_table.
46476         (lookup_zone): Prefer universal_time_zone_table to
46477         local_time_zone_table, so that "GMT" time stamps are allowed in
46478         London during the summer.  Problem reported by Ian Abbott.
46479
46480 2005-04-12  Jim Meyering  <jim@meyering.net>
46481
46482         * lib/human.c (humblock): Set *options even when returning due to
46483         xstrtoumax conversion failure.  Thanks to a used-uninitialized
46484         warning from gcc-4.
46485
46486 2005-04-09  Jim Meyering  <jim@meyering.net>
46487
46488         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
46489         -Wuninitialized: initialize tm0.tm_year.
46490
46491 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
46492
46493         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
46494         count, since there's no maximum.  All uses changed.
46495         Add member dsts_seen.
46496         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
46497         not being INT_MAX.
46498         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
46499         Use pc_rels_seen to decide whther a date is absolute.
46500
46501         * lib/getdate.y (number): Don't overwrite year.
46502         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
46503         check.
46504
46505 2005-04-02  Simon Josefsson  <jas@extundo.com>
46506
46507         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
46508         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
46509
46510 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
46511
46512         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
46513         where no absolute path name can be longer than PATH_MAX.
46514
46515 2005-03-27  Jim Meyering  <jim@meyering.net>
46516
46517         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
46518
46519 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
46520
46521         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
46522         "one's complement" -> "ones' complement" in comment, as per Knuth.
46523         "value of type" -> "type or expression" in comment.
46524         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
46525
46526 2005-03-26  Jim Meyering  <jim@meyering.net>
46527
46528         Comment nits.
46529         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
46530         Correct typos: s/or/of/.
46531
46532 2005-03-26  Jim Meyering  <jim@meyering.net>
46533
46534         * modules/check-include-files: Move to ../ and rename to...
46535         * check-module: ...this.
46536
46537 2005-03-25  Jim Meyering  <jim@meyering.net>
46538
46539         * modules/xvasprintf (Files): Add xalloc.h.
46540
46541 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
46542
46543         * modules/gettext (Files): config/config.rpath ->
46544         build-aux/config.rpath
46545         * modules/iconv (Files): Likewise.
46546         Problem reported by Oskar Liljeblad.
46547
46548 2005-03-23  Jim Meyering  <jim@meyering.net>
46549
46550         * modules/check-include-files: New script to check for
46551         missing dependencies, multiple includes, etc.
46552
46553         * modules/c-strtold (Depends-on): Add xalloc.
46554         * modules/c-strtod (Depends-on): Add xalloc.
46555         * modules/hash (Depends-on): Add xalloc.
46556         (Files): Remove lib/xalloc.h.
46557
46558         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
46559         * modules/userspec (Files): Add lib/inttostr.h.
46560
46561 2005-03-23  Jim Meyering  <jim@meyering.net>
46562
46563         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
46564
46565 2005-03-22  Jim Meyering  <jim@meyering.net>
46566
46567         * modules/stat-macros: New module.
46568         * modules/canonicalize, modules/euidaccess, modules/file-type,
46569         * modules/filemode, modules/lchown, modules/makepath,
46570         * modules/rmdir, modules/stat: Depend on new stat-macros module
46571         rather than listing lib/stat-macros.h manually.
46572         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
46573
46574 2005-03-22  Jim Meyering  <jim@meyering.net>
46575
46576         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
46577
46578 2005-03-22  Bruno Haible  <bruno@clisp.org>
46579
46580         * config/srclist.txt: Replace target directory 'config' with
46581         'build-aux'.
46582         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
46583         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
46584         ../build-aux/.
46585
46586 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
46587
46588         * modules/chdir-long (Depends-on): Add mempcpy.
46589
46590         * modules/acl, modules/backupfile, modules/c-strtod,
46591         modules/c-strtold, modules/canon-host, modules/canonicalize,
46592         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
46593         modules/exclude, modules/exitfail, modules/file-type,
46594         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
46595         modules/getdate, modules/getline, modules/getpagesize,
46596         modules/getpass, modules/getugroups, modules/group-member,
46597         modules/hard-locale, modules/hash, modules/human, modules/idcache,
46598         modules/inttostr, modules/long-options, modules/makepath,
46599         modules/md5, modules/memcasecmp, modules/memcoll,
46600         modules/modechange, modules/mountlist, modules/path-concat,
46601         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
46602         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
46603         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
46604         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
46605         modules/strftime, modules/strndup, modules/strverscmp,
46606         modules/timespec, modules/unlocked-io, modules/userspec,
46607         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
46608         modules/yesno:
46609         Remove lib_SOURCES line from Makefile.am section, as this is now
46610         done automatically by the corresponding Autoconf macro.
46611
46612 2005-03-21  Jim Meyering  <jim@meyering.net>
46613
46614         Changes imported from coreutils.
46615
46616         * lib/cycle-check.c: Don't include xalloc.h.
46617
46618         * lib/path-concat.c: Don't include assert.h.
46619         (path_concat): Remove assertion that would have triggered
46620         for ABASE starting with more than one slash.
46621         Reported by Andreas Schwab.
46622
46623         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
46624         properly when ABASE is an absolute file name.
46625         Correct the description of this function.
46626         Include <assert.h>.
46627         Add an assertion and a test driver.
46628         This fixes a bug introduced on 2004-07-02.
46629         Andreas Schwab reported the resulting failure of cp --parents:
46630         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
46631
46632 2005-03-21  Jim Meyering  <jim@meyering.net>
46633
46634         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
46635         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
46636
46637 2005-03-21  Jim Meyering  <jim@meyering.net>
46638         and  Paul Eggert  <eggert@cs.ucla.edu>
46639
46640         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
46641         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
46642         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
46643         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
46644         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
46645         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
46646         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
46647         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
46648         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
46649         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
46650         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
46651         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
46652         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
46653         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
46654         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
46655         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
46656         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
46657         for these modules.
46658
46659 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
46660
46661         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
46662         (which shouldn't happen), generate nothing instead of returning 0
46663         immediately, so that nstrftime (NULL, ...) doesn't return 0.
46664
46665 2005-03-16  Bruno Haible  <bruno@clisp.org>
46666
46667         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
46668         HAVE_LONGLONG_64BIT.
46669
46670 2005-03-16  Bruno Haible  <bruno@clisp.org>
46671
46672         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
46673         HAVE_LONGLONG_64BIT.
46674
46675 2005-03-16  Bruno Haible  <bruno@clisp.org>
46676
46677         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
46678         HAVE_LONGLONG_64BIT.
46679
46680 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
46681
46682         * lib/strftime.c (my_strftime): Prepend space to format so that we can
46683         reliably distinguish strftime failure from empty output on POSIX
46684         hosts.
46685
46686 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
46687
46688         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
46689         (iconv_string): Don't guess a size-zero buffer, as that might cause
46690         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
46691         result would be 'too large', where 'too large' is (heuristically)
46692         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
46693         overflow concerns.  This will prevent some unwanted malloc failures
46694         when the inputs are very large.
46695
46696 2005-03-15  Karl Berry  <karl@gnu.org>
46697
46698         * config/srclist.txt (config.rpath): from gettext.
46699         * config/config.rpath: update.
46700
46701 2005-03-15  Bruno Haible  <bruno@clisp.org>
46702
46703         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
46704         to 'negate'.
46705
46706         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
46707         variable.
46708
46709         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
46710         results.
46711
46712 2005-03-14  Simon Josefsson  <jas@extundo.com>
46713
46714         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
46715         <fx@gnu.org>.
46716
46717 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
46718
46719         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
46720         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
46721         intprops.h.
46722         * lib/strtol.c: Likewise.
46723
46724 2005-03-14  Jim Meyering  <jim@meyering.net>
46725
46726         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
46727         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
46728         to be nonzero so that we (and caller) can detect the difference
46729         between a valid zero-length expansion and an error return, even
46730         when the underlying strftime fails before writing anything into
46731         that location.
46732
46733 2005-03-14  Bruno Haible  <bruno@clisp.org>
46734
46735         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
46736         Update from GNU gettext 0.14.3.
46737
46738 2005-03-10  Jim Meyering  <jim@meyering.net>
46739
46740         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
46741
46742 2005-03-10  Jim Meyering  <jim@meyering.net>
46743
46744         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
46745         so that this module works on systems without fchdir.
46746
46747 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
46748
46749         Factor int-properties macros into a single file, except for
46750         glibc-related files.
46751         * lib/intprops.h: New file.
46752         * lib/getloadavg.c: Include it instead of limits.h.
46753         (INT_STRLEN_BOUND): Remove.
46754         * lib/human.c: Include intprops.h.
46755         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
46756         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
46757         302/1000.
46758         * lib/inttostr.h: Include intprops.h instead of limits.h.
46759         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
46760         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
46761         for consistency with intprops.h.
46762         (time_t_is_integer, twos_complement_arithmetic): Use them.
46763         * lib/sig2str.h: Include <signal.h>, intprops.h.
46764         (INT_STRLEN_BOUND): Remove.
46765         * lib/strftime.c (TYPE_SIGNED): Remove.
46766         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
46767         * lib/strtol.c: Adjust comments to match intprops.h.
46768         * lib/userspec.c: Include intprops.h.
46769         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
46770         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
46771         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
46772         instead of rolling our own expressions.
46773         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
46774
46775         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
46776         instead of int.
46777         (my_strftime): Do not mishandle years close to INT_MAX, by doing
46778         the right thing even if adding 1900 would overflow.  Similarly
46779         for tm_mon + 1 and tm_yday + 1.
46780         Make %Y always equivalent to %C%y, and similarly for %G and %g.
46781         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
46782         (DO_SIGNED_NUMBER): New macro.
46783         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
46784
46785 2005-03-07  Bruno Haible  <bruno@clisp.org>
46786
46787         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
46788
46789 2005-03-07  Bruno Haible  <bruno@clisp.org>
46790
46791         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
46792
46793 2005-03-04  Derek R. Price  <derek@ximbiot.com>
46794
46795         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
46796         (func_import): Only replace files via --import when they have actually
46797         changed.
46798
46799 2005-03-03  Derek R. Price  <derek@ximbiot.com>
46800
46801         * m4/mmap-anon.m4: New file.
46802         * m4/pagealign_alloc.m4: New file.
46803
46804 2005-03-03  Derek R. Price  <derek@ximbiot.com>
46805             Bruno Haible  <bruno@clisp.org>
46806
46807         * modules/pagealign_alloc: New file.
46808         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
46809
46810 2005-03-03  Derek R. Price  <derek@ximbiot.com>
46811             Bruno Haible  <bruno@clisp.org>
46812
46813         * lib/pagealign_alloc.h: New file.
46814         * lib/pagealign_alloc.c: New file.
46815
46816 2005-03-03  Bruno Haible  <bruno@clisp.org>
46817
46818         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
46819         Use an all-permissive copyright notice, recommended by RMS.
46820
46821 2005-03-02  Bruno Haible  <bruno@clisp.org>
46822
46823         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
46824         of AIX, the replacement has to be done only after <string.h> is
46825         included, therefore not in config.h. stpncpy.h does the replacement,
46826         and stpncpy.c uses it.
46827
46828 2005-03-02  Bruno Haible  <bruno@clisp.org>
46829
46830         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
46831         stpncpy.c uses it.
46832
46833 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
46834
46835         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
46836         The workaround isn't strictly needed for POSIX conformance, and
46837         it's too much of a pain to configure and maintain.  We'll ask
46838         people to fix their kernels instead.
46839         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
46840         (NANOSLEEP_BUG_WORKAROUND): Remove.
46841         (xnanosleep): Remove the workaround.
46842
46843 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
46844
46845         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
46846         Reported by Derek Price.
46847         (Include): Add "timespec.h".
46848
46849         * modules/xnanosleep (Depends-on): Remove gethrxtime.
46850
46851 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
46852
46853         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
46854         to detect nanosleep bug.
46855
46856 2005-03-01  Bruno Haible  <bruno@clisp.org>
46857
46858         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
46859
46860 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
46861
46862         * modules/gethrxtime: New file.
46863         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
46864         (Depends-on): Add gethrxtime.
46865         (configure.ac): Add gl_XNANOSLEEP.
46866         (Makefile.am): Remove lib_SOURCES line.
46867
46868 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
46869
46870         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
46871         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
46872
46873 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
46874
46875         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
46876         * lib/timespec.h (gettime): Return void, since it always
46877         succeeds now.  All uses changed.
46878         * lib/gettime.c (gettime) Likewise.
46879         [HAVE_NANOTIME]: Prefer nanotime.
46880         Assume gettimeofday succeeds, as POSIX requires.
46881         Assime time () succeeds, since other code already does.
46882         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
46883         (timespec_subtract): Remove.
46884         (NANOSLEEP_BUG_WORKAROUND): New constant.
46885         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
46886         things considerably.  Use it only on GNU/Linux hosts, since the
46887         workaround shouldn't be needed elsewhere.
46888
46889 2005-02-24  Bruno Haible  <bruno@clisp.org>
46890
46891         * modules/gettext (Files): Add m4/glibc2.m4.
46892
46893 2005-02-24  Bruno Haible  <bruno@clisp.org>
46894
46895         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
46896         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
46897         * m4/progtest.m4:
46898         Update from GNU gettext 0.14.2.
46899         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
46900
46901 2005-02-24  Bruno Haible  <bruno@clisp.org>
46902
46903         * lib/localcharset.c: Update from GNU gettext 0.14.2.
46904         * lib/config.charset: Update from GNU gettext 0.14.2.
46905
46906 2005-02-24  Bruno Haible  <bruno@clisp.org>
46907
46908         * lib/gettext.h: Update from GNU gettext 0.14.2.
46909
46910 2005-02-23  Simon Josefsson  <jas@extundo.com>
46911
46912         * m4/iconvme.m4: New file.
46913
46914 2005-02-23  Jim Meyering  <jim@meyering.net>
46915
46916         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
46917         change.
46918         Thanks to Bruno Haible for catching it.
46919
46920 2005-02-22  Simon Josefsson  <jas@extundo.com>
46921
46922         * modules/iconvme: New file.
46923
46924         * MODULES.html.sh: Add iconvme.
46925
46926 2005-02-22  Simon Josefsson  <jas@extundo.com>
46927
46928         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
46929
46930 2005-02-22  Simon Josefsson  <jas@extundo.com>
46931
46932         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
46933
46934 2005-02-22  Jim Meyering  <jim@meyering.net>
46935
46936         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
46937         s/ifndef/ifdef/.
46938
46939 2005-02-20  Neil Conway  <neilc@samurai.com>
46940
46941         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
46942         returned by OSX/Darwin if the specified buffer is not large
46943         enough for the hostname.
46944
46945 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
46946
46947         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
46948         pass it to _help, otherwise the latter coredumps trying to
46949         dereference state.root_argp.
46950
46951 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
46952
46953         * modules/chdir-long (Depends-on): Add memrchr.
46954         * modules/memrchr (Files): Add lib/memrchr.h.
46955         (Include): "memrchr.h".
46956
46957 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
46958
46959         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
46960
46961 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
46962
46963         * lib/memrchr.h: New file.
46964         * lib/chdir-long.c: Include it.
46965         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
46966         Don't bother including stddef.h.
46967
46968 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
46969
46970         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
46971         inclusion.
46972         Include <sys/types.h>, for dev_t.
46973         (ME_DUMMY, ME_REMOTE): Move from here....
46974         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
46975         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
46976         Dmitry V. Levin.
46977         Include mountlist.h first, to test the interface.
46978
46979 2005-01-29  Bruno Haible  <bruno@clisp.org>
46980
46981         * lib/progname.c (program_name): Initialize.
46982         Needed when linking statically on MacOS X.
46983
46984 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
46985
46986         Sync from coreutils.
46987         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
46988         (Depends-on): Add c-strtod.
46989         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
46990
46991 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
46992
46993         Sync from coreutils.
46994         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
46995
46996         Remove files that are specific to coreutils.
46997         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
46998
46999 2005-01-28  Bruno Haible  <bruno@clisp.org>
47000
47001         * modules/javacomp: New file.
47002         * MODULES.html.sh (Java): Add javacomp.
47003
47004 2005-01-28  Bruno Haible  <bruno@clisp.org>
47005
47006         * m4/javacomp.m4: New file, from GNU gettext.
47007
47008 2005-01-28  Bruno Haible  <bruno@clisp.org>
47009
47010         * lib/javacomp.sh.in: New file, from GNU gettext.
47011         * lib/javacomp.h: New file, from GNU gettext.
47012         * lib/javacomp.c: New file, from GNU gettext.
47013
47014 2005-01-26  Simon Josefsson  <jas@extundo.com>
47015
47016         * lib/gai_strerror.c: Use GPL in header.
47017
47018 2005-01-26  Bruno Haible  <bruno@clisp.org>
47019
47020         * modules/javaexec: New file.
47021         * MODULES.html.sh (Java): Add javaexec.
47022
47023 2005-01-26  Bruno Haible  <bruno@clisp.org>
47024
47025         * m4/javaexec.m4: New file, from GNU gettext.
47026
47027 2005-01-26  Bruno Haible  <bruno@clisp.org>
47028
47029         * lib/javaexec.sh.in: New file, from GNU gettext.
47030         * lib/javaexec.h: New file, from GNU gettext.
47031         * lib/javaexec.c: New file, from GNU gettext.
47032
47033 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
47034
47035         * modules/lchown (Depends-on): Remove lchown.h
47036
47037 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
47038
47039         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
47040         must be defined if the header file was not found, in order
47041         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
47042
47043 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
47044
47045         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
47046         initializers for struct pentry_state.
47047         (__argp_error): Check return value of __asprintf
47048         (__argp_failure): Translate error message
47049
47050         * lib/argp-parse.c: Removed braces around the expansion of N_()
47051
47052 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
47053
47054         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
47055         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
47056         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
47057         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
47058         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
47059         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
47060         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
47061         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
47062         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
47063         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
47064         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
47065         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
47066         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
47067         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
47068         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
47069         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
47070         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
47071         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
47072         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
47073         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
47074         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
47075         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
47076         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
47077         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
47078         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
47079         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
47080         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
47081         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
47082         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
47083         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
47084         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
47085         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
47086         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
47087         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
47088         xstrtol.m4, xstrtoumax.m4, yesno.m4:
47089         Use an all-permissive copyright notice, recommended by RMS.
47090
47091 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
47092
47093         * modules/chdir-long (Depends-on): Remove mempcpy.
47094
47095 2005-01-21  Jim Meyering  <jim@meyering.net>
47096
47097         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
47098         same value as for Solaris 9.
47099
47100         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
47101         component length.  This included changing the parameter to be
47102         of type `char *' rather than `char const *'.
47103         * lib/chdir-long.h (chdir_long): Update prototype.
47104
47105         * lib/openat.c (fdopendir, fstatat): New functions.
47106         * lib/openat.h: Include headers required for use of DIR and struct
47107         stat.
47108         [AT_SYMLINK_NOFOLLOW]: Define.
47109         (fdopendir, fstatat): Add prototypes.
47110
47111 2005-01-21  Bruno Haible  <bruno@clisp.org>
47112
47113         * modules/classpath: New file.
47114         * MODULES.html.sh (Java): Add classpath.
47115
47116 2005-01-21  Bruno Haible  <bruno@clisp.org>
47117
47118         * lib/classpath.h: New file, from GNU gettext.
47119         * lib/classpath.c: New file, from GNU gettext.
47120
47121 2005-01-20  Simon Josefsson  <jas@extundo.com>
47122
47123         * modules/version-etc-fsf: New file.
47124
47125 2005-01-20  Simon Josefsson  <jas@extundo.com>
47126
47127         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
47128         * lib/version-etc.c: Remove version_etc_copyright.
47129         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
47130         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
47131
47132 2005-01-20  Simon Josefsson  <jas@extundo.com>
47133
47134         * lib/base64.h (isbase64): Add.
47135
47136         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
47137         using a unsigned prototype, don't inline.
47138         (base64_decode): Use it.
47139
47140 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
47141
47142         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
47143         it.
47144
47145 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
47146
47147         * lib/save-cwd.c (save_cwd): Remove code to support the case
47148         where fchdir is missing or flaky.
47149
47150 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
47151
47152         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
47153
47154 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
47155
47156         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
47157         AC_LIBSOURCES now does this.
47158         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
47159         with new ullong_max module.
47160
47161 2005-01-19  Bruno Haible  <bruno@clisp.org>
47162
47163         * modules/sh-quote: New file.
47164         * MODULES.html.sh (Executing programs): Add sh-quote.
47165
47166 2005-01-19  Bruno Haible  <bruno@clisp.org>
47167
47168         * lib/sh-quote.h: New file, from GNU gettext.
47169         * lib/sh-quote.c: New file, from GNU gettext.
47170
47171 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
47172
47173         Merge from coreutils.
47174         * m4/ullong_max.m4: New file.
47175         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
47176         (gl_MACROS): Assume localeconv exists.
47177
47178 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
47179
47180         Merge changes from coreutils, as described below in several
47181         changelogs dated today.
47182
47183         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
47184         (O_DIRECTORY): Remove; not needed here, since "." must be
47185         a directory.  All uses removed.
47186         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
47187         universal on Suns, and we also need to test for IRIX.
47188         Revamp code to use 'if' rather than '#if'.
47189         Avoid unnecessary comparison of cwd->desc to 0.
47190
47191         * lib/utimens.c (futimens): Robustify the previous patch, by checking
47192         for known valid error numbers rather than observed invalid ones.
47193
47194 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
47195
47196         * modules/ullong_max: New file.
47197
47198         * modules/chdir-long, modules/openat: New files.
47199         * modules/save-cwd (Depends-on): Depend on chdir-long.
47200         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
47201
47202 2005-01-18  Jim Meyering  <jim@meyering.net>
47203
47204         Merge from coreutils.
47205         * m4/chdir-long.m4, m4/openat.m4: New files.
47206         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
47207         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
47208         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
47209         is sane and DOES follow symlinks.  Besides, testing 20 different
47210         systems found no broken chown implementations.
47211         Prompted by a change in rsync's copy of this macro.
47212         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
47213
47214         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
47215
47216         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
47217         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
47218         NULL-means-set-to-current-time semantics.
47219         Remove temporary file immediately, rather than waiting
47220         for configure's at-exit trap code to do it.
47221
47222 2005-01-18  Jim Meyering  <jim@meyering.net>
47223
47224         * lib/version-etc.c (version_etc_copyright): Update copyright date.
47225
47226         * lib/utimens.c (futimens): Account for the fact that futimes
47227         can also fail with errno == ENOSYS or errno == ENOENT.
47228         Patch from Dmitry V. Levin.
47229
47230         Change the name of the robust chdir function from chdir to chdir_long.
47231         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
47232         (restore_cwd): Use chdir_long, not chdir.
47233         * lib/chdir-long.c: Renamed from chdir.c.
47234         * lib/chdir-long.h: Renamed from chdir.h.
47235         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
47236         Hurd.
47237
47238 2005-01-18  Bruno Haible  <bruno@clisp.org>
47239
47240         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
47241         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
47242         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
47243         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
47244         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
47245         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
47246         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
47247         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
47248         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
47249         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
47250         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
47251         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
47252         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
47253         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
47254         Use an all-permissive copyright notice, recommended by RMS.
47255
47256 2005-01-18  Bob Proulx  <bob@proulx.com>
47257
47258         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
47259         simplify offsetof() macro construct to avoid compile failure with
47260         native HP-UX 11.0 ANSI C compiler.
47261
47262 2005-01-17  Bruno Haible  <bruno@clisp.org>
47263
47264         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
47265         redundant because stpncpy.m4 takes care of it.
47266
47267 2005-01-17  Bruno Haible  <bruno@clisp.org>
47268
47269         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
47270
47271 2005-01-17  Bruno Haible  <bruno@clisp.org>
47272
47273         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
47274         used.
47275
47276 2005-01-17  Bruno Haible  <bruno@clisp.org>
47277
47278         * lib/fwriteerror.h (fwriteerror): Change specification to include
47279         fclose.
47280         * lib/fwriteerror.c: Include <stdbool.h>.
47281         (fwriteerror): At the end, close the file stream. Record whether
47282         stdout was already closed.
47283
47284 2005-01-17  Bruno Haible  <bruno@clisp.org>
47285
47286         * lib/execute.c (environ): Declare if needed.
47287         * lib/pipe.c (environ): Likewise.
47288         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
47289
47290 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
47291
47292         * modules/argp: Depend on vsnprintf
47293
47294 2005-01-10  Jim Meyering  <jim@meyering.net>
47295
47296         * modules/closeout (Depends-on): Add atexit.
47297
47298 2005-01-06  Bruno Haible  <bruno@clisp.org>
47299
47300         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
47301
47302 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
47303
47304         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
47305         definitions to be after all include files, to avoid collisions.
47306         Problem reported by Bob Proulx.
47307
47308 2005-01-04  Jim Meyering  <jim@meyering.net>
47309
47310         Changes imported from coreutils.
47311         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
47312         as the mkstemp template, use a temporary directory and an
47313         8.3-friendly template to avoid trouble on systems like DJGPP.
47314         Reported by Juan M. Guerrero via Stepan Kasal.
47315         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
47316         close. Remove the temporary directory right away, rather than waiting
47317         for configure's at-exit trap code to do it.
47318         Suggestion from Stepan Kasal.
47319
47320 2005-01-01  Simon Josefsson  <jas@extundo.com>
47321
47322         * gnulib-tool: Print #include directives when --import'ing.
47323
47324 2004-12-28  Simon Josefsson  <jas@extundo.com>
47325
47326         * tests/test-base64.c: Include required header files.  Remove
47327         unused variables.
47328
47329 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
47330
47331         * modules/error (Depends-on): Remove gettext.
47332
47333 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
47334
47335         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
47336         not needed.  This removes a dependency on the gettext module.
47337         [defined _LIBC]: Do not include <libintl.h>; not needed.
47338
47339 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
47340
47341         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
47342         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
47343
47344 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
47345
47346         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
47347         HAVE_DECL_STRTOLD.
47348
47349 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
47350
47351         * modules/getdate (Depends-on): Remove alloca-opt.
47352
47353 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
47354
47355         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
47356
47357 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
47358
47359         * lib/argp-parse.c: Include <stddef.h>.
47360         (alignof, alignto): New macros.
47361         (parser_init): Don't assume that void * is aligned sufficiently
47362         for struct option.
47363
47364         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
47365         need to extend the stack.
47366         (YYINITDEPTH): New macro, so that the initial stack isn't overly
47367         large.
47368
47369 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
47370
47371         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
47372
47373 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
47374
47375         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
47376         (2004-10-24) change.  Apparently this was a false alarm.
47377
47378         * modules/getdate: Depend on alloca-opt, not alloca.
47379
47380 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
47381
47382         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
47383         Remove now-obsolete comment about AIX.
47384         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
47385         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
47386         (YYMAXDEPTH): New macro.
47387
47388 2004-12-18  Simon Josefsson  <jas@extundo.com>
47389
47390         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
47391
47392 2004-12-18  Bruno Haible  <bruno@clisp.org>
47393
47394         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
47395
47396 2004-12-18  Bruno Haible  <bruno@clisp.org>
47397
47398         * lib/fatal-signal.c (fatal_signals): Make non-const.
47399         (init_fatal_signals): New function.
47400         (uninstall_handlers, install_handlers): Ignore signals that were set to
47401         SIG_IGN.
47402         (at_fatal_signal): Call init_fatal_signals.
47403         (init_fatal_signal_set): Likewise. Ignore signals that were set to
47404         SIG_IGN.
47405         Reported by Paul Eggert.
47406
47407 2004-12-18  Bruno Haible  <bruno@clisp.org>
47408
47409         * doc/alloca.texi: New file.
47410         * doc/alloca-opt.texi: New file.
47411
47412 2004-12-17  Jim Meyering  <jim@meyering.net>
47413
47414         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
47415         Otherwise, install-sh could exit with improper exit status when
47416         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
47417
47418 2004-12-16  Simon Josefsson  <jas@extundo.com>
47419
47420         * tests/test-base64.c: Add license.
47421
47422 2004-12-15  Stepan Kasal  <address@hidden>
47423
47424         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
47425
47426 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
47427
47428         * modules/getcwd (Files): Add m4/d-ino.m4.
47429         Suggested by Mark D. Baushke.
47430
47431 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
47432
47433         * lib/getdate.y (textint): New member "negative".
47434         (time_zone_hhmm): New function.
47435         Expect 14 shift-reduce conflicts, not 13.
47436         (o_colon_minutes): New rule.
47437         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
47438         (yylex): Set the "negative" member of signed numbers.
47439
47440 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
47441
47442         * doc/getdate.texi (Time of day items, Time zone items):
47443         Describe new formats +00:00, UTC+00:00.
47444
47445 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
47446
47447         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
47448         spurious "-l"s.  Problem reported by Stepan Kasal.
47449
47450 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
47451
47452         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
47453         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
47454
47455 2004-12-04  Simon Josefsson  <jas@extundo.com>
47456
47457         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
47458         Vandoorselaere <yoann@prelude-ids.org>.
47459
47460 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
47461
47462         Changes imported from coreutils.
47463         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
47464         exist.
47465         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
47466
47467 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
47468
47469         Changes imported from coreutils.
47470         * lib/hard-locale.c: Assume <locale.h> exists.
47471         Include "strdup.h".
47472         (GLIBC_VERSION): New macro.
47473         (hard_locale): Assume setlocale exists.
47474         Rewrite to avoid #ifdef.
47475         Use strdup rather than malloc + strcpy.
47476         * lib/human.c: Assume <locale.h> exists.
47477         (human_readable): Assume localeconv exists.
47478
47479 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
47480
47481         * modules/hard-locale (Depends-on): Add strdup.
47482
47483 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
47484
47485         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
47486         convert T2, not T.  (Imported from libc.)
47487
47488 2004-11-30  Simon Josefsson  <jas@extundo.com>
47489
47490         * modules/restrict (License): Change to LGPL.
47491
47492 2004-11-30  Simon Josefsson  <jas@extundo.com>
47493
47494         * m4/restrict.m4: Add copyright and copying conditions.
47495
47496 2004-11-30  Simon Josefsson  <jas@extundo.com>
47497
47498         * m4/base64.m4: New file.
47499
47500 2004-11-30  Simon Josefsson  <jas@extundo.com>
47501
47502         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
47503         base64.
47504
47505         * tests/test-base64.c: New file.
47506
47507         * modules/base64: New file.
47508
47509 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
47510
47511         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
47512         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
47513
47514         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
47515
47516 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
47517
47518         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
47519         (__getcwd.c): Don't restore errno; glibc doesn't.
47520         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
47521         first, falling back to our code only if its results look suspicious.
47522         Ensure that the resulting buffer is only as large as necessary.
47523
47524         * lib/readutmp.c: Include readutmp.h first.
47525         Include <errno.h>, since readutmp.h no longer does that.
47526         * lib/readutmp.h: Don't include <errno.h>,
47527         <sys/param.h>, <time.h>; not needed to establish interface.
47528         (errno): Remove decl.
47529         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
47530         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
47531         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
47532
47533 2004-11-28  Simon Josefsson  <jas@extundo.com>
47534
47535         * lib/base64.h, base64.c: New file.
47536
47537 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
47538
47539         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
47540
47541 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
47542
47543         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
47544         (Depends-on): Remove pathmax, same.  Add mempcpy.
47545         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
47546         (Makefile.am): Append getcwd.h to lib_SOURCES.
47547         (Include): Add getcwd.h.
47548         (Maintainer): Change from Jim Meyering to "all, glibc",
47549         since getdate now uses intended-for-glibc code.
47550         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
47551         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
47552
47553 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
47554
47555         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
47556         HP's ANSI C compiler.
47557         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
47558         Declaring int functions causes warnings on some modern systems and
47559         shouldn't be needed to compile on ancient ones.
47560         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
47561         defined.
47562
47563         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
47564         with the following changes.
47565         (__set_errno): Parenthesize properly.
47566         Include <stdbool.h>.
47567         (MIN, MAX, MATCHING_INO): New macros.
47568         (__getcwd): Define with prototype, not K&R form.
47569         Use heuristics to allocate default buffer on stack if possible.
47570         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
47571         behavior, and to avoid the PATH_MAX limit when computing
47572         ../../../../...
47573         Use MATCHING_INO to compare inode number to file.
47574         Check for arithmetic overflow in size calculations.
47575         Fix bug in reallocation of dot array that caused getcwd to fail
47576         on directories nested deeper than 75.
47577         Be more careful about saving errno on error.
47578         Do not use realloc; use only free+malloc, as this is a bit
47579         more flexible and avoids a needless copy operation.
47580         Do not inspect st_dev and st_ino for symbolic links; POSIX
47581         doesn't specify the latter.
47582         Check for closedir errors.
47583         Avoid needless casts.
47584         Use "#ifdef weak_alias" around weak_alias, to be like other
47585         glibc code.
47586         The following changes to getcwd.c have effect only when used in
47587         gnulib; they have no effect inside glibc proper.
47588         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
47589         as alloca isn't used.
47590         (alloca, __alloca): Likewise.
47591         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
47592         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
47593         unconditionally, as gnulib assumes C89 or better.
47594         Do not include <sys/param.h>.
47595         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
47596         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
47597         better.
47598         (NULL) [!defined NULL]: Remove; we assume C89 or better.
47599         Include <dirent.h> in a way that is compatible with modern Autoconf.
47600         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
47601         New macros, if not already defined.
47602         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
47603         Use "_LIBC", not "defined _LIBC", for consistency.
47604         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
47605         a mempcpy module.
47606         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
47607         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
47608         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
47609         credit only to Jim Meyering and adjust the copyright dates.
47610         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
47611         <stdlib.h>, <unistd.h>, "pathmax.h".
47612         Instead, include "xgetcwd.h" (first) and "getcwd.h".
47613         (INITIAL_BUFFER_SIZE): Remove.
47614         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
47615
47616 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
47617
47618         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
47619         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
47620         Use the _ONCE methods, for efficiency.
47621         Check for fcntl.h.  In test program, include <errno.h>
47622         and <fcntl.h> if available.  Remove old K&R cruft from
47623         test program.  Check for common errors in GNU/Linux,
47624         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
47625         don't do AC_LIBOBJ, as that's getcwd.m4's job.
47626         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
47627         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
47628         name accordingly.
47629         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
47630         accommodate new getcwd.c.
47631         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
47632         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
47633         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
47634         that's all we need now.
47635
47636 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
47637
47638         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
47639         argp-parse.c depends on getopt internals, that means we should
47640         always use our getopt, to be on the safe side.
47641         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
47642         order not to spoil the result of an eventual previous invocation
47643         of gl_GETOPT_SUBSTITUTE.
47644
47645 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
47646
47647         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
47648         redefinition warnings. To avoid them, include the defines
47649         in `#if !defined __need_getopt ... #endif'. The only place
47650         where __getopt_argv_const is used is in definitions
47651         of getopt_long and getopt_long_only below, which are as well
47652         protected by `#ifndef __need_getopt'.
47653         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
47654         __need_getopt after including <stdio.h> and <unistd.h> These
47655         headers might have defined it.
47656
47657 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
47658
47659         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
47660
47661 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
47662
47663         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
47664         (futimens): New function, which uses futimes if available.
47665         (futimens, utimens): Support timespec==NULL, with same semantics
47666         as utime and utimens.
47667         * lib/utimens.h (futimens): New decl.
47668
47669 2004-11-23  Jim Meyering  <jim@meyering.net>
47670
47671         * lib/getopt_.h: Remove trailing blanks.
47672
47673 2004-11-23  Jim Meyering  <jim@meyering.net>
47674
47675         * lib/__fpending.c: Add comment.
47676
47677 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
47678
47679         * modules/canonicalize (Depends-on): Add xreadlink.
47680         Problem reported by James Youngman.
47681
47682 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
47683
47684         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
47685         New macros.
47686         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
47687         optopt): Use them instead of invoking ## directly; otherwise, the
47688         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
47689
47690 2004-11-19  Bruno Haible  <bruno@clisp.org>
47691
47692         * lib/strtok_r.c: Move comments from here...
47693         * lib/strtok_r.h: ... to here.
47694
47695 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
47696
47697         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
47698         implementations that mishandle size_t overflow.
47699
47700 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
47701
47702         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
47703         might fail.  Problem reported by Yoann Vandoorselaere.
47704         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
47705         implementations that mishandle size_t overflow.
47706
47707 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
47708
47709         * modules/canon-host (Depends-on): Add strdup.
47710
47711 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
47712
47713         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
47714
47715 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
47716
47717         * lib/canon-host.c: Include "strdup.h".
47718         (canon_host): Use getaddrinfo if available, so that IPv6 works.
47719         Use strdup instead of malloc/strcpy to duplicate strings.
47720
47721         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
47722         (human_space_before_unit): New constant.
47723         * lib/human.c (human_readable): Support it.
47724
47725         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
47726         (xgetcwd): Set errno correctly when failing.
47727         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
47728         the failure is actually due to a PATH_MAX problem.
47729
47730         Further getopt changes to make it more likely that glibc will
47731         buy the changes back.
47732         * lib/getopt.c (POSIXLY_CORRECT): New constant.
47733         (getopt): Use it, so to preserve glibc semantic
47734         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
47735         when compiling for libc.
47736         * lib/getopt_.h (__getopt_argv_const): Bring it back.
47737         (getopt_long, getopt_long_only): Use it.
47738
47739         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
47740         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
47741         (getopt): Argv is now char * const *, as per standard.
47742         (_getopt_internal_r, _getopt_internal): Argv is now char **,
47743         not char *__getopt_argv_const *.
47744         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
47745         _getopt_long_only_r): Likewise.
47746         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
47747         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
47748         _getopt_long_r, _getopt_long_only_r): Likewise.
47749         * lib/getopt_.h (__getopt_argv_const): Remove.
47750         (getopt): Argv is now char * const *, as per standard.
47751
47752         * lib/getdate.y (tORDINAL): New token.
47753         (day, relunit): Allow it for relative times.
47754         (relative_time_table): Use tORDINAL for ordinals.
47755
47756 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
47757
47758         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
47759         Document that "second" isn't allowed as an ordinal number.
47760
47761 2004-11-16  Jim Meyering  <jim@meyering.net>
47762
47763         * modules/closeout (Depends-on): Add fpending.
47764
47765 2004-11-15  Jim Meyering  <jim@meyering.net>
47766
47767         * lib/closeout.c: Include "__fpending.h" once again.
47768         Include <stdbool.h>.
47769         (close_stdout): Don't fail just because stdout was closed initially,
47770         since some programs don't write to stdout in the normal course of
47771         operation (other than --version and --help), and we don't want this
47772         function to make e.g. `touch file >&-' fail.
47773         But do fail if it was closed and someone has tried to write to it.
47774         E.g., `printf foo >&-' must fail.
47775
47776 2004-11-13  Jim Meyering  <jim@meyering.net>
47777
47778         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
47779
47780 2004-11-12  Simon Josefsson  <jas@extundo.com>
47781
47782         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
47783         small doc fix is still pending.
47784
47785 2004-11-11  Simon Josefsson  <jas@extundo.com>
47786
47787         * modules/strtok_r: New file.
47788
47789         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
47790         strtok_r.
47791
47792 2004-11-11  Simon Josefsson  <jas@extundo.com>
47793
47794         * m4/strtok_r.m4: New file.
47795
47796         * m4/getopt.m4: Replace opterr.
47797
47798 2004-11-11  Simon Josefsson  <jas@extundo.com>
47799
47800         * lib/strtok_r.h, strtok_r.c: New file.
47801
47802 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
47803
47804         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
47805         of replacing opterr, getopt, etc.  This should handle the
47806         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
47807
47808 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
47809
47810         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
47811         we can stop lying to compilers about the constness of argv when we
47812         are compiled outside glibc.
47813         (getopt, getopt_long, getopt_long_only): Use it.
47814         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
47815         _getopt_internal, getopt): Likewise.
47816         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
47817         _getopt_long_only_r): Likewise.
47818         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
47819         _getopt_long_r, _getopt_long_only_r): Likewise.
47820
47821         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
47822         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
47823         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
47824         the other external symbols.
47825         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
47826         declaration, since the above renaming now works around collisions.
47827
47828 2004-11-11  Jim Meyering  <jim@meyering.net>
47829
47830         * lib/linebreak.c: Remove trailing blanks.
47831         * lib/alloca_.h: Likewise.
47832         * lib/acosl.c: Likewise.
47833         * lib/euidaccess.c: Likewise.
47834         * lib/allocsa.h: Likewise.
47835
47836 2004-11-10  Simon Josefsson  <jas@extundo.com>
47837
47838         * m4/getaddrinfo.m4: New file.
47839
47840 2004-11-10  Simon Josefsson  <jas@extundo.com>
47841
47842         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
47843
47844 2004-11-10  Simon Josefsson  <jas@extundo.com>
47845
47846         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
47847         getaddrinfo.
47848
47849         * modules/getaddrinfo: New file.
47850
47851 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
47852
47853         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
47854
47855 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
47856
47857         * lib/mktime.c (SHR): New macro, which is a portable
47858         substitute for >> that should work even on Crays.
47859         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
47860         Problem reported by Mark D. Baushke in
47861         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
47862         * lib/getdate.y (SHR): Likewise.
47863         (tm_diff): Use it.
47864         * lib/strftime.c (SHR): Likewise.
47865         (tm_diff): Use it.
47866         * lib/quotearg.c (struct quoting_options): Use unsigned int for
47867         quote_these_too, so that right shifts are well defined.  All uses
47868         changed.
47869
47870 2004-11-10  Jim Meyering  <jim@meyering.net>
47871
47872         Ensure that no close failure goes unreported.
47873         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
47874         return early when it seems there's nothing to flush.
47875         Don't include __fpending.h.
47876
47877 2004-11-10  Jim Meyering  <jim@meyering.net>
47878
47879         * modules/closeout (Depends-on): Remove fpending.
47880
47881 2004-11-10  Jim Meyering  <jim@meyering.net>
47882
47883         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
47884
47885 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
47886
47887         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
47888         gl_FUNC_STRFTIME.
47889         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
47890         and AC_REQUIRE when possible, to avoid duplicate checks.
47891         Check for <wchar.h>.
47892
47893 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
47894
47895         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
47896
47897 2004-11-09  Bruno Haible  <bruno@clisp.org>
47898
47899         * m4/sockpfaf.m4: New file.
47900
47901 2004-11-05  Bruno Haible  <bruno@clisp.org>
47902
47903         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
47904         Reported by Mark D. Baushke <mdb@cvshome.org>.
47905
47906 2004-11-04  Bruno Haible  <bruno@clisp.org>
47907
47908         2004-09-11  Bruno Haible  <bruno@clisp.org>
47909                 * allocsa.valgrind: New file.
47910         2004-02-06  Bruno Haible  <bruno@clisp.org>
47911                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
47912                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
47913                 Reported by Christopher Seip <chris.seip@hp.com>.
47914
47915 2004-11-04  Bruno Haible  <bruno@clisp.org>
47916
47917         * modules/allocsa (Files): Add lib/allocsa.valgrind.
47918         (Makefile.am): Distribute it.
47919
47920 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
47921
47922         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
47923         with errno == ERANGE if the buffer is too small.
47924         Problem reported by Mark D. Baushke.
47925
47926 2004-11-03  Albert Chin  <china@thewrittenword.com>
47927             Paul Eggert  <eggert@cs.ucla.edu>
47928
47929         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
47930         equivalent, substitute $ac_type for equivalent type rather than
47931         blindly using uint32_t *always* which won't work if uint32_t is not
47932         available.  Define _UINT32_T to work around typedef of uint32_t if
47933         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
47934         2.5.1.
47935
47936 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
47937
47938         * m4/jm-macros.m4: Sync from coreutils.
47939         (gl_MACROS): Check for mbrlen, for pathchk.
47940         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
47941
47942 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
47943
47944         * lib/xreadlink.c (MAXSIZE): New macro.
47945         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
47946         size does not exceed MAXSIZE.  Avoid cast.
47947         As suggested by Mark D. Baushke in
47948         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
47949         if readlink fails with buffer size just under MAXSIZE, try again
47950         with MAXSIZE.
47951
47952 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
47953
47954         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
47955
47956 2004-11-02  Derek R. Price  <derek@ximbiot.com>
47957         and  Paul Eggert  <eggert@cs.ucla.edu>
47958
47959         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
47960         (get_date): Overparenthesize to avoid GCC warning.
47961
47962 2004-11-02  Bruno Haible  <bruno@clisp.org>
47963
47964         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
47965         returns void.
47966
47967 2004-11-02  Bruno Haible  <bruno@clisp.org>
47968
47969         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
47970         function returns void.
47971
47972 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
47973
47974         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
47975         fflush_unlocked, flockfile, funlockfile, funlockfile,
47976         fputs_unlocked, putc_unlocked.
47977
47978 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
47979
47980         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
47981         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
47982         already declared.
47983
47984 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
47985
47986         * modules/getdate (Files): Add doc/getdate.texi.
47987         (Depends-on): Add setenv, xalloc.
47988
47989 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
47990
47991         * lib/getdate.y: Add support for TZ="foo" within a date string.
47992         Fix some bugs near time_t boundaries.  Reject dates with
47993         out-of-range components, e.g., "Sept 31".
47994         Include <stdlib.h>, "setenv.h", "xalloc.h".
47995         (ISDIGIT_LOCALE): Remove; unused.
47996         Note that the TZ and time functions used here are not reentrant.
47997         (mktime_ok, get_tz): New functions.
47998         (TZBUFSIZE): New constant.
47999         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
48000         This requires that we sometimes generate our own TZ="XXX..." setting.
48001
48002 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
48003
48004         * doc/getdate.texi: New file, from coreutils with modifications for
48005         the new TZ parsing.
48006
48007 2004-10-27  Derek R. Price  <derek@ximbiot.com>
48008
48009         * lib/mktime.c (not_equal_tm): Remove redundant check.
48010
48011 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
48012
48013         * modules/regex (lib_SOURCES): Add regex.c.
48014         Reported by James Youngman in
48015         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
48016
48017 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
48018
48019         * lib/getdate.y: Use Bison 1.875 features, and some minor
48020         code cleanups.  This change does not affect semantics.
48021         Don't include <stdlib.h>; no longer needed.
48022         Don't include unlocked-io.h; only the "#if TEST" code uses
48023         stdio, and performance isn't crucial there.
48024         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
48025         Bison 1.875 features as described below.
48026         All uses of "PC." replaced by "pc->".
48027         (YYSTYPE): Add a forward declaration.
48028         (yylex, yyerror): Use full prototypes in forward decls.
48029         Use "%pure-parser" rather than obsolescent "%pure_parser".
48030         Use %parse-param and %lex-param instead of obsolescent
48031         YYPARSE_PARAM and YYLEX_PARAM.
48032         (meridian_table, month_and_day_table, time_units_table,
48033         relative_time_table, time_zone_table, military_table,
48034         lookup_zone, lookup_word, get_date):
48035         Use NULL instead of 0 where appropriate.
48036         (to_hour): Avoid abort (), to avoid a dependency on
48037         stdlib.h.
48038         (yyerror, yylex): Now accepts parser_control * arg.
48039         (main) [TEST]: Use '\0' rather than 0 for char.
48040
48041 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
48042
48043         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
48044
48045 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
48046
48047         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
48048         It's now the caller's responsibility to handle the case where
48049         !HAVE_GETPAGESIZE && !defined getpagesize.
48050
48051         * lib/mktime.c (leapyear): Arg is long int, not int.
48052
48053 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
48054
48055         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
48056
48057 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
48058
48059         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
48060         missing.  Problem reported by James Youngman.
48061
48062 2004-10-16  Simon Josefsson  <jas@extundo.com>
48063
48064         * gnulib-tool: Fix comments.  Fix parse problem.
48065         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
48066
48067 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
48068
48069         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
48070         implementation of getopt_long.  Problem reported by Alexander Taler in:
48071         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
48072
48073 2004-10-15  Bruno Haible  <bruno@clisp.org>
48074
48075         * gnulib-tool: Untabify. Initialize supplied_libname.
48076         (func_usage): More homogenous output.
48077         (func_modules_transitive_closure, func_modules_to_filelist,
48078         func_emit_lib_Makefile_am): New functions.
48079         (func_import): New function, extracted from big case statement. Use
48080         func_get_license, func_modules_transitive_closure,
48081         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
48082         opt_lgpl. Don't use test -a, as it's not portable.
48083         (func_create_testdir): Use func_modules_transitive_closure,
48084         func_modules_to_filelist, func_emit_lib_Makefile_am.
48085
48086 2004-10-15  Bruno Haible  <bruno@clisp.org>
48087
48088         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
48089
48090 2004-10-15  Bruno Haible  <bruno@clisp.org>
48091
48092         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
48093         the portions belonging to each module.
48094         Suggested by Derek Robert Price <derek@ximbiot.com>.
48095
48096 2004-10-12  Simon Josefsson  <jas@extundo.com>
48097
48098         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
48099         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
48100         to real functions.
48101
48102 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
48103
48104         * modules/vsnprintf: New file.
48105
48106 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
48107
48108         * m4/vsnprintf.m4: New file.
48109
48110 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
48111
48112         * lib/vsnprintf.h: New file.
48113         * lib/vsnprintf.c: New file.
48114
48115 2004-10-11  Bruno Haible  <bruno@clisp.org>
48116
48117         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
48118         vsnprintf.
48119
48120 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
48121
48122         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
48123
48124 2004-10-07  Bruno Haible  <bruno@clisp.org>
48125
48126         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
48127         fits into the provided buffer.
48128
48129 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
48130
48131         * lib/diacrit.c, diacrit.h: Add GPL notice.
48132
48133         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
48134         notice.
48135         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
48136         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
48137         This avoids a potential constant-folding bug.
48138
48139 2004-10-05  Bruno Haible  <bruno@clisp.org>
48140
48141         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
48142         for the declaration of strsep.
48143
48144 2004-10-05  Bruno Haible  <bruno@clisp.org>
48145
48146         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
48147
48148 2004-10-04  Simon Josefsson  <jas@extundo.com>
48149
48150         * modules/memmem: New file.
48151         * tests/test-memmem.c: New file.
48152         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
48153
48154 2004-10-04  Simon Josefsson  <jas@extundo.com>
48155
48156         * m4/memmem.m4: New file.
48157
48158 2004-10-04  Simon Josefsson  <jas@extundo.com>
48159
48160         * lib/memmem.h: New file.
48161         * lib/memmem.c: New file, taken from glibc.
48162
48163 2004-10-04  Simon Josefsson  <jas@extundo.com>
48164
48165         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
48166         '#ifdef USE_UNLOCKED_IO'.
48167
48168 2004-10-04  Simon Josefsson  <jas@extundo.com>
48169
48170         * config/srclist.txt: Add memmem from glibc.
48171
48172 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
48173
48174         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
48175
48176         * modules/argmatch, modules/argp, modules/closeout, modules/error,
48177         modules/exclude, modules/getdate, modules/getline,
48178         modules/getndelim2, modules/getpass, modules/getpass-gnu,
48179         modules/getusershell, modules/linebuffer, modules/md5,
48180         modules/mountlist, modules/posixtm, modules/readtokens,
48181         modules/readutmp, modules/regex, modules/sha1,
48182         modules/version-etc, modules/yesno:
48183         Remove dependency on unlocked-io.
48184
48185 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
48186
48187         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
48188
48189         * m4/unlocked-io.m4: Add copyright notice.
48190         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
48191
48192 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
48193
48194         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
48195         * lib/xmalloc.c (xmemdup): Likewise.
48196         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
48197         XFREE): Remove these long-obsolescent macros.
48198         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
48199         * lib/xstrdup.c: Remove.
48200
48201         * lib/regex.c (re_comp): Cast gettext return value to char *,
48202         Problem reported by Martin Neitzel via Mark D. Baushke.
48203
48204 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
48205
48206         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
48207         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
48208         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
48209         regex.c, sha1.c, version-etc.c, yesno.c:
48210         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
48211         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
48212         the includer's responsibility.
48213
48214         Sync from coreutils.
48215
48216         * lib/modechange.c (mode_compile): Don't decrement a pointer that
48217         points to the start of a string, as the C Standard says the
48218         resulting behavior is undefined.
48219
48220         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
48221         simple -> simple_backups, numbered_existing ->
48222         numbered_existing_backups, numbered -> numbered_backups
48223         to avoid shadowing problems.  All uses changed.
48224         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
48225         * lib/backupfile.c (check_extension, numbered_backup):
48226         Rename locals to avoid shadowing 'basename'.
48227         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
48228         once.
48229
48230         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
48231         * lib/.cvsignore: Add getopt.h.
48232
48233 2004-10-04  Bruno Haible  <bruno@clisp.org>
48234
48235         * modules/README: New file.
48236         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
48237         not a module.
48238
48239 2004-10-02  Jim Meyering  <jim@meyering.net>
48240
48241         * lib/dirfd.h, getpagesize.h: Add copyright notice.
48242
48243 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
48244
48245         * modules/strsep: New file.
48246
48247 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
48248
48249         * m4/strsep.m4: New file.
48250
48251 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
48252
48253         * lib/strsep.h: New file.
48254         * lib/strsep.c: New file.
48255
48256 2004-10-01  Simon Josefsson  <jas@extundo.com>
48257
48258         * lib/snprintf.c (snprintf): Handle size==0.
48259
48260 2004-10-01  Simon Josefsson  <jas@extundo.com>
48261             Bruno Haible  <bruno@clisp.org>
48262
48263         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
48264         (snprintf): Declare 'args'.
48265
48266 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
48267
48268         * lib/snprintf.c: Remove comments as to why each header is needed.
48269
48270 2004-10-01  Bruno Haible  <bruno@clisp.org>
48271
48272         * MODULES.html.sh: Add strsep.
48273
48274 2004-09-30  Simon Josefsson  <jas@extundo.com>
48275
48276         * modules/snprintf: New file.
48277
48278 2004-09-30  Simon Josefsson  <jas@extundo.com>
48279
48280         * m4/snprintf.m4: New file.
48281
48282 2004-09-30  Simon Josefsson  <jas@extundo.com>
48283
48284         * lib/snprintf.h, lib/snprintf.c: New files.
48285
48286 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
48287
48288         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
48289         (hol_entry_help): Never translate an empty string.
48290         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
48291         * lib/argp.h (OPTION_NO_TRANS): New option.
48292
48293 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
48294
48295         * modules/argp (Maintainer): Replace Simon Josefsson
48296         by Sergey Poznyakoff.
48297
48298 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
48299
48300         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
48301         changes merged back into glibc.
48302
48303 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
48304
48305         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
48306
48307 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
48308
48309         * lib/xvasprintf.c: Include xalloc.h.
48310         (xvasprintf): Use xalloc_die, not xmalloc_die.
48311
48312 2004-09-29  Bruno Haible  <bruno@clisp.org>
48313
48314         * modules/alloca-opt: New file, derived from modules/alloca.
48315         * modules/allocsa: Depend on alloca-opt instead of alloca.
48316         * modules/setenv: Likewise.
48317         * modules/vasnprintf: Likewise.
48318         * MODULES.html.sh: Add alloca-opt.
48319
48320 2004-09-28  Simon Josefsson  <jas@extundo.com>
48321
48322         * gnulib-tool: New parameter --lgpl, to asseert that modules are
48323         LGPL, and to replace license template from GPL to LGPL.
48324
48325 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
48326
48327         * modules/dummy: Change license to LGPL.
48328
48329 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
48330
48331         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
48332
48333 2004-09-24  Simon Josefsson  <jas@extundo.com>
48334
48335         * modules/minmax (License): Change from GPL to LGPL.
48336
48337 2004-09-23  Simon Josefsson  <jas@extundo.com>
48338
48339         * gnulib-tool (--import): Typo.
48340
48341 2004-09-23  Simon Josefsson  <jas@extundo.com>
48342
48343         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
48344
48345 2004-09-22  Bruno Haible  <bruno@clisp.org>
48346
48347         * modules/*: Add 'License' field.
48348         * gnulib-tool: Accept --extract-license option.
48349         (func_get_license): New function.
48350
48351 2004-09-21  Bruno Haible  <bruno@clisp.org>
48352
48353         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
48354         Reported by Simon Josefsson.
48355
48356 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
48357
48358         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
48359         gl_AC_TYPE_LONG_LONG.
48360
48361 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
48362
48363         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
48364
48365 2004-09-18  Simon Josefsson  <jas@extundo.com>
48366         and  Paul Eggert  <eggert@cs.ucla.edu>
48367
48368         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
48369         calls with autoreconf.  Define GL_LIB.
48370
48371 2004-09-14  Karl Berry  <karl@gnu.org>
48372
48373         * config/srclist.txt: unsync setenv.c, sigh.
48374
48375 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
48376
48377         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
48378         Problem reported by Bruno Haible in:
48379         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
48380
48381 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
48382
48383         * config/srclist.txt: Comment out argp-pvh.c.
48384
48385 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
48386
48387         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
48388         in case some system header has #define'd it.  Problem reported by
48389         Soeren D. Schulze in
48390         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
48391
48392 2004-09-09  Karl Berry  <karl@gnu.org>
48393
48394         * regex.[ch]: delete from the root.  These were supposed to be
48395                 synced with emacs cvs, but this has not happened for about
48396                 a year, and anyway nothing else uses emacs regex.[ch].
48397                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
48398                 lib/regex[.ch] is untouched.
48399
48400 2004-09-09  Bruno Haible  <bruno@clisp.org>
48401
48402         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
48403
48404 2004-09-09  Bruno Haible  <bruno@clisp.org>
48405
48406         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
48407         modifications.
48408         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
48409
48410 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
48411
48412         * modules/xvasprintf: New file.
48413         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
48414
48415 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
48416
48417         * lib/xvasprintf.h: New file.
48418         * lib/xvasprintf.c: New file.
48419         * lib/xasprintf.c: New file.
48420
48421 2004-09-08  Bruno Haible  <bruno@clisp.org>
48422
48423         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
48424
48425 2004-09-08  Bruno Haible  <bruno@clisp.org>
48426
48427         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
48428         length is > INT_MAX.
48429         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
48430         more.
48431
48432 2004-09-08  Bruno Haible  <bruno@clisp.org>
48433
48434         * lib/stdint_.h: New file, taken from GNU clisp.
48435
48436 2004-09-08  Bruno Haible  <bruno@clisp.org>
48437             Oskar Liljeblad  <oskar@osk.mine.nu>
48438
48439         * modules/stdint: New file.
48440         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
48441
48442 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
48443
48444         Import from coreutils.
48445         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
48446         strings on unbounded length.  alloca's performance benefits aren't
48447         that important here.
48448         (V_STRDUP): Remove.
48449         (parse_with_separator): New function, with most of the internals
48450         of the old parse_user_spec.  Allow user to omit both user and group,
48451         for compatibility with FreeBSD.
48452         Clone only the user name, not the entire spec.
48453         Do not set *uid, *gid unless entirely successful.
48454         Avoid memory leak in some failing cases.
48455         Fix regression for USER.GROUP reported by Dmitry V. Levin in
48456         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
48457         (parse_user_spec): Rewrite to use parse_with_separator.
48458
48459 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
48460
48461         * modules/userspec: Don't depend on alloca.
48462
48463 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
48464
48465         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
48466
48467 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
48468
48469         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
48470         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
48471         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
48472
48473 2004-08-16  Simon Josefsson  <jas@extundo.com>
48474
48475         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
48476         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
48477         Add --dry-run for --import.
48478         Let user provided command line parameters override configure.ac
48479         settings.
48480
48481 2004-08-12  Simon Josefsson  <jas@extundo.com>
48482
48483         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
48484         as discussed with Paul Eggert in threads rooted at
48485         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
48486         and
48487         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
48488         Before, the test was empty, and relied on ELIDE_CODE in source
48489         code.)
48490         (gl_PREREQ_GETOPT): New macro.
48491         (gl_GETOPT): Use them.
48492
48493 2004-08-12  Simon Josefsson  <jas@extundo.com>
48494
48495         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
48496         * lib/getopt_.h: Renamed from getopt.h.
48497
48498 2004-08-12  Simon Josefsson  <jas@extundo.com>
48499
48500         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
48501         Change default library name from libfoo to libgnu.
48502         Now, if you have a configure.ac that says:
48503                 gl_SOURCE_BASE(gl)
48504                 gl_M4_BASE(gl/m4)
48505                 gl_MODULES(error getopt etcetera)
48506                 gl_INIT
48507         you can import all you need by running:
48508                 ../gnulib/gnulib-tool --import
48509
48510         * modules/getopt (Files): Rename getopt.h to getopt_.h.
48511         (Makefile.am): Rewrite, use logic from argz.
48512         (Include): Use <getopt.h> instead of "getopt.h".
48513
48514 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
48515
48516         * modules/argp (Files): Add m4/unlocked-io.m4.
48517         (Depends-on): Add extensions.
48518
48519 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
48520
48521         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
48522         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
48523         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
48524         Check for program_invocation_name, program_invocation_short_name,
48525         flockfile, funlockfile, features.h, _getopt_long_only_r.
48526
48527 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
48528
48529         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
48530         its complicated substitute.
48531         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
48532         and program_invocation_name.
48533         (__argp_basename) [!_LIBC]: Remove; the only use was
48534         replaced by its body.
48535         (__argp_short_program_name): Change condition from
48536         !defined __argp_short_program_name to
48537         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
48538         to match argp-namefrob.h.
48539         (__argp_failure): Don't assume strerror_r returns char *.
48540         * lib/argp-parse.c (N_): Define unconditionally.
48541         (argp_default_options): Fill out initializers with 0 to avoid
48542         gcc warnings.
48543
48544 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
48545
48546         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
48547         getopt1.c.
48548
48549 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
48550
48551         Merge from coreutils.
48552
48553         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
48554
48555         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
48556         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
48557
48558 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
48559
48560         Merge from coreutils.
48561
48562         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
48563         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
48564         for Reliant Unix 5.43.
48565
48566         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
48567         (union fooround): Use uintmax_t, not long int.
48568         The rest is a merge from libc:
48569         [defined _LIBC]: Include <shlib-compat.h>.
48570         (_obstack) [defined _LIBC]: Remove after 2.3.4.
48571
48572         * lib/settime.c (settime): Recode to avoid warning with
48573         Sun Forte C 6U2.
48574
48575         * lib/strverscmp.c: Convert to UTF-8.
48576
48577 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
48578
48579         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
48580         m4/uintmax_t.m4.
48581
48582 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
48583
48584         * modules/xalloc-die: New file.
48585         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
48586
48587         * modules/md5 (Files): Add m4/uint32_t.m4.
48588         * modules/sha1: Renamed from modules/sha.
48589         (Files):
48590         Rename lib/sha.h to lib/sha1.h.
48591         Rename lib/sha.c to lib/sha1.c.
48592         Rename m4/sha.m4 to m4/sha1.m4.
48593         (lib_SOURCES): Likewise.
48594         (configure.ac): Rename gl_SHA to gl_SHA1.
48595         (Include): sha.h -> sha1.h.
48596
48597 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
48598
48599         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
48600         * m4/sha1.m4: Renamed from sha.m4.
48601         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
48602
48603 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
48604
48605         * lib/obstack.h (obstack_empty_p):
48606         Don't assume that chunk->contents is suitably aligned.
48607         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
48608         Likewise. Problem reported by Benno in
48609         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
48610
48611         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
48612         readable.  This could be improved further but it'd take some work.
48613
48614 2004-08-08  Simon Josefsson  <jas@extundo.com>
48615
48616         * modules/xgethostname (Depends-on): Remove exit and error (not
48617         used).
48618
48619         * modules/getpass-gnu: Add getpass.h.
48620         (Depends-on): Add stdbool.
48621         * modules/getpass: Add getpass.h.
48622
48623 2004-08-08  Simon Josefsson  <jas@extundo.com>
48624
48625         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
48626         Check getpass declaration.
48627
48628 2004-08-08  Simon Josefsson  <jas@extundo.com>
48629
48630         * lib/xgethostname.c: Don't include error.h (not used).
48631
48632         * lib/getpass.h: Add.
48633         * lib/getpass.c: Include getpass.h first.
48634
48635 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
48636
48637         * lib/xalloc-die.c: New file.
48638         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
48639         All uses removed.
48640         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
48641         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
48642         xalloc-die.c.
48643         (_, N_, xalloc_die): Move to xalloc-die.c.
48644         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
48645         so that we needn't mess with xalloc_msg_memory_exhausted.
48646
48647         * lib/sha1.h: Renamed from sha.h.
48648         (SHA1_H): Renamed from _SHA_H.
48649         (sha1_ctx): Renamed from sha_ctx.
48650         (sha1_init_ctx): Renamed from sha_init_ctx.
48651         (sha1_process_block): Renamed from sha_process_block.
48652         (sha1_process_bytes): Renamed from sha_process_bytes.
48653         (sha1_finish_ctx): Renamed from sha_finish_ctx.
48654         (sha1_read_ctx): Renamed from sha_read_ctx.
48655         (sha1_stream): Renamed from sha_stream.
48656         (sha1_buffer): Renamed from sha_buffer.
48657         * lib/sha1.c: Likewise; renamed from sha.c.
48658         Do not include <sys/types.h>.
48659         Include <stddef.h> rather than <stdlib.h>.
48660
48661 2004-08-08  Bruno Haible  <bruno@clisp.org>
48662
48663         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
48664         FILESYSTEM_PREFIX_LEN.
48665         * lib/progreloc.c: Likewise.
48666         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
48667
48668 2004-08-06  Simon Josefsson  <jas@extundo.com>
48669
48670         * modules/progname (Depends-on): Don't depend on stdbool.
48671
48672 2004-08-06  Simon Josefsson  <jas@extundo.com>
48673
48674         * modules/getsubopt: New file.
48675         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
48676         getsubopt.
48677
48678 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
48679
48680         More merge from coreutils.
48681
48682         * m4/utimens.m4, m4/utimecmp.m4: New files.
48683         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
48684         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
48685         prereq.m4, sha.m4: Import changes from coreutils.
48686
48687 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
48688
48689         More merge from coreutils.
48690         * modules/raise, modules/readtokens0, modules/utimens:
48691         * modules/utimecmp, module/xnanosleep: New files.
48692         * modules/strftime: Add lib/strftime.h.
48693         Change include from <time.h> to "strftime.h".
48694         * modules/yesno: Add lib/yesno.h.
48695         * modules/backupfile: Remove lib/addext.c.
48696         * modules/euidaccess: Add stat-macros.h.
48697         * modules/canonicalize, modules/euidaccess,
48698         modules/filemode, modules/lchown, modules/makepath,
48699         modules/rmdir, modules/stat: Likewise.
48700
48701 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
48702
48703         Merge from tar.
48704         * lib/argp-help.c (make_hol, hol_append): Don't assume that
48705         SIZE_MAX is a valid preprocessor constant.
48706         (__argp_basename): Change from "#ifndef _LIBC"
48707         to "#ifndef __argp_short_program_name", so that
48708         we don't compile these functions for tar.
48709
48710         More merges from coreutils.
48711         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
48712         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
48713         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
48714         * lib/addext.c: Remove; no longer needed.
48715         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
48716         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
48717         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
48718         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
48719         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
48720         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
48721         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
48722         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
48723         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
48724         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
48725         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
48726         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
48727         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
48728         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
48729         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
48730         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
48731         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
48732         Import changes from coreutils.
48733
48734 2004-08-05  Simon Josefsson  <jas@extundo.com>
48735
48736         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
48737
48738 2004-08-05  Simon Josefsson  <jas@extundo.com>
48739
48740         * m4/getsubopt.m4: New file.
48741
48742 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
48743
48744         Merge from coreutils.
48745
48746         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
48747         * m4/getcwd-path-max.m4: New files.
48748
48749         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
48750         FILESYSTEM_PREFIX_LEN ->
48751         FILE_SYSTEM_PREFIX_LEN.
48752         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
48753         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
48754         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
48755         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
48756
48757         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
48758         prerequisite modules now handle the DOS stuff.
48759         Don't check for unistd.h.
48760
48761 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
48762
48763         Merge from coreutils.
48764
48765         * lib/.gdb-history: Remove; this doesn't belong here.
48766
48767         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
48768         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
48769         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
48770         * lib/getcwd.c: New files.
48771
48772         * lib/dirname.h: Include <stdbool.h>.
48773         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
48774         for consistency with POSIX terminology.  All uses changed.
48775         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
48776         (strip_trailing_slashes): Use bool for booleans.
48777         * lib/stripslash.c (strip_trailing_slashes): Likewise.
48778
48779         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
48780         sometimes returns a positive errno value even when it succeeds.
48781         (print_errno_message) [!LIBC]: Fall back on strerror if
48782         __strerror_r fails.
48783
48784         * lib/path-concat.c (mempcpy): Don't define if a system header defines
48785         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
48786         (longest_relative_suffix): New function.
48787         (path_concat): Use it.  Assume first argument is not NULL.
48788         Port to DOS.  Omit redundant separators.
48789         Report an error instead of returning NULL.
48790         Use mempcpy instead of memcpy.
48791         (xpath_concat): Remove: not declared or used.
48792
48793         * lib/same.h: Include <stdbool.h>
48794         (same_name): Return bool, not int.
48795         * lib/same.c (same_name): Likewise.
48796         (errno): Don't declare; we assume C89 or better now.
48797
48798         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
48799         if not already defined.
48800
48801         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
48802         * lib/dup-safer.c (errno): Likewise.
48803
48804 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
48805
48806         Merge from coreutils.
48807         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
48808         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
48809         * modules/path-concat: Don't depend on strdup.
48810
48811 2004-08-03  Simon Josefsson  <jas@extundo.com>
48812
48813         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
48814         * lib/progname.h: Don't include stdbool.h.
48815
48816 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
48817
48818         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
48819         * MODULES.html.sh (func_all_modules): Remove fatal.
48820
48821 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
48822
48823         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
48824
48825 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
48826
48827         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
48828         working.
48829
48830 2004-08-02  Simon Josefsson  <jas@extundo.com>
48831
48832         * lib/getsubopt.h: New file, with comments from Bruno Haible.
48833         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
48834         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
48835
48836 2004-08-01  Simon Josefsson  <jas@extundo.com>
48837
48838         * lib/xgetdomainname.c: Include stdlib.h, for free().
48839
48840 2004-07-19  Bruno Haible  <bruno@clisp.org>
48841
48842         * MODULES.html.sh (func_all_modules): Add dummy.
48843
48844 2004-07-16  Simon Josefsson  <jas@extundo.com>
48845
48846         * modules/dummy: New file.
48847
48848 2004-07-16  Simon Josefsson  <jas@extundo.com>
48849
48850         * lib/dummy.c: New file.
48851
48852 2004-07-16  Bruno Haible  <bruno@clisp.org>
48853
48854         * lib/backupfile.h: Add extern "C" for C++.
48855         * lib/closeout.h: Likewise.
48856         * lib/copy-file.h: Likewise.
48857         * lib/findprog.h: Likewise.
48858         * lib/full-write.h: Likewise.
48859         * lib/pathname.h: Likewise.
48860         * lib/progname.h: Likewise.
48861         * lib/stpcpy.h: Likewise.
48862         * lib/stpncpy.h: Likewise.
48863         * lib/strcase.h: Likewise.
48864         * lib/strstr.h: Likewise.
48865         * lib/xalloc.h: Likewise.
48866
48867         * lib/mbswidth.h: Add extern "C" for C++.
48868         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
48869
48870 2004-07-13  Robert Millan  <robertmh@gnu.org>
48871
48872         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
48873
48874 2004-07-09  Simon Josefsson  <jas@extundo.com>
48875
48876         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
48877         failed without this.)
48878
48879 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
48880
48881         * modules/chown (Files): Add lib/fchown-stub.c, since
48882         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
48883
48884 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
48885
48886         * lib/fchown-stub.c: New file.
48887
48888 2004-06-24  Jim Meyering  <jim@meyering.net>
48889
48890         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
48891
48892 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
48893
48894         * modules/argz: Omit "#include".
48895
48896         * MODULES.html.sh (func_all_modules): Add calloc, to match
48897         2004-06-01 addition of calloc module.
48898
48899 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
48900
48901         * m4/argz.m4: New file, which is autoupdated from libtool.
48902
48903 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
48904
48905         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
48906         libtool.
48907
48908 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
48909
48910         * config/srclist-update: Don't insist on "USA." before the
48911         close-comment, as libtool omits the period and puts the */ on a
48912         separate line.
48913         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
48914         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
48915
48916 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
48917
48918         * modules/argz: New file.
48919         * MODULES.html.sh (func_all_modules): Add argz.
48920
48921 2004-06-12  Jim Meyering  <jim@meyering.net>
48922         and  Paul Eggert  <eggert@cs.ucla.edu>
48923
48924         * modules/hash (Files): Add lib/xalloc.h.
48925         * modules/pipe (Depends-on): Add wait-process.
48926         * modules/stat (Depends-on): Add xalloc.
48927         * modules/userspec (Files): Add lib/userspec.h.
48928         * modules/xstrto
48929
48930         Upgrade from gettext-0.13.
48931         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
48932         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
48933         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
48934
48935 2004-06-10  Jim Meyering  <jim@meyering.net>
48936
48937         * lib/calloc.c: New file.
48938
48939 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
48940
48941         * lib/getdate.y (yylex): Allow space between sign and number.
48942         Problem reported by Dan Jacobson.
48943
48944 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
48945
48946         Merge from coreutils CVS.
48947
48948         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
48949         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
48950         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
48951         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
48952         xstrtol.m4: Fix copyright date and/or serial number.
48953
48954         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
48955         See if we need an fchown replacement.
48956         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
48957         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
48958         and use the replacement function if we detect either defect.
48959
48960         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
48961         gl_UTIMECMP.
48962
48963 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
48964         and  Jim Meyering  <jim@meyering.net>
48965
48966         Merge from coreutils CVS.
48967
48968         * lib/stat-macros.h: New file, with contents from file-type.h
48969         and coreutils' system.h.
48970         * lib/file-type.c: Include "stat-macros.h".
48971         * lib/file-type.h (file_type): Move all macro definitions to new file,
48972         stat-macros.h.
48973
48974         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
48975         Wrap old code with this conditional.
48976         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
48977         function that does not dereference symlinks.
48978         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
48979
48980         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
48981         dependency problems.
48982         (xreadlink): Accept new arg SIZE, for efficiency.
48983         All decls and uses changed.
48984         * lib/xreadlink.h: Include <stddef.h>, for size_t.
48985
48986         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
48987         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
48988
48989         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
48990         sysexits.h.
48991
48992 2004-06-01  Jim Meyering  <jim@meyering.net>
48993
48994         * m4/calloc.m4: New file.
48995
48996 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
48997
48998         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
48999         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
49000         Also, fix a typo in a diagnostic.
49001
49002 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
49003
49004         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
49005         or AC_FUNC_REALLOC.
49006
49007 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
49008
49009         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
49010         macros to be defined.
49011         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
49012         the allocator returns NULL because the requested size is zero.
49013
49014 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
49015
49016         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
49017         var.  Add comment explaining why libc still defines it.  This
49018         merges the following patch from glibc:
49019         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
49020
49021 2004-05-20  Andreas Schwab  <schwab@suse.de>
49022
49023         * m4/free.m4: Replace free if it not known to work, not the other
49024         way round.
49025
49026 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
49027
49028         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
49029         present in glibc since revision 1.1 of this file.
49030         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
49031         obstack_alignment_mask, obstack_alloc, obstack_base,
49032         obstack_blank, obstack_blank_fast, obstack_chunk_size,
49033         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
49034         obstack_grow0, obstack_init, obstack_int_grow,
49035         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
49036         obstack_next_free, obstack_object_size, obstack_ptr_grow,
49037         obstack_ptr_grow_fast, obstack_room): Remove declarations of
49038         nonexistent functions.
49039
49040 2004-05-18  Karl Berry  <karl@gnu.org>
49041
49042         * config/srclist.txt: break link for vasnprintf.c.
49043
49044 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
49045
49046         Port obstack to the AS/400, where pointers are 16 bytes wide and
49047         you cannot cast an integer to a valid pointer.  This patch is
49048         currently waiting to be integrated into glibc; see
49049         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
49050
49051         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
49052         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
49053         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
49054         (struct obstack): temp member is now a union of a pointer and
49055         an integer, instead of an integer.  All integer uses changed.
49056         This does not affect the physical layout of struct obstack,
49057         except on hosts (like the AS/400) where the size or alignment of
49058         void * is greater than that of ptrdiff_t.
49059         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
49060         __STDC__)]: Store temporary in pointer member of union, not
49061         integer member.
49062         * lib/obstack.c: Include <stddef.h>, for offsetof.
49063         (struct fooalign): Remove; it doesn't need a name.
49064         (union fooround): Change double to long double, and add void *.
49065         (DEFAULT_ALIGNMENT): Use offsetof to compute.
49066         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
49067         not a macro.  Hence the values are always int; so remove all
49068         casts-to-int in uses.
49069
49070 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
49071
49072         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
49073         we can get this patch merged into glibc.
49074
49075 2004-05-17  Derek R. Price  <derek@ximbiot.com>
49076             Paul Eggert  <eggert@cs.ucla.edu>
49077
49078         * m4/argp: Depend on alloca.
49079
49080 2004-05-17  Derek R. Price  <derek@ximbiot.com>
49081             Paul Eggert  <eggert@cs.ucla.edu>
49082
49083         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
49084         freecoding.
49085
49086 2004-05-17  Bruno Haible  <bruno@clisp.org>
49087
49088         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
49089         precision that consists of a '.' followed by an empty digit string.
49090         Patch by Tor Lillqvist <tml@iki.fi>.
49091
49092 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
49093
49094         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
49095         for backward compatibility with older code.  We need our own
49096         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
49097         it under some other name, and our alloca.h will define it.
49098
49099 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
49100             Derek Price  <derek@ximbiot.com>
49101
49102         * lib/alloca.c: Include <alloca.h>, to get our interface.
49103         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
49104         include <alloca.h> first.  Use C89 prototype for alloca; this
49105         requires including <stddef.h> for size_t.  Use extern "C" if C++.
49106         Use #elif for simplicity, since we can assume C89 now.
49107         Don't try to source the system alloca.h since it will not be found
49108         and to prevent recursively including its replacement.
49109         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
49110         * lib/regex.c: Likewise.
49111
49112 2004-05-16  Derek Price  <derek@ximbiot.com>
49113             Paul Eggert  <eggert@cs.ucla.edu>
49114
49115         getline cleanup.  This changes the getndelim2 API: both order of
49116         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
49117         no delimiter).
49118
49119         * lib/getline.c: Don't include stddef.h or stdio.h, since our
49120         interface does that.
49121         (getline): Always use getdelim, so that we don't have two
49122         copies of this code.
49123         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
49124         if available.
49125         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
49126         (GETNDELIM2_MAXIMUM): New macro.
49127         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
49128         instead of the old practice of delim2==0.  All callers changed.
49129         Return -1 on overflow, instead of returning junk.
49130         Do not set *linesize unless allocation succeeds.
49131         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
49132         that we include sys/types.h.
49133         * lib/getnline.h: Likewise.
49134         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
49135         (getndelim2): Reorder arguments.
49136         * lib/getnline.c (getnline, getndelim):
49137         Don't discard the NMAX argument.
49138         (getnline): Invoke getndelim, to avoid code duplication.
49139         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
49140         of (size_t) -1 by callers of the getnline family.
49141
49142 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
49143
49144         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
49145         Check for gettimeofday.
49146         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
49147         Check for settimeofday, stime.
49148
49149 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
49150
49151         * lib/nanosleep.c (suspended): Change its type from int to
49152         sig_atomic_t volatile.
49153         (first_call): Make it private to rpl_nanosleep, and have it
49154         be zero initially as that's a bit faster.
49155         (my_usleep): Round up fractional times instead of truncating them,
49156         as this is the usual meaning for 'sleep'.
49157
49158         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
49159         doesn't work.
49160         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
49161         (ENOSYS): Define if not defined.
49162         (settime): Fall back on stime if it exists and settimeofday fails.
49163         But don't bother with fallbacks if a method fails with errno == EPERM.
49164
49165 2004-05-11  Jim Meyering  <jim@meyering.net>
49166
49167         Prior to this change, the save_cwd caller required read access to the
49168         current directory on most systems (ones with the fchdir function).
49169
49170         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
49171         fails, try write-only, and finally, resort to using xgetcwd.
49172
49173 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
49174
49175         * lib/obstack.c, obstack.h: Import changes from libc.
49176
49177 2004-04-28  Bruno Haible  <bruno@clisp.org>
49178
49179         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
49180         also implicitly appends .exe to executables.
49181         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
49182         accepts Windows pathnames.
49183         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
49184         Treat Cygwin like Windows, since it now accepts Windows pathnames.
49185         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
49186         Treat Cygwin like Windows, since it now accepts Windows pathnames.
49187         Reported by Derek Robert Price <derek@ximbiot.com>.
49188
49189 2004-04-21  Karl Berry  <karl@gnu.org>
49190
49191         * config/srclist.txt (localcharset.c): break sync.
49192
49193 2004-04-20  Paul Eggert  <eggert@twinsun.com>
49194
49195         * m4/host-os.m4: Add a copyright notice.
49196
49197 2004-04-20  Jim Meyering  <jim@meyering.net>
49198
49199         Change UTILS_ to gl_ in AC_DEFINE'd names.
49200         Change utils_- and jm_-prefixed variables, too.
49201         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
49202         UTILS_FUNC_MKDIR_TRAILING_SLASH.
49203         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
49204
49205         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
49206         Don't emit trailing blanks.
49207         Also rename jm_-prefixed variables to have gl_ prefix.
49208
49209         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
49210         Also rename jm_-prefixed variables to have gl_ prefix.
49211
49212         * m4/jm-macros.m4: Reflect the renamings.
49213         * m4/prereq.m4: Likewise.
49214
49215 2004-04-20  Jim Meyering  <jim@meyering.net>
49216
49217         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
49218         memory.
49219
49220 2004-04-20  Jim Meyering  <jim@meyering.net>
49221             Bruno Haible  <bruno@clisp.org>
49222
49223         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
49224         memory when realloc fails.
49225
49226 2004-04-19  Jim Meyering  <jim@meyering.net>
49227
49228         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
49229         now that readutmp.c may call `free (0)'.
49230
49231 2004-04-19  Bruno Haible  <bruno@clisp.org>
49232
49233         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
49234         * m4/inttypes_h.m4: Likewise.
49235         * m4/stdint_h.m4: Likewise.
49236         * m4/intmax_t.m4: Likewise.
49237         * m4/uintmax_t.m4: Likewise.
49238
49239 2004-04-18  Jim Meyering  <jim@meyering.net>
49240
49241         * m4/prereq.m4: Don't forbid jm_ prefix.
49242
49243         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
49244         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
49245         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
49246         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
49247         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
49248         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
49249         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
49250         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
49251         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
49252         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
49253         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
49254         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
49255         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
49256         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
49257         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
49258         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
49259         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
49260         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
49261         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
49262
49263 2004-04-18  Jim Meyering  <jim@meyering.net>
49264
49265         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
49266         failure, don't leak memory and do call END_UTMP_ENT.
49267
49268 2004-04-16  Jim Meyering  <jim@meyering.net>
49269
49270         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
49271         coreutils' stat program.
49272         (gl_PREREQ): Don't require jm_PREREQ_STAT.
49273
49274 2004-04-11  Paul Eggert  <eggert@twinsun.com>
49275
49276         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
49277         C89.
49278         (CHAR_BIT): Remove, since we assume C89.
49279         Include <stdint.h> if available, as per current Autoconf CVS advice.
49280
49281 2004-03-31  Jim Meyering  <jim@meyering.net>
49282
49283         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
49284         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
49285         * m4/xalloc.m4: Likewise.
49286
49287 2004-03-30  Paul Eggert  <eggert@twinsun.com>
49288
49289         Merge from coreutils.
49290
49291         * m4/inttostr.m4: New file.
49292         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
49293         Require AM_STDBOOL_H and gl_TIMESPEC instead.
49294         Require gl_CLOCK_TIME.
49295         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
49296
49297 2004-03-30  Paul Eggert  <eggert@twinsun.com>
49298
49299         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
49300         not bool, to be more consistent with Unix conventions.
49301         Suggested by Bruno Haible.
49302
49303         Merge from coreutils.
49304
49305         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
49306         * lib/umaxtostr.c: New files.
49307
49308         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
49309         the usual <time.h> dance.
49310         (get_date): Change signature to support fractional time stamps.
49311         All callers changed.
49312         * lib/getdate.y: Include "getdate.h" first, as we can now
49313         assume C89 and don't need to worry about 'const'.
49314         Similarly, include "unlocked-io.h" near start, not in middle.
49315         Include <limits.h>.
49316         (textint.value): Use long int rather than int.
49317         (textint.digits): Use size_t rather than int.
49318         (BILLION, LOG10_BILLION): New constants.
49319         (parser_control): New member rel_ns.  Members day_ordinal,
49320         time_zone, month, day, hour, minutes, rel_year, rel_month,
49321         rel_day, rel_hour, rel_minutes, rel_seconds
49322         are now long int, not int.  Member seconds is now struct timespec,
49323         not int.  New member timespec_seen.  Members dates_seen, days_seen,
49324         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
49325         not int.
49326         (%union.intval): Now long int, not int.
49327         New member timespec.
49328         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
49329         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
49330         (spec): Now is a timespec or an item list.
49331         (timespec, items): New nonterminals.
49332         (time, rel, relunit, number, get_date):
49333         Add support for fractional seconds.
49334         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
49335         (gmtime, localtime, mktime): Remove decls; not needed with C89.
49336         (to_hour): First arg is now long int, not int.
49337         (to_year): Returns long int, not int.
49338         Don't treat year -70 like 70.
49339         (tm_diff): Returns long int, not int.
49340         (lookup_word): Use bool instead of int when appropriate.
49341         (yylex): Use size_t for count, not int.
49342         Detect overflow when parsing large integer constants.
49343         Add support for fractions.
49344         (get_date): Make pointers 'const' if possible.
49345         Use more-portable code to detect integer overflow.
49346         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
49347         Don't use ctime; it's not reliable if the year has >4 digits.
49348
49349         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
49350         This is for compatibility with BSD.
49351
49352         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
49353         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
49354         From coreutils' system.h.
49355
49356         * lib/userspec.c: Don't include "posixver.h".
49357         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
49358         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
49359         compatible extension.  Simplify code by removing a boolean int
49360         that was always nonzero if a string was nonnull.
49361
49362 2004-03-30  Jim Meyering  <jim@meyering.net>
49363
49364         Merge from coreutils.
49365
49366         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
49367         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
49368         on some systems one must include <grp.h> before it.
49369         Reported by Christian Krackowizer.
49370
49371 2004-03-30  Jim Meyering  <jim@meyering.net>
49372
49373         Merge from coreutils.
49374
49375         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
49376
49377         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
49378         an empty input stream.
49379
49380         * lib/readtokens.c: Include <stdbool.h>.
49381         (readtoken): Use `size_t' rather than int/long.
49382         All callers adjusted.
49383         Use `bool' rather than `int' where appropriate.
49384         Use memset rather than an explicit loop.
49385         Use x2nrealloc rather than xrealloc.
49386         Allow the use of `\0' as a delimiter.
49387         (readtokens): Likewise.
49388         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
49389
49390 2004-03-30  Jim Meyering  <jim@meyering.net>
49391
49392         * m4/realloc.m4: Remove file, since now it does no more than
49393         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
49394         the `configure.ac' section of module/realloc.
49395         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
49396
49397 2004-03-30  Bruno Haible  <bruno@clisp.org>
49398
49399         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
49400         nonnull.
49401
49402 2004-03-29  Paul Eggert  <eggert@twinsun.com>
49403
49404         Merge changes to getloadavg.c from coreutils and Emacs.
49405
49406         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
49407         Define to an expression, not to the empty string.
49408         Include cloexec.h and xalloc.h.
49409         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
49410         Use set_cloexec_flag rather than rolling our own.
49411         * lib/cloexec.c, lib/cloexec.h: New files.
49412
49413 2004-03-29  Paul Eggert  <eggert@twinsun.com>
49414
49415         * m4/cloexec.m4: New file.
49416
49417 2004-03-18  Paul Eggert  <eggert@twinsun.com>
49418
49419         * lib/getopt.h: Sync with libc CVS.
49420
49421 2004-03-18  Paul Eggert  <eggert@twinsun.com>
49422             Bruno Haible  <bruno@clisp.org>
49423
49424         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
49425         mbswidth.
49426
49427 2004-03-18  Paul Eggert  <eggert@twinsun.com>
49428             Bruno Haible  <bruno@clisp.org>
49429
49430         * lib/mbswidth.h: Include <wchar.h> only if
49431         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
49432         <wchar.h>.
49433         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
49434
49435 2004-03-09  Paul Eggert  <eggert@twinsun.com>
49436
49437         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
49438         Sync with libc CVS.
49439         * lib/getopt_int.h: New file, also synced from libc.
49440
49441 2004-03-09  Paul Eggert  <eggert@twinsun.com>
49442
49443         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
49444         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
49445         Bring back getopt.c, getopt.h, getopt1.c.
49446
49447 2004-03-07  Paul Eggert  <eggert@twinsun.com>
49448
49449         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
49450         All uses changed.  Check for sa_sigaction member; this fixes
49451         a bug first reported by Jason Andrade in
49452         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
49453
49454 2004-03-07  Paul Eggert  <eggert@twinsun.com>
49455
49456         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
49457         '#if' expressions.  Unlike the code it replaces, it does not
49458         depend on (defined _SC_PAGESIZE).  However, it does depend on
49459         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
49460         first reported by Jason Andrade in
49461         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
49462
49463 2004-02-25  Simon Josefsson  <jas@extundo.com>
49464
49465         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
49466
49467 2004-02-25  Simon Josefsson  <jas@extundo.com>
49468
49469         * lib/strdup.h: New file.
49470         * lib/strdup.c: Include it.
49471         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
49472         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
49473
49474 2004-02-23  Karl Berry  <karl@gnu.org>
49475
49476         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
49477         (from fencepost.gnu.org:/gd/gnuorg).
49478
49479 2004-02-23  Karl Berry  <karl@gnu.org>
49480
49481         * config/srclistvars.sh (GNUORG) [karl]: redefine.
49482         * config/srclist.txt: add maintain/standards documents.
49483
49484 2004-02-18  Bruno Haible  <bruno@clisp.org>
49485
49486         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
49487         Reported by Derek Robert Price <derek@ximbiot.com>.
49488
49489 2004-02-16  Karl Berry  <karl@gnu.org>
49490
49491         * config/mkinstalldirs, install-sh: update from automake.
49492
49493 2004-02-06  Karl Berry  <karl@gnu.org>
49494
49495         * m4/po.m4: update from gettext 0.14.1.
49496
49497 2004-02-06  Karl Berry  <karl@gnu.org>
49498
49499         * lib/config.charset: update from gettext 0.14.1.
49500
49501 2004-02-05  Paul Eggert  <eggert@twinsun.com>
49502
49503         Add comments and code, prompted by suggestions from Bruno Haible
49504         for sh-quote.
49505         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
49506         describing the enum quoting_style values.
49507         * lib/quotearg.c (quotearg_alloc): New function.
49508         (quotearg_buffer_restyled): Treat lone { and } as special.
49509         Treat = as special.  Work around bug with older shells
49510         that "see" a '\' that is really the 2nd byte of a multibyte char.
49511         Quote empty string with shell_quoting_style.
49512
49513 2004-02-03  Bruno Haible  <bruno@clisp.org>
49514
49515         * m4/pipe.m4: New file, from GNU gettext.
49516
49517 2004-02-03  Bruno Haible  <bruno@clisp.org>
49518
49519         * lib/pipe.h: New file, from GNU gettext.
49520         * lib/pipe.c: New file, from GNU gettext.
49521
49522 2004-01-27  Bruno Haible  <bruno@clisp.org>
49523
49524         * m4/execute.m4: New file, from GNU gettext.
49525
49526 2004-01-27  Bruno Haible  <bruno@clisp.org>
49527
49528         * lib/execute.h: New file, from GNU gettext.
49529         * lib/execute.c: New file, from GNU gettext.
49530         * lib/w32spawn.h: New file, from GNU gettext.
49531
49532 2004-01-24  Paul Eggert  <eggert@twinsun.com>
49533
49534         Merge from diffutils.
49535
49536         * lib/file-type.c (file_type): Add typed memory objects.
49537         * lib/file-type.h (S_TYPEISTMO): New macro.
49538
49539         * lib/c-stack.h (c_stack_action): Remove argv argument.
49540         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
49541         (die): Don't calculate message unless segv_action returns.
49542         (get_stack_location, min_address_from_argv, max_address_from_argv,
49543         volatile stack_base, volatile_stack_size): Remove.
49544         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
49545         that every segmentation violation is a stack overflow.  (Ouch!)
49546         See Debian bug 136249 (still outstanding) for more info about why
49547         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
49548
49549 2004-01-24  Paul Eggert  <eggert@twinsun.com>
49550
49551         Exit-status fix from coreutils.
49552
49553         Use exit_failure consistently in place of EXIT_FAILURE,
49554         so that program exit statuses are consistent on failure.
49555
49556         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
49557         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
49558         * lib/argmatch.h: Comment fix to match the above.
49559         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
49560         Now a macro referring to exit_failure, instead of a separate
49561         variable.  Include "exitfail.h" to get it.
49562         * lib/xstrtol.h: Include "exitfail.h".
49563         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
49564
49565         * lib/long-options.c (parse_long_options): Use prototype
49566         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
49567         for clarity.
49568
49569 2004-01-21  Jim Meyering  <jim@meyering.net>
49570
49571         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
49572         so as not to conflict with a different-sized __mktime_internal
49573         function in GNU libc.
49574         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
49575         Problem building statically-linked `ls' reported by Michael Brunnbauer.
49576
49577 2004-01-20  Karl Berry  <karl@gnu.org>
49578
49579         * config/config.guess: update from config.
49580
49581         * config/srclistvars.sh: GNUWWWLICENSES for karl.
49582
49583 2004-01-20  Bruno Haible  <bruno@clisp.org>
49584
49585         Safer stack allocation.
49586         * lib/setenv.c: Include allocsa.h.
49587         (alloca): Remove fallback definition.
49588         (freea): Remove macro.
49589         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
49590         instead of freea.
49591
49592 2004-01-20  Bruno Haible  <bruno@clisp.org>
49593
49594         * m4/eealloc.m4: New file, from GNU gettext.
49595
49596 2004-01-20  Bruno Haible  <bruno@clisp.org>
49597
49598         * m4/allocsa.m4: New file, from GNU gettext.
49599
49600 2004-01-20  Bruno Haible  <bruno@clisp.org>
49601
49602         * lib/xallocsa.h: New file, from GNU gettext.
49603         * lib/xallocsa.c: New file, from GNU gettext.
49604
49605 2004-01-20  Bruno Haible  <bruno@clisp.org>
49606
49607         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
49608
49609 2004-01-20  Bruno Haible  <bruno@clisp.org>
49610
49611         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
49612         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
49613         specially.
49614
49615 2004-01-20  Bruno Haible  <bruno@clisp.org>
49616
49617         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
49618         patch.
49619
49620 2004-01-20  Bruno Haible  <bruno@clisp.org>
49621
49622         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
49623
49624 2004-01-20  Bruno Haible  <bruno@clisp.org>
49625
49626         * lib/eealloc.h: New file.
49627
49628 2004-01-20  Bruno Haible  <bruno@clisp.org>
49629
49630         * lib/binary-io.h: Avoid warnings on Cygwin.
49631
49632 2004-01-20  Bruno Haible  <bruno@clisp.org>
49633
49634         * lib/allocsa.h: New file, from GNU gettext.
49635         * lib/allocsa.c: New file, from GNU gettext.
49636
49637 2004-01-18  Karl Berry  <karl@gnu.org>
49638
49639         * doc/gpl.texi, doc/lgpl.texi: new files.
49640
49641 2004-01-18  Karl Berry  <karl@gnu.org>
49642
49643         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
49644         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
49645
49646 2004-01-15  Paul Eggert  <eggert@twinsun.com>
49647
49648         Merge from coreutils.
49649
49650         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
49651         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
49652         (gl_DEFAULT_POSIX2_VERSION): Move
49653         the documentation from 'configure' into 'config.hin',
49654         so that 'configure --help' isn't burdened by it and
49655         we don't have to worry about its formatting there.
49656         Reword the documentation so that it's more succinct
49657         and can be run together into a single paragraph.
49658         * m4/same.m4 (gl_SAME): Check for pathconf.
49659
49660 2004-01-15  Paul Eggert  <eggert@twinsun.com>
49661
49662         Merge from coreutils.
49663
49664         * lib/posixver.c: Include posixver.h.
49665
49666         * lib/same.c: Include <stdbool.h>, <limits.h>.
49667         (_POSIX_NAME_MAX): Define if not defined.
49668         (MIN): New macro.
49669         (same_name): If file names are silently truncated, report
49670         that the file names are the same if they are the same after
49671         the silent truncation.
49672
49673         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
49674         conversion function.
49675         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
49676         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
49677         longer needed.
49678
49679 2004-01-15  Jim Meyering  <jim@meyering.net>
49680
49681         Merge from coreutils.
49682
49683         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
49684         if no library is required.
49685         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
49686         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
49687         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
49688         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
49689         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
49690         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
49691         value, $ac_cv_search_crypt, if it's "none required".
49692         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
49693         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
49694         not gl_FUNC_GETLOADAVG.
49695         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
49696         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
49697
49698 2004-01-15  Jim Meyering  <jim@meyering.net>
49699
49700         Merge from coreutils.
49701
49702         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
49703         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
49704         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
49705
49706         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
49707         optional configure-time default.
49708
49709         * lib/version-etc.c (version_etc_copyright): Update copyright date.
49710
49711         * lib/xreadlink.c (xreadlink): Correct outdated comment.
49712
49713 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
49714
49715         Merge from coreutils.
49716
49717         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
49718         value, $ac_cv_search_nanosleep, if it's "none required".
49719
49720 2004-01-14  Paul Eggert  <eggert@twinsun.com>
49721
49722         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
49723         with like-named macro in fnmatch.c.
49724         (EXT): Use an internal constant instead.
49725
49726         Merge fnmatch patches from glibc.
49727         * lib/fnmatch.c (mbsinit): Remove define.
49728         Add libc_hidden_ver (__fnmatch, fnmatch).
49729         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
49730         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
49731
49732 2004-01-14  Karl Berry  <karl@gnu.org>
49733
49734         * config/install-sh: update from automake.
49735
49736 2004-01-13  Karl Berry  <karl@gnu.org>
49737
49738         * config/install-sh: update from automake.
49739
49740 2004-01-09  Karl Berry  <karl@gnu.org>
49741
49742         * config/install-sh: update from automake.
49743
49744 2004-01-05  Karl Berry  <karl@gnu.org>
49745
49746         * config/config.{sub,guess}: update from config.
49747
49748 2003-12-31  Karl Berry  <karl@gnu.org>
49749
49750         * config/depcomp: update from automake.
49751
49752 2003-12-14  Karl Berry  <karl@gnu.org>
49753
49754         * lib/config.charset: update from gettext-runtime.
49755
49756 2003-12-03  Paul Eggert  <eggert@twinsun.com>
49757
49758         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
49759         Bug reported by Alfred M. Szmidt.
49760
49761 2003-12-03  Bruno Haible  <bruno@clisp.org>
49762
49763         * m4/gettext.m4: Upgrade from gettext-0.13.
49764         * m4/po.m4: Upgrade from gettext-0.13.
49765         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
49766         * m4/intmax.m4: New file, from gettext-0.13.
49767         * m4/printf-posix.m4: New file, from gettext-0.13.
49768
49769 2003-11-29  Karl Berry  <karl@gnu.org>
49770
49771         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
49772
49773 2003-11-25  Paul Eggert  <eggert@twinsun.com>
49774             Bruno Haible  <bruno@clisp.org>
49775
49776         * lib/printf-parse.h: Don't include sys/types.h.
49777         (ARG_NONE): New macro.
49778         (char_directive): Change type of *arg_index fields to size_t.
49779         * lib/printf-parse.c: Don't include sys/types.h.
49780         (SSIZE_MAX): Remove macro.
49781         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
49782         Remove unnecessary overflow check.
49783         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
49784         fields.
49785
49786 2003-11-25  Bruno Haible  <bruno@clisp.org>
49787
49788         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
49789
49790 2003-11-25  Bruno Haible  <bruno@clisp.org>
49791
49792         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
49793         gt_TYPE_SSIZE_T.
49794
49795 2003-11-24  Paul Eggert  <eggert@twinsun.com>
49796
49797         * modules/alloca: Remove dependency on xalloc.
49798
49799 2003-11-24  Paul Eggert  <eggert@twinsun.com>
49800
49801         * lib/alloca.c: Remove dependency on xalloc module.
49802         (xalloc_die): Remove.
49803         (memory_full) [!defined emacs]: New macro.
49804         [!defined emacs]: Don't include xalloc.h.
49805         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
49806         address arithmetic overflows.  Change datatypes a bit to avoid
49807         unnecessary casts.
49808
49809 2003-11-22  Jim Meyering  <jim@meyering.net>
49810
49811         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
49812         s/size/size_t/.
49813
49814 2003-11-21  Karl Berry  <karl@gnu.org>
49815
49816         * config/config.{sub,guess}: update from config.
49817
49818 2003-11-18  Karl Berry  <karl@gnu.org>
49819
49820         * config/config.{sub,guess}: update from config.
49821
49822         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
49823
49824 2003-11-17  Paul Eggert  <eggert@twinsun.com>
49825
49826         * README: Mention that S+T cannot overflow if S is the size of
49827         an existing object and T is sufficiently small.
49828
49829 2003-11-17  Jim Meyering  <jim@meyering.net>
49830
49831         On systems without utime and without a utimes function capable of
49832         dealing with a NULL struct utimbuf* argument, this utime replacement
49833         could -- in unusual circumstances -- leak a file descriptor.
49834         * lib/utime.c: Include <unistd.h> and <errno.h>.
49835         (utime_null): Be sure to close `fd' and to preserve errno.
49836         Reported by Geoff Collyer via Arnold Robbins.
49837
49838 2003-11-17  Bruno Haible  <bruno@clisp.org>
49839
49840         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
49841         (Depends-on): Add xsize.
49842
49843 2003-11-17  Bruno Haible  <bruno@clisp.org>
49844
49845         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
49846
49847 2003-11-17  Bruno Haible  <bruno@clisp.org>
49848
49849         * lib/vasnprintf.c (alloca): Remove fallback definition.
49850         (freea): Remove definition.
49851         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
49852         Reported by Paul Eggert.
49853
49854 2003-11-16  Paul Eggert  <eggert@twinsun.com>
49855             Bruno Haible  <bruno@clisp.org>
49856
49857         Protect against address arithmetic overflow.
49858         * lib/printf-args.h: Include stddef.h.
49859         (arguments): Change type of field 'count' to size_t.
49860         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
49861         'unsigned int' where appropriate.
49862         * lib/printf-parse.h: Include sys/types.h.
49863         (char_directive): Change type of *arg_index fields to ssize_t.
49864         (char_directives): Change type of fields 'count', max_*_length to
49865         size_t.
49866         * lib/printf-parse.c: Include sys/types.h and xsize.h.
49867         (SSIZE_MAX): Define fallback value.
49868         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
49869         instead of 'int' where appropriate. Check a_allocated, d_allocated
49870         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
49871         * lib/vasnprintf.c: Include xsize.h.
49872         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
49873         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
49874         overflow. Avoid wraparound when converting a width or precision from
49875         decimal to binary.
49876
49877 2003-11-16  Bruno Haible  <bruno@clisp.org>
49878
49879         Update from GNU gettext.
49880         * lib/printf-parse.c: Generalize to it can be compiled for wide
49881         strings.
49882         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
49883         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
49884         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
49885         SNPRINTF): New macros.
49886         Don't include <alloca.h> if the file is used inside libintl.
49887         (local_wcslen): New function, for Solaris 2.5.1.
49888         (VASNPRINTF): Use it instead of wcslen.
49889
49890 2003-11-16  Bruno Haible  <bruno@clisp.org>
49891
49892         * lib/xsize.h (xmax): New function.
49893         (xsum, xsum3, xsum4): Declare as "pure" functions.
49894
49895 2003-11-12  Paul Eggert  <eggert@twinsun.com>
49896
49897         * modules/xalloc (Files): Undo latest change, since xalloc.h
49898         no longer needs SIZE_MAX or PTRDIFF_MAX.
49899
49900 2003-11-12  Paul Eggert  <eggert@twinsun.com>
49901
49902         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
49903         gl_PTRDIFF_MAX.
49904
49905 2003-11-12  Paul Eggert  <eggert@twinsun.com>
49906
49907         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
49908         "return", to pacify some unknown compiler.  Problem reported
49909         by Joerg Schilling.
49910
49911 2003-11-12  Paul Eggert  <eggert@twinsun.com>
49912
49913         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
49914         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
49915         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
49916         heuristic is just as accurate as far as we know, and it removes a
49917         dependency on size_max.m4 and ptrdiff_max.m4.
49918
49919 2003-11-11  Bruno Haible  <bruno@clisp.org>
49920
49921         * modules/xsize (Files): Add m4/size_max.m4.
49922         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
49923
49924 2003-11-11  Bruno Haible  <bruno@clisp.org>
49925
49926         * m4/size_max.m4: New file.
49927         * m4/ptrdiff_max.m4: New file.
49928         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
49929         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
49930         (gl_XALLOC): Invoke it.
49931
49932 2003-11-11  Bruno Haible  <bruno@clisp.org>
49933
49934         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
49935         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
49936         defined.
49937
49938 2003-11-10  Paul Eggert  <eggert@twinsun.com>
49939
49940         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
49941         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
49942         rejected some allocations of exactly SIZE_MAX - 2 bytes.
49943         From Bruno Haible.
49944         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
49945         not (size_t) -1, since it's defined here.
49946
49947 2003-11-09  Karl Berry  <karl@gnu.org>
49948
49949         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
49950
49951 2003-11-06  Paul Eggert  <eggert@twinsun.com>
49952
49953         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
49954         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
49955         Reject sizes of exactly SIZE_MAX bytes.
49956         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
49957         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
49958
49959 2003-11-05  Bruno Haible  <bruno@clisp.org>
49960
49961         * lib/xsize.h: Include limits.h, to avoid a possible collision with
49962         SIZE_MAX defined in <limits.h> on Solaris.
49963
49964 2003-11-04  Jim Meyering  <jim@meyering.net>
49965
49966         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
49967         variable names, rather than @VAR@.
49968         * modules/poll: Likewise.
49969
49970 2003-11-04  Bruno Haible  <bruno@clisp.org>
49971
49972         * modules/xsize: New file.
49973         * modules/linebreak: Depend on xsize.
49974         * MODULES.html.sh (func_all_modules): Add xsize.
49975
49976 2003-11-04  Bruno Haible  <bruno@clisp.org>
49977
49978         * m4/xsize.m4: New file.
49979
49980 2003-11-04  Bruno Haible  <bruno@clisp.org>
49981
49982         * lib/xsize.h: New file.
49983         * lib/linebreak.c: Include xsize.h.
49984         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
49985         argument for overflow.
49986         Suggested by Paul Eggert.
49987
49988 2003-11-03  Karl Berry  <karl@gnu.org>
49989
49990         * config/config.{guess,sub}: update from config.
49991
49992 2003-11-03  Jim Meyering  <jim@meyering.net>
49993
49994         * modules/userspec (lib_SOURCES): Add userspec.h.
49995         (Include): Add "userspec.h".
49996         Improve description.
49997
49998 2003-11-03  Jim Meyering  <jim@meyering.net>
49999
50000         * lib/userspec.c: Include "userspec.h".
50001         * lib/userspec.h: New file.
50002
50003 2003-11-03  Bruno Haible  <bruno@clisp.org>
50004
50005         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
50006
50007 2003-11-03  Bruno Haible  <bruno@clisp.org>
50008
50009         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
50010         available, to avoid (extremely rare) race condition.
50011         Suggested by Paul Eggert.
50012
50013 2003-11-02  Karl Berry  <karl@gnu.org>
50014
50015         * config/srclist.txt (vasprintf.c): sync broken, sigh.
50016
50017 2003-10-31  Paul Eggert  <eggert@twinsun.com>
50018
50019         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
50020         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
50021         (read_filesystem_list): Set and use me_type_malloced.
50022         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
50023         whatever the type happens to be), for brevity and consistency.
50024         Check for size calculation overflow on Alphas running OSF/1.
50025
50026 2003-10-31  Jim Meyering  <jim@meyering.net>
50027
50028         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
50029
50030         * lib/linebuffer.c: Include <string.h> for declaration of memset.
50031
50032 2003-10-30  Paul Eggert  <eggert@twinsun.com>
50033             Bruno Haible  <bruno@clisp.org>
50034
50035         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
50036         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
50037
50038 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
50039
50040         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
50041         netbsd*-gnu*.  Suggested by Robert Millan.
50042
50043 2003-10-29  Paul Eggert  <eggert@twinsun.com>
50044
50045         * modules/group-member: Depend on stdbool.
50046
50047 2003-10-29  Paul Eggert  <eggert@twinsun.com>
50048
50049         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
50050
50051 2003-10-29  Paul Eggert  <eggert@twinsun.com>
50052
50053         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
50054         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
50055         after the 'gnu' in these cases.  This fixes some bugs in the
50056         previous change, and is based on suggestions by Robert Millan.
50057
50058 2003-10-29  Paul Eggert  <eggert@twinsun.com>
50059
50060         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
50061         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
50062         no longer needed.
50063         * lib/quotearg.c (quotearg_n_options): Use it.
50064         * lib/group-member.c: Include <stdbool.h>.
50065         (free_group_info): Arg is now const *; don't free arg.
50066         (get_group_info): Now returns bool and accepts struct group_info *,
50067         rather than returning a malloc'ed struct group_info *.
50068         All uses changed.  Check for overflow in internal size calculation.
50069
50070         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
50071         rather than xmalloc/xrealloc.
50072         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
50073         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
50074         conformance bug: the old code used a pointer after freeing the
50075         storage that it addressed.
50076         * lib/hash.c (hash_initialize): Simplify the code by using
50077         xalloc_oversized rather than doing it by hand.
50078         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
50079         the buffer preserved.  Use free and xmalloc instead.
50080         * lib/quotearg.c (quotearg_n_options): Likewise.
50081         Use a simpler test for size overflow.  Don't use xalloc_oversized
50082         because unsigned int might be wider than size_t (!); this suggests
50083         that we should switch from unsigned int to size_t for slot numbers.
50084
50085 2003-10-28  Paul Eggert  <eggert@twinsun.com>
50086
50087         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
50088         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
50089         NetBSD kernels.  Requested by Richard Stallman.
50090
50091 2003-10-27  Paul Eggert  <eggert@twinsun.com>
50092
50093         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
50094         to allocate the returned structure.  Do not allocate a subarray,
50095         as x2nrealloc will do that.
50096         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
50097         instead of xnrealloc.
50098         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
50099
50100 2003-10-27  Bruno Haible  <bruno@clisp.org>
50101
50102         * lib/stdbool_.h: Better support for BeOS.
50103
50104 2003-10-26  Paul Eggert  <eggert@twinsun.com>
50105
50106         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
50107         now uses inline.
50108
50109 2003-10-26  Paul Eggert  <eggert@twinsun.com>
50110
50111         * lib/xalloc.h (xalloc_oversized): New static inline function, for
50112         callers that want to do their own size-overflow checking.  Include
50113         <stdbool.h>, since xalloc_oversized returns bool.
50114         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
50115         to use xalloc_oversized.
50116
50117         Add two functions x2realloc, x2nrealloc, for programs that grow
50118         arrays dynamically by doubling their sizes.
50119         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
50120         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
50121         New functions.
50122
50123         Port to C99 semantics for 'inline' of external functions.
50124         Bug reported by Bruno Haible.
50125         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
50126         with the old contents of xnmalloc.
50127         (xnmalloc, xmalloc): Use it.
50128         (xnrealloc_inline): New static inline function,
50129         with the old contents of xnrealloc.
50130         (xnrealloc, xrealloc): Use it.
50131
50132         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
50133         that.
50134
50135 2003-10-26  Karl Berry  <karl@gnu.org>
50136
50137         * config/srclist.txt (COPYING.DOC): no longer available from
50138         /gd/gnuorg; don't know where the ultimate source is.
50139
50140 2003-10-25  Paul Eggert  <eggert@twinsun.com>
50141
50142         Fix several address-calculation bugs in the hash modules,
50143         plus some minor code cleanup.
50144
50145         * lib/hash.h: Include <stdbool.h>, for bool.
50146         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
50147         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
50148         hash_get_n_entries, hash_get_max_bucket_length,
50149         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
50150         hash_rehash): Use size_t rather than unsigned.
50151         * lib/hash.c (struct hash_table, hash_get_n_buckets,
50152         hash_get_n_buckets_used, hash_get_n_entries,
50153         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
50154         hash_get_entries, hash_do_for_each, hash_string, is_prime,
50155         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
50156         Likewise.
50157         (SIZE_MAX): Define if not defined.
50158         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
50159         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
50160         hash_print):
50161         Use const * when possible.
50162         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
50163         (check_tuning): Fix bug: if tuning parameters were very close to
50164         0 or 1, rounding errors could have caused subscript violations.
50165         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
50166         (hash_initialize): Add 'fail:' label
50167         to free table and return NULL, and use it to simplify code.
50168         Use calloc rather than clearing the storage ourself.
50169         (hash_initialize, hash_rehash): Check for arithmetic overflow in
50170         buffer size calculations.
50171         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
50172         Include <stddef.h>, for size_t.
50173         * lib/hash-pjw.c (hash_pjw): Likewise.
50174         Switch to method described by Bruno Haible.
50175         Include <limits.h>, for CHAR_BIT.
50176         (SIZE_BITS): New macro.
50177
50178 2003-10-23  Paul Eggert  <eggert@twinsun.com>
50179
50180         * m4/getline.m4 (AM_FUNC_GETLINE):
50181         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
50182         hosts.  Problem reported by Derek Robert Price in
50183         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
50184         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
50185         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
50186
50187 2003-10-21  Paul Eggert  <eggert@twinsun.com>
50188
50189         * lib/getndelim2.c (getndelim2): When size calculation overflows,
50190         ceiling the allocation at NMAX bytes rather than silently
50191         discarding input bytes before NMAX is reached.  This makes
50192         a difference only if NMAX exceeds SIZE_MAX / 2.
50193
50194         * lib/obstack.c: Merge from glibc.
50195         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
50196         Add libc_hidden_def (_obstack_newchunk).
50197         (_obstack_free) [! defined _LIBC]: Remove.
50198         [defined _LIBC]: Make a strong alias from obstack_free, rather than
50199         a clone of the function body.
50200         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
50201         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
50202
50203         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
50204         glibc.
50205         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
50206         arg to memcpy.
50207
50208         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
50209         (obstack_ptr_grow_fast, obstack_int_grow_fast):
50210         Don't use lvalue casts, as GCC plans to remove support for them
50211         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
50212         was also present in the non-GCC version, indicating that this
50213         code had always been buggy and had never been widely used.
50214         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
50215         Use the fast variant of each macro, rather than copying the
50216         definiens of the fast variant; that way, we'll be more likely to
50217         catch future bugs in the fast variants.
50218
50219 2003-10-20  Bruno Haible  <bruno@clisp.org>
50220
50221         * modules/wait-process: New file.
50222         * MODULES.html.sh (func_all_modules): Add wait-process.
50223
50224 2003-10-20  Bruno Haible  <bruno@clisp.org>
50225
50226         * m4/wait-process.m4: New file.
50227
50228 2003-10-20  Bruno Haible  <bruno@clisp.org>
50229
50230         * lib/wait-process.h: New file, from GNU gettext.
50231         * lib/wait-process.c: New file, from GNU gettext.
50232
50233 2003-10-19  Jim Meyering  <jim@meyering.net>
50234
50235         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
50236         HPUX 10.20.
50237
50238 2003-10-18  Karl Berry  <karl@gnu.org>
50239
50240         * config/config.guess: update from config.
50241
50242 2003-10-16  Paul Eggert  <eggert@twinsun.com>
50243
50244         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
50245         (getgroups): First arg is int, not size_t.
50246         Don't let 'free' mangle errno.
50247
50248 2003-10-16  Paul Eggert  <eggert@twinsun.com>
50249
50250         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
50251
50252 2003-10-16  Karl Berry  <karl@gnu.org>
50253
50254         * config/config.{guess,sub}: update from config.
50255
50256 2003-10-16  Jim Meyering  <jim@meyering.net>
50257
50258         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
50259         memcpy.
50260
50261 2003-10-15  Paul Eggert  <eggert@twinsun.com>
50262
50263         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
50264         (SIZE_MAX): Remove.
50265         (new_exclude, add_exclude_file): Initial size no longer needs to
50266         be a power of 2.
50267         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
50268         our own address arithmetic overflow checking.
50269
50270         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
50271         (fnmatch): Do not alloca more than 2000 wide characters;
50272         instead, use malloc for large buffers.
50273         Check for address arithmetic overflow, and return -1
50274         with errno set to ENOMEM in that case.
50275         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
50276         (NEW_PATTERN): Do not alloca more than 8000 bytes;
50277         instead, return -1.  Check for address arithmetic overflow.
50278
50279 2003-10-14  Paul Eggert  <eggert@twinsun.com>
50280
50281         Handle invalid suffixes and overflow independently, so that
50282         callers can treat them independently as needed.  Fix some bugs in
50283         suffix handling, e.g., "100k@" was not diagnosed as an invalid
50284         suffix for a human-readable blocksize.  The major caller-visible
50285         change is the addition of a new
50286         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
50287         that both overflow and suffix chars were found.
50288
50289         * lib/human.c (humblock): Don't check separately for invalid suffix
50290         char; that is xstrtoumax's job (now that its bug is fixed).
50291         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
50292         INTMAX_MAX]: New macros.
50293         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
50294         TYPE_MAXIMUM): New macros.
50295         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
50296         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
50297         if overflow occurs, as it's what __strtol does and it's more useful
50298         in practice.
50299         (__xstrtol): If __strtol reports some error other than ERANGE,
50300         reflect it to the caller as LONGINT_INVALID.  If it reports
50301         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
50302         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
50303         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
50304         value.
50305         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
50306         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
50307         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
50308         [defined UINTMAX_MAX]: New macros.
50309
50310 2003-10-14  Bruno Haible  <bruno@clisp.org>
50311
50312         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
50313
50314 2003-10-14  Bruno Haible  <bruno@clisp.org>
50315
50316         * m4/sig_atomic_t: New file, from GNU gettext.
50317         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
50318
50319 2003-10-14  Bruno Haible  <bruno@clisp.org>
50320
50321         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
50322         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
50323         Also use volatile where needed.
50324
50325 2003-10-12  Paul Eggert  <eggert@twinsun.com>
50326
50327         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
50328         Change maintainer from Bruno Haible to 'all'.
50329
50330 2003-10-12  Paul Eggert  <eggert@twinsun.com>
50331
50332         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
50333
50334 2003-10-12  Paul Eggert  <eggert@twinsun.com>
50335
50336         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
50337         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
50338         and define in terms of the other primitives.
50339         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
50340         (SIZE_MAX): Define if not already defined.
50341         (array_size_overflow): New function.
50342         (xalloc_die): Abort instead of exiting if 'error' returns.
50343         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
50344         (xmalloc, xrealloc): Use them.
50345         (xcalloc): Check for address arithmetic overflow.
50346         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
50347         a bit faster than strcpy.
50348
50349 2003-10-10  Simon Josefsson  <jas@extundo.com>
50350
50351         * modules/argp (Depends-on): Add restrict and strcase.
50352
50353 2003-10-10  Simon Josefsson  <jas@extundo.com>
50354
50355         * m4/argp.m4: Add AC_C_INLINE.
50356
50357 2003-10-08  Paul Eggert  <eggert@twinsun.com>
50358
50359         Merge getpass from libc, plus a few fixes.
50360
50361         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
50362         Include <stdbool.h>.
50363         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
50364         __fsetlocking to empty.
50365         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
50366         do include <bits/libc-lock.h>.
50367         Do not include <fcntl.h>; not needed.
50368         [_LIBC]: Include <wchar.h>.
50369         (NOTCANCEL_MODE): New macro.
50370         (flockfile, funlockfile) [_LIBC]: New macros.
50371         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
50372         [!_LIBC]: New macros.
50373         (call_fclose): New function.
50374         (getpass): Use it.  Save tty stream separately; this simplifies the
50375         code and makes it more reliable if stdin happens to equal stdout.
50376         Invoke __fsetlocking on tty.
50377         Handle thread cancellation if needed.
50378         Namespace cleanup (use __tcgetattr, __getline).
50379         Use bool for Booleans.
50380         [USE_IN_LIBIO]: Handle wide streams.
50381         [!_LIBC]: Unconditionally do the fseek, since we don't know what
50382         stream might go where.
50383
50384         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
50385         doesn't have to include <stdio.h> before us.
50386         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
50387         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
50388         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
50389         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
50390         if not declared, so that we can use getpass.c code from libc without
50391         rewriting it.
50392         (flockfile, ftrylockfile, funlockfile): New macros.
50393
50394 2003-10-08  Paul Eggert  <eggert@twinsun.com>
50395
50396         * modules/getpass: Depend on stdbool.
50397
50398 2003-10-08  Paul Eggert  <eggert@twinsun.com>
50399
50400         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
50401
50402 2003-10-07  Karl Berry  <karl@gnu.org>
50403
50404         * config/config.{guess,sub}: update from config.
50405
50406 2003-10-06  Jim Meyering  <jim@meyering.net>
50407             Bruno Haible  <bruno@clisp.org>
50408
50409         This lets translators provide better translations for the
50410         "Written by ..." part of --version output.
50411         * lib/version-etc.h: Include stdarg.h.
50412         (version_etc_copyright): Declare as readonly.
50413         (version_etc): Make this function variadic with a NULL-terminated list
50414         of author name strings.
50415         (version_etc_va): New declaration.
50416         * lib/version-etc.c: Include stdarg.h, stdlib.h.
50417         (version_etc_copyright): Declare as readonly.
50418         (version_etc_va): New function. Provide a different translatable string
50419         for each possible number of authors < 10. Abbreviate when there are 10
50420         authors or more.
50421         (version_etc): Make this function variadic. Call version_etc_va.
50422         Suggestion from Gary V. Vaughan.
50423
50424         * lib/long-options.h (parse_long_options): Change prototype: the
50425         authors string is moved to the end and becomes variadic.
50426         * lib/long-options.c: Include stdarg.h.
50427         (parse_long_options): Make this function variadic, too.
50428         Call version_etc_va, not version_etc.
50429
50430 2003-10-06  Bruno Haible  <bruno@clisp.org>
50431
50432         * modules/version-etc-2: Remove file.
50433         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
50434
50435 2003-10-06  Bruno Haible  <bruno@clisp.org>
50436
50437         * modules/fatal-signal: New file.
50438         * MODULES.html.sh (func_all_modules): Add fatal-signal.
50439
50440 2003-10-06  Bruno Haible  <bruno@clisp.org>
50441
50442         * m4/fatal-signal.m4: New file.
50443         * m4/signalblocking.m4: New file, from GNU gettext.
50444
50445 2003-10-06  Bruno Haible  <bruno@clisp.org>
50446
50447         * lib/version-etc-2.h: Remove file.
50448         * lib/version-etc-2.c: Remove file.
50449
50450 2003-10-06  Bruno Haible  <bruno@clisp.org>
50451
50452         * lib/fatal-signal.h: New file, from GNU gettext.
50453         * lib/fatal-signal.c: New file, from GNU gettext.
50454
50455 2003-10-05  Paul Eggert  <eggert@twinsun.com>
50456
50457         * README: Rework advice for preventing empty .o files.
50458         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
50459         not <sys/types.h>.
50460
50461 2003-10-04  Karl Berry  <karl@gnu.org>
50462
50463         * lib/argp*: update from libc.
50464
50465 2003-10-04  Karl Berry  <karl@gnu.org>
50466
50467         * config/config.{guess,sub}: update from config.
50468
50469 2003-10-02  Bruno Haible  <bruno@clisp.org>
50470
50471         * modules/lchown (Include): Add lchown.h.
50472         * modules/time_r (Include): Use "..." syntax.
50473         * modules/xgetdomainname (Include): Add xgetdomainname.h.
50474
50475 2003-10-01  Simon Josefsson  <jas@extundo.com>
50476
50477         * MODULES.html.sh (func_all_modules): Move gethostname from section
50478         'based on' to section 'lacking' POSIX:2001.
50479
50480 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
50481
50482         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
50483         to output mode on the same stream.
50484
50485 2003-09-29  Paul Eggert  <eggert@twinsun.com>
50486
50487         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
50488         Fix arg typo in previous patch.
50489
50490 2003-09-28  Jim Meyering  <jim@meyering.net>
50491
50492         * lib/error.c: Correct cpp indentation.
50493
50494 2003-09-27  Paul Eggert  <eggert@twinsun.com>
50495
50496         * modules/free: New file.
50497
50498 2003-09-27  Paul Eggert  <eggert@twinsun.com>
50499
50500         * m4/free.m4: New file.
50501
50502 2003-09-27  Paul Eggert  <eggert@twinsun.com>
50503
50504         * lib/minmax.h (MIN, MAX)
50505         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
50506         Omit the special code that used __typeof__, since we worry that
50507         it could be more trouble than it's worth.  See:
50508         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
50509         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
50510
50511         * lib/free.c: New file.
50512
50513 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
50514
50515         Trivial fixes to Makefile.am parts of module listings.
50516         * modules/strstr: Append strstr.h to lib_SOURCES.
50517         * modules/strcase: Likewise, for strcase.h.
50518
50519 2003-09-27  Karl Berry  <karl@gnu.org>
50520
50521         * config/mkinstalldirs: update from automake.
50522
50523 2003-09-26  Paul Eggert  <eggert@twinsun.com>
50524
50525         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
50526         (error_tail): Do not loop, reallocating temporary buffer, since
50527         the output cannot contain more wide characters than the input
50528         contains bytes, the size must be big enough already.  This avoids
50529         one potential size overflow calculation.  Check for size overflow
50530         when calculating temporary buffer size.  Free temporary buffer
50531         when done, if it was allocated with malloc; this plugs a memory
50532         leak.  Remove casts from void * to pointers, that are no longer
50533         needed now that we're assuming C89 or better.
50534
50535         Merge error changes from glibc.
50536
50537         * lib/error.c, error.h: Update copyright notice header to match glibc.
50538         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
50539         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
50540         Disable cancellation while printing error.
50541         * lib/error.h: Prepend __ to parameter names.
50542
50543 2003-09-26  Jim Meyering  <jim@meyering.net>
50544
50545         * lib/error.c (error_tail): Move some declarations
50546         into inner scope where the local variables are used.
50547
50548 2003-09-26  Bruno Haible  <bruno@clisp.org>
50549
50550         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
50551         stpncpy().
50552         Don't define stpncpy through config.h; it's now done through stpncpy.h.
50553
50554 2003-09-26  Bruno Haible  <bruno@clisp.org>
50555
50556         * lib/stpncpy.h (gnu_stpncpy): New declaration.
50557         (stpncpy): Define as alias for gnu_stpncpy.
50558         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
50559
50560 2003-09-25  Simon Josefsson  <jas@extundo.com>
50561
50562         * lib/xgetdomainname.h: New file.
50563         * lib/xgetdomainname.c: New file.
50564
50565 2003-09-25  Simon Josefsson  <jas@extundo.com>
50566             Bruno Haible  <bruno@clisp.org>
50567
50568         * modules/getdomainname: New file.
50569         * modules/xgetdomainname: New file.
50570         * MODULES.html.sh (func_all_modules): Add getdomainname,
50571         xgetdomainname.
50572
50573 2003-09-25  Simon Josefsson  <jas@extundo.com>
50574             Bruno Haible  <bruno@clisp.org>
50575
50576         * m4/getdomainname.m4: New file.
50577
50578 2003-09-25  Simon Josefsson  <jas@extundo.com>
50579             Bruno Haible  <bruno@clisp.org>
50580
50581         * lib/getdomainname.h: New file.
50582         * lib/getdomainname.c: New file.
50583
50584 2003-09-25  Karl Berry  <karl@gnu.org>
50585
50586         * lib/argp-fmtstream.c, argp-help.c: update from libc.
50587
50588 2003-09-25  Karl Berry  <karl@gnu.org>
50589
50590         * config/install-sh: update from automake.
50591
50592 2003-09-25  Bruno Haible  <bruno@clisp.org>
50593
50594         * modules/version-etc-2: New file, from modules/version-etc with
50595         modifications.
50596         * MODULES.html.sh (func_all_modules): Add version-etc-2.
50597
50598 2003-09-25  Bruno Haible  <bruno@clisp.org>
50599
50600         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
50601         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
50602
50603 2003-09-24  Simon Josefsson  <jas@extundo.com>
50604
50605         * modules/xgethostname: Add xgethostname.h.
50606
50607 2003-09-24  Paul Eggert  <eggert@twinsun.com>
50608
50609         * lib/linebuffer.c (freebuffer): Don't free the argument, just
50610         the buffer associated with the argument.  Bug reported by
50611         Simon Josefsson.
50612
50613 2003-09-24  Paul Eggert  <eggert@twinsun.com>
50614
50615         * README: Document assumptions that 'int' is at least 32 bits
50616         wide, that integer arithmetic is 2's complement without overflow,
50617         that there are no holes in integer values, that adding sizes of
50618         two nonoverlapping objects can't overflow, and that all-bits-zero
50619         yields scalar zero.  Fix spelling and capitalization typos.
50620
50621 2003-09-19  Karl Berry  <karl@gnu.org>
50622
50623         * lib/argp.h: update from libc.
50624
50625 2003-09-17  Paul Eggert  <eggert@twinsun.com>
50626
50627         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
50628         to avoid spurious warnings like "AC_RUN_IFELSE was called before
50629         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
50630
50631 2003-09-17  Paul Eggert  <eggert@twinsun.com>
50632
50633         * gnulib-tool: Use "test -h", not "test -L", for portability
50634         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
50635         (tags_regexp): Remove, since \| doesn't conform to POSIX.
50636         (sed_extract_prog): Issue s commands one-by-one, rather than
50637         using \| in one s command.
50638
50639 2003-09-16  Paul Eggert  <eggert@twinsun.com>
50640
50641         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
50642         input error, instead of returning NULL the next time we are called
50643         (and therefore losing track of errno).
50644
50645 2003-09-16  Bruno Haible  <bruno@clisp.org>
50646
50647         * gnulib-tool (func_create_testdir): Warn about duplicated
50648         dependencies.
50649
50650 2003-09-15  Paul Eggert  <eggert@twinsun.com>
50651
50652         * modules/argmatch, modules/fatal, modules/obstack,
50653         modules/xalloc, modules/xgethostname: Sort dependencies by
50654         importance, not alphabetically.
50655
50656 2003-09-15  Paul Eggert  <eggert@twinsun.com>
50657
50658         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
50659         fails, so that the caller gets the proper errno.
50660
50661         * lib/readutmp.c (read_utmp): Likewise.
50662         Check for fstat error.  Close stream and free storage
50663         when failing.
50664
50665 2003-09-14  Karl Berry  <karl@gnu.org>
50666
50667         * config/srclist.txt (strdup.c): disable for c89 changes.
50668
50669 2003-09-14  Jim Meyering  <jim@meyering.net>
50670
50671         * lib/getloadavg.c: Correct cpp indentation.
50672         * lib/strdup.c: Likewise.
50673         * lib/vasnprintf.c: Likewise.
50674
50675 2003-09-14  Bruno Haible  <bruno@clisp.org>
50676
50677         * modules/fwriteerror: New file.
50678         * MODULES.html.sh (func_all_modules): Add fwriteerror.
50679
50680 2003-09-14  Bruno Haible  <bruno@clisp.org>
50681
50682         * lib/fwriteerror.h: New file.
50683         * lib/fwriteerror.c: New file.
50684
50685 2003-09-12  Paul Eggert  <eggert@twinsun.com>
50686
50687         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
50688         modules/xgethostname, modules/xalloc: Depend on exit.
50689
50690 2003-09-12  Paul Eggert  <eggert@twinsun.com>
50691
50692         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
50693
50694         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
50695         and AC_MINIX, too, so that their extensions are available.
50696
50697         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
50698         This macro has been superseded by gl_BACKUPFILE.
50699
50700         More patches to assume C89 or better.
50701
50702         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
50703
50704         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
50705         unconditionally.
50706         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
50707         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
50708         Include <string.h>, <stdlib.h> unconditionally.
50709         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
50710         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
50711         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
50712         headers or for string.h.
50713         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
50714         or strtoul.
50715
50716         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
50717         headers.
50718         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
50719         * m4/userspec.m4 (gl_USERSPEC): Likewise.
50720         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
50721         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
50722         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
50723         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
50724         memcpy, memset.
50725         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
50726         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
50727         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
50728         strtol.
50729         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
50730         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
50731         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
50732         strtoul.
50733
50734 2003-09-12  Paul Eggert  <eggert@twinsun.com>
50735
50736         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
50737         * lib/obstack.c [!defined _LIBC]: Likewise.
50738         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
50739         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
50740         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
50741
50742         More changes to assume C89 or better.
50743
50744         * lib/error.c (error_tail): Assume vprintf.
50745
50746         * lib/argmatch.c (getenv): Remove decl.
50747         * lib/progreloc.c (get_full_program_name): Define via prototype.
50748         * lib/setenv.c (clearenv): Likewise.
50749         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
50750         needed.
50751         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
50752         (malloc, memcpy): Remove decls.
50753         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
50754         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
50755         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
50756         (memcpy): Remove macro.
50757         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
50758         (__P): Remove.  All uses removed.
50759         (PTR): Remove.  All uses changed to void *.
50760         (CHAR_BIT, NULL): Remove.
50761         (spaces, zeros, memset_space, memset_zero)
50762         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
50763         Remove.
50764         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
50765         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
50766         Define with prototype.
50767         Remove now-unnecessary prototype decl.
50768         (extra_args_spec): Assume ANSI C.  All uses changed.
50769         (extra_args_spec_iso): Remove.
50770         (my_strftime, emacs_strftimeu): Define via prototype.
50771         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
50772         unconditionally.
50773         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
50774         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
50775         (strtoul, strtol): Remove decls.
50776         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
50777         LONG_MAX): Remove.
50778         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
50779         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
50780         (LOCALE_PARAM_PROTO): New macro.
50781         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
50782         (INTERNAL (strtol), strtol): Define with a prototype.
50783         (PARAMS): Remove.  All uses removed.
50784         * lib/tempname.c: Include <string.h> unconditionally.
50785         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
50786         * lib/xgethostname.c (main): Define with a prototype.
50787         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
50788         Include <stdlib.h> unconditionally.
50789         (calloc, malloc, realloc, free): Remove decls.
50790         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
50791         Include <stdlib.h> unconditionally.  Sort include file names.
50792         (strtod): Remove.
50793         (xstrtod): Define with a prototype.
50794         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
50795         (strtol, strtoul): Remove decls.
50796
50797 2003-09-11  Paul Eggert  <eggert@twinsun.com>
50798
50799         More patches to assume C89 or better.
50800         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
50801         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
50802         string.h, memchr, STDC_HEADERS.
50803
50804 2003-09-11  Paul Eggert  <eggert@twinsun.com>
50805
50806         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
50807         Include <stdlib.h>, <string.h> unconditionally.
50808         Remove now-unnecessary cast to char *.
50809         * lib/strnlen.c: Include <string.h> unconditionally.
50810         * lib/yesno.c (yesno): Define with a prototype.
50811
50812 2003-09-11  Bruno Haible  <bruno@clisp.org>
50813
50814         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
50815
50816 2003-09-10  Jim Meyering  <jim@meyering.net>
50817
50818         * lib/error.c: Correct indentation of cpp directives.
50819
50820 2003-09-10  Bruno Haible  <bruno@clisp.org>
50821
50822         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
50823         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
50824         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
50825         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
50826         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
50827         <stdlib.h> and <string.h> checks.
50828         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
50829         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
50830
50831 2003-09-10  Bruno Haible  <bruno@clisp.org>
50832
50833         * lib/strcspn.c: Include <string.h> unconditionally.
50834         * lib/strpbrk.c: Include <string.h> unconditionally.
50835         * lib/strstr.c: Include <string.h> unconditionally.
50836         * lib/unicodeio.c: Include <string.h> unconditionally.
50837         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
50838         * lib/unsetenv.c: Likewise.
50839         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
50840         * lib/yesno.c: Include <stdlib.h> unconditionally.
50841         (rpmatch): Add prototype.
50842
50843 2003-09-09  Paul Eggert  <eggert@twinsun.com>
50844
50845         More patches to assume C89 or better.
50846         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
50847         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
50848         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
50849         or for string.h.
50850         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
50851         stdlib.h.
50852         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
50853         C headers.
50854         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
50855         string.h.
50856         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
50857         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
50858         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
50859         or for string.h.
50860         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
50861         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
50862         C headers.
50863         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
50864         memcpy.
50865         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
50866         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
50867         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
50868         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
50869         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
50870         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
50871         string.h, free.
50872         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
50873         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
50874         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
50875         C headers, or for string.h.
50876         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
50877         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
50878         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
50879         headers, memory.h, stdlib.h, string.h, strings.h.
50880         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
50881         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
50882         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
50883         strchr.
50884         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
50885         headers, memory.h, string.h.
50886         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
50887         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
50888         free.
50889         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
50890         headers.
50891         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
50892         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
50893         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
50894         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
50895         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
50896
50897 2003-09-09  Paul Eggert  <eggert@twinsun.com>
50898
50899         More K&R removal.
50900
50901         * lib/acosl.c (main): Use a prototype.
50902         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
50903         tanl.c: Likewise.
50904
50905         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
50906
50907         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
50908         (getopt, etopt_long, getopt_long_only, _getopt_internal)
50909         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
50910         with a prototype.
50911         * lib/getopt.c (const): Remove macro.
50912         Include <string.h> unconditionally.
50913         (my_index): Remove; all uses changed to strchr.
50914         (strlen): Remove decl.
50915         (exchange): Remove forward decl; no longer needed.
50916         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
50917         Define with prototype.
50918         * lib/getopt1.c (const): Remove macro.
50919         (getopt_long, getopt_long_only, main): Define with prototype.
50920
50921         * lib/getugroups.c: Include <string.h> unconditionally.
50922
50923         * lib/getusershell.c: Include <stdlib.h> unconditionally.
50924         (getusershell, setusershell, endusershell, readname, main):
50925         Define with prototypes.
50926
50927         * lib/group-member.c: Include group-member.h first.
50928         Include <stdlib.h> unconditionally.
50929
50930         * lib/hard-locale.c: Include hard-locale.h first.
50931         Include <stdlib.h>, <string.h> unconditionally.
50932
50933         * lib/hash.c (free, malloc): Remove decls.
50934         Include <stdlib.h> unconditionally.
50935
50936         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
50937         (getenv): Do not declare.
50938
50939         * lib/idcache.c: Include <string.h> unconditionally.
50940
50941         * lib/long-options.c: Include long-options.h first, to test interface.
50942         Include <stdlib.h> unconditionally.
50943
50944         * lib/makepath.c: Include makepath.h first, to test interface.
50945         Include <stdlib.h> and <string.h> unconditionally.
50946
50947         * lib/linebuffer.c: Include <stdlib.h>.
50948         (free): Remove decl.
50949
50950         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
50951         stddef.h. rpl_malloc returns void *, not char *.
50952         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
50953         prototype.
50954
50955         * lib/md5.h: Include <limits.h> unconditionally.
50956         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
50957         (__P): Remove; all uses removed.
50958         * lib/md5.c: Include "md5.h" first.
50959         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
50960         md5_buffer, md5_process_bytes, md5_process_block):
50961         Define with prototypes.
50962         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
50963         * lib/sha.c: Include "sha.h" first.
50964         Include <stdlib.h>, <string.h> unconditionally.
50965
50966         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
50967         * lib/memcmp.c (__ptr_t): Likewise.
50968         * lib/memrchr.c (__ptr_t): Likewise.
50969         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
50970         Include <string.h> unconditionally.
50971         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
50972         * lib/memchr.c: Include <stdlib.h> unconditionally.
50973         * lib/memchr.c (LONG_MAX): Remove.
50974         * lib/memrchr.c (LONG_MAX): Likewise.
50975         * lib/memchr.c (__memchr): Define via a prototype.
50976         * lib/memrchr.c (__memrchr): Likewise.
50977         * lib/memcmp.c (__P): Remove, and remove all uses.
50978         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
50979         Remove forward decls; no longer needed.
50980         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
50981         Use types required by C89 in prototype.
50982
50983         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
50984         * lib/savedir.c: Likewise.
50985         * lib/mkdir.c (free): Remove decl.
50986         * lib/rmdir.c (rmdir): Define with a prototype.
50987         * lib/savedir.c: Include savedir.h first, to test interface.
50988
50989         * lib/mktime.c (STDC_HEADERS): Remove.
50990         Include <stdlib.h>, <string.h> unconditionally.
50991
50992         * lib/modechange.c: Include <stdlib.h> unconditionally.
50993         (malloc): Remove decl.
50994
50995         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
50996         (free): Remove decl.
50997
50998         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
50999         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
51000         (This type really should be intptr_t, but that's a C99ism.)
51001         (_obstack_memcpy): Remove: all uses changed to memcpy.
51002         Include <string.h> unconditionally.
51003         (struct obstack): Assume __STDC__ for types of members
51004         chunkfun, freefun, extra_arg.
51005         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
51006         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
51007         obstack_begin, obstack_specify_allocation,
51008         obstack_specify_allocation_with_arg, obstack_chunkfun,
51009         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
51010         Remove unprototyped decls and the macros that use them.
51011         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
51012         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
51013         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
51014         (defined __STDC__ && __STDC__)]:
51015         Remove nonprototyped code.
51016         Include <stdlib.h> unconditionally.
51017         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
51018         _obstack_allocated_p, _obstack_free, obstack_free,
51019         _obstack_memory_used, print_and_abort):
51020         Define using prototypes.
51021         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
51022         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
51023         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
51024         obstack_next_free, obstack_object_size, obstack_room) [0]:
51025         Remove unused, unprototyped code.
51026
51027         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
51028
51029         * lib/physmem.c (physmem_total, physmem_available, main): Define
51030         with prototypes.
51031
51032         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
51033         (main): Define with a prototype.
51034
51035         * lib/posixver.c (getenv): Remove decl.
51036
51037         * lib/putenv.c (malloc): Returns void *, not char *.
51038         Include <string.h> unconditionally.
51039         (strchr, memcpy, NULL): Do not define.
51040
51041         * lib/readtokens.c: Include readtokens.h first, to test interface.
51042         Include <stdlib.h>, <string.h> unconditionally.
51043         (init_tokenbuffer): Define with a prototype.
51044
51045         * lib/regex.c (PARAMS): Remove.  All uses removed.
51046         All uses of _RE_ARGS removed, too.
51047         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
51048         unconditionally.
51049         (bzero): Assume memset exists.
51050         (memcmp, memcpy, NULL): Remove.
51051         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
51052         char, or assignments to local vars of type signed char.
51053         (init_syntax_once, PREFIX(extract_number_and_incr),
51054         PREFIX(print_partial_compiled_pattern),
51055         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
51056         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
51057         PREFIX(regex_grow_registers), PREFIX(regex_compile),
51058         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
51059         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
51060         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
51061         wcs_compile_range, byte_compile_range, truncate_wchar,
51062         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
51063         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
51064         count_mbs_length, wcs_re_match_2_internal,
51065         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
51066         PREFIX(alt_match_null_string_p),
51067         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
51068         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
51069         regfree, PREFIX(extract_number)): Define with prototype.  Remove
51070         now-unnecessary declaration, if any.
51071         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
51072         regcomp, regexec):
51073         Remove now-unnecessary casts among pointer types.
51074         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
51075
51076         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
51077         (free): Remove decl.
51078
51079         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
51080
51081         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
51082         (free): Remove decl.
51083
51084         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
51085         * lib/xgetcwd.c: Likewise.
51086
51087         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
51088         (free): Remove decl.
51089
51090         * lib/strchrnul.c (strchrnul): Define with a prototype.
51091         Fix bug: c_in was not converted to char before searching.
51092
51093         The following changes are not K&R related:
51094
51095         * lib/group-member.h: Include <sys/types.h>, so that this file is
51096         self-contained.
51097         * lib/makepath.h: Likewise.
51098
51099         * lib/getusershell.c (readname, default_index, line_size, readname):
51100         Use size_t, not int, for sizes.
51101         (readname): If the size overflows, report an error instead of
51102         looping forever.
51103
51104 2003-09-09  Paul Eggert  <eggert@twinsun.com>
51105
51106         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
51107         libc.
51108
51109 2003-09-09  Paul Eggert  <eggert@twinsun.com>
51110
51111         * README: New section: portability guidelines.
51112
51113 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
51114
51115         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
51116         C89 spec.
51117
51118 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
51119
51120         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
51121
51122 2003-09-08  Paul Eggert  <eggert@twinsun.com>
51123
51124         Assume C89 or better; remove K&R cruft.
51125         A few of these changes were first proposed by Derek Robert Price
51126         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
51127
51128         * lib/addext.c: Include <string.h> unconditionally.
51129         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
51130         Don't declare getenv or malloc.
51131
51132         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
51133         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
51134         (NULL): Remove.
51135         (find_stack_direction, alloca): Use prototypes.
51136
51137         * lib/atexit.c (atexit): Define using a prototype.
51138
51139         * lib/basename.c, dirname.c, stripslash.c:
51140         Include <string.h> unconditionally.
51141
51142         * lib/bcopy.c: Include <stddef.h>.
51143         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
51144
51145         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
51146
51147         * lib/error.h (error, error_at_line, error_print_progname)
51148         [! (defined (__STDC__) && __STDC__)]: Remove decls.
51149         * lib/error.c: Include error.h first, to check interface.
51150         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
51151         (VA_START): Remove; all uses changeed to va_start.
51152         (exit, strerror): Remove decls.
51153         (error_print_progname): Prototype uncondionally.
51154         Don't include <errno.h>; no longer needed.
51155         (private_strerror): Remove.
51156         (error_tail): Always define.
51157         (error, error_at_line): Assume C89 or better; always use prototypes.
51158         * lib/fatal.c: Include "fatal.h" first, to test interface.
51159         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
51160         (VA_START): Remove; all uses changed to va_start.
51161         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
51162         this case.
51163         (exit): Remove decl.
51164         (fatal): Prototype unconditionally.  Assume va_start works.
51165         Abort at end, to pacify gcc.
51166
51167         * lib/euidaccess.c (main): Define with a prototype.
51168
51169         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
51170
51171         * lib/exitfail.c: Include <stdlib.h> unconditionally.
51172
51173         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
51174         prototypes.
51175         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
51176         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
51177         (getenv): Remove decl.
51178         (fnmatch): Define using a prototype.
51179         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
51180         (FCT): Define using a prototype.
51181
51182         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
51183
51184         * lib/gethostname.c: Include <stddef.h>.
51185         (gethostname): Define with prototype.  Length is size_t, not int.
51186
51187 2003-09-08  Paul Eggert  <eggert@twinsun.com>
51188
51189         Assume C89 or better; remove K&R cruft.
51190         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
51191         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
51192         string.h, getenv, malloc.
51193         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
51194         headers.
51195         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
51196         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
51197         do not check for strerror.
51198         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
51199         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
51200         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
51201         do not check for doprnt or vprintf.
51202         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
51203         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
51204
51205 2003-09-08  Paul Eggert  <eggert@twinsun.com>
51206
51207         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
51208         getversion.c should have been removed then, but was accidentally
51209         preserved.
51210
51211         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
51212         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
51213
51214 2003-09-08  Karl Berry  <karl@gnu.org>
51215
51216         * config/config.sub, config.guess, srclistvars.sh: update from savannah
51217                 config, forget about prep.
51218
51219         * config/depcomp, missing: update from automake.
51220
51221 2003-09-07  Paul Eggert  <eggert@twinsun.com>
51222
51223         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
51224         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
51225
51226 2003-09-07  Paul Eggert  <eggert@twinsun.com>
51227
51228         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
51229         copy_tm_result.  Bug reported by Simon Josefsson in
51230         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
51231
51232 2003-09-06  Paul Eggert  <eggert@twinsun.com>
51233
51234         * m4/time_r.m4: New file.
51235         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
51236         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
51237         is. Check for timegm declaration.
51238         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
51239         Do not check for gmtime_r.
51240         Replace mktime if __mktime_internal does not exist and if mktime
51241         hasn't been replaced already.
51242
51243 2003-09-06  Paul Eggert  <eggert@twinsun.com>
51244
51245         * lib/time_r.c, lib/time_r.h: New files.
51246
51247         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
51248         __localtime_r.
51249         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
51250         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
51251
51252         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
51253         __gmtime_r.
51254         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
51255         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
51256         Include <time_r.h>.
51257
51258         * lib/timegm.c: Switch to glibc implementation, with the following
51259         changes:
51260         [defined HAVE_CONFIG_H]: Include <config.h>.
51261         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
51262         (__mktime_internal) [!defined _LIBC]: New decl.
51263         (__gmtime_r) [!defined _LIBC]: New macro and function.
51264         (timegm): Use a prototype, since gnulib assumes C89.
51265         Do not bother declaring tmp to be const, as it's not really usefu.
51266         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
51267         (timegm): Declare only if HAVE_DECL_TIMEGM.
51268
51269 2003-09-06  Paul Eggert  <eggert@twinsun.com>
51270
51271         * MODULES.html.sh (func_all_modules): Add time_r.
51272         * modules/time_r: New file.
51273         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
51274         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
51275
51276 2003-09-03  Paul Eggert  <eggert@twinsun.com>
51277
51278         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
51279         Bug reported by Lute Kamstra in
51280         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
51281
51282         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
51283         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
51284         course with correspondingly smaller numbers for tomorrow and
51285         yesterday.  From Tadayoshi Funaba.  Originally installed into
51286         sh-utils on 1999-08-07, but the patch got lost (I guess during the
51287         coreutils merge?).
51288
51289 2003-08-31  Simon Josefsson  <jas@extundo.com>
51290
51291         * modules/timegm: New file.
51292         * MODULES.html.sh (func_all_modules): Add timegm.
51293
51294 2003-08-31  Simon Josefsson  <jas@extundo.com>
51295
51296         * m4/timegm.m4: New file.
51297
51298 2003-08-31  Simon Josefsson  <jas@extundo.com>
51299
51300         * lib/timegm.h: New file.
51301         * lib/timegm.c: New file.  Based on
51302         wget-1.8.2/src/http.c:mktime_from_utc.
51303
51304 2003-08-31  Karl Berry  <karl@gnu.org>
51305
51306         * lib/argp.h: update from libc.
51307
51308 2003-08-28  Bruno Haible  <bruno@clisp.org>
51309
51310         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
51311         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
51312         followed by '#define fnmatch fnmatch_posix' gives an error.
51313
51314 2003-08-28  Bruno Haible  <bruno@clisp.org>
51315
51316         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
51317         warning on QNX, which defines O_BINARY to 000000.
51318
51319 2003-08-27  Jim Meyering  <jim@meyering.net>
51320
51321         * m4/mkstemp.m4: Require that the system mkstemp be able to create
51322         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
51323         would fail after 32.  Reported by Danny Levinson.  Details here:
51324         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
51325
51326 2003-08-24  Bruno Haible  <bruno@clisp.org>
51327
51328         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
51329         MSVC7 <stdio.h> is included later.
51330
51331 2003-08-22  Simon Josefsson  <jas@extundo.com>
51332
51333         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
51334
51335 2003-08-20  Karl Berry  <karl@gnu.org>
51336
51337         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
51338
51339 2003-08-20  Bruno Haible  <bruno@clisp.org>
51340
51341         * modules/progname: New file.
51342         * MODULES.html.sh (func_all_modules): Add progname.
51343
51344 2003-08-20  Bruno Haible  <bruno@clisp.org>
51345
51346         * lib/progname.h: New file, from GNU gettext.
51347         * lib/progname.c: New file, from GNU gettext.
51348         * lib/progreloc.c: New file, from GNU gettext.
51349
51350 2003-08-19  Jim Meyering  <jim@meyering.net>
51351
51352         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
51353         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
51354
51355 2003-08-19  Bruno Haible  <bruno@clisp.org>
51356
51357         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
51358         more.
51359
51360 2003-08-19  Bruno Haible  <bruno@clisp.org>
51361
51362         * lib/xstrdup.c: Assume <string.h> exists.
51363
51364 2003-08-18  Paul Eggert  <eggert@twinsun.com>
51365
51366         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
51367         in makefile rules.
51368
51369 2003-08-18  Jim Meyering  <jim@meyering.net>
51370
51371         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
51372         * m4/lib-ld.m4: Likewise.
51373
51374 2003-08-18  Jim Meyering  <jim@meyering.net>
51375
51376         * lib/setenv.h: Indent nested cpp directive.
51377         * lib/vasnprintf.c: Remove trailing blanks.
51378
51379 2003-08-17  Simon Josefsson  <jas@extundo.com>
51380
51381         * modules/xstrndup: New file.
51382         * MODULES.html.sh (func_all_modules): Add xstrndup.
51383
51384 2003-08-17  Simon Josefsson  <jas@extundo.com>
51385
51386         * modules/argp: Fix autoconf macro name. Add more dependencies.
51387
51388 2003-08-17  Simon Josefsson  <jas@extundo.com>
51389
51390         * m4/xstrndup.m4: New file.
51391
51392 2003-08-17  Simon Josefsson  <jas@extundo.com>
51393
51394         * m4/argp.m4: New file.
51395
51396 2003-08-17  Simon Josefsson  <jas@extundo.com>
51397             Bruno Haible  <bruno@clisp.org>
51398
51399         * lib/xstrndup.h: New file.
51400         * lib/xstrndup.c: New file.
51401
51402 2003-08-17  Bruno Haible  <bruno@clisp.org>
51403
51404         * modules/strndup (Files, Include): Add lib/strndup.h.
51405
51406 2003-08-17  Bruno Haible  <bruno@clisp.org>
51407
51408         * modules/euidaccess (Files): Add lib/euidaccess.h.
51409
51410 2003-08-17  Bruno Haible  <bruno@clisp.org>
51411
51412         * lib/strndup.h: New file.
51413
51414 2003-08-17  Bruno Haible  <bruno@clisp.org>
51415
51416         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
51417         like AC_GNU_SOURCE.
51418         * modules/extensions (configure.ac): Comment out the invocation of
51419         gl_USE_SYSTEM_EXTENSIONS.
51420
51421 2003-08-16  Paul Eggert  <eggert@twinsun.com>
51422
51423         Merges from coreutils, etc.
51424         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
51425         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
51426         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
51427         fixing a typo.
51428         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
51429         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
51430
51431 2003-08-16  Paul Eggert  <eggert@twinsun.com>
51432
51433         Document merge from coreutils.
51434         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
51435         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
51436         * modules/utime: Add m4/utimes-null.m4.
51437
51438 2003-08-16  Paul Eggert  <eggert@twinsun.com>
51439
51440         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
51441         space, undoing this 2003-08-12 change:
51442         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
51443
51444 2003-08-16  Paul Eggert  <eggert@twinsun.com>
51445
51446         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
51447         strtoul.c from libc, undoing this 2003-08-12 change:
51448         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
51449
51450 2003-08-16  Jim Meyering  <jim@meyering.net>
51451
51452         Merges from coreutils.
51453         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
51454         prefix.  Adjust cache variables similarly.  Create 500 rather than
51455         just 300 files, to exercise bug on Darwin6.5, too.
51456         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
51457         $missing_dir.
51458         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
51459         AM_SYS_POSIX_TERMIOS.
51460         Reported by mkc@mathdogs.com.
51461         Also change use of $am_cv_sys_posix_termios
51462         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
51463         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
51464         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
51465         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
51466         in /proc/mounts until it finds one with matching device number.  This
51467         is unnecessary when the FILE argument *is* a mount point.  No stat call
51468         is necessary in that case.  So, disable the statvfs-testing code on
51469         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
51470         as RedHat bug# 84846.
51471         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
51472         to 1MB, so as not to render systems with no stack size limit (e.g.,
51473         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
51474         Include <unistd.h>.  On some systems,
51475         it is required for the definition of _SC_PAGESIZE.
51476
51477 2003-08-16  Jim Meyering  <jim@meyering.net>
51478
51479         Merge from coreutils.
51480         * lib/xstrtoimax.c: #else #if -> #elif.
51481         * lib/xstrtoumax.c: Likewise.
51482
51483 2003-08-16  Jim Meyering  <jim@meyering.net>
51484
51485         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
51486         * m4/utimes.m4: Removed.
51487         * m4/utimes-null.m4: Renamed from utimes.m4.
51488
51489         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
51490         to 1MB, so as not to render systems with no stack size limit (e.g.,
51491         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
51492         Include <unistd.h>.  On some systems,
51493         it is required for the definition of _SC_PAGESIZE.
51494
51495 2003-08-16  Jim Meyering  <jim@meyering.net>
51496         and Paul Eggert  <eggert@cs.ucla.edu>
51497
51498         Merges from coreutils, etc.
51499
51500         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
51501         using the latest version from cvs.  This avoids problems with #line
51502         directives using a vendor (Sun) compiler.
51503         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
51504         Don't set GETGROUPS_LIB here; now it's
51505         done via getgroups.m4's wrapper function.
51506         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
51507         rather than just in sh-util/configure.in, so that the
51508         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
51509         same.
51510         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
51511         AC_FUNC_GETLOADAVG where to find getloadavg.c.
51512         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
51513         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
51514         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
51515         Remove code that is now done by the newly-required macros.
51516         Append $(EXEEXT) to DF_PROG.
51517         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
51518         Do not invoke or require the following here,
51519         since prereq.m4 or some gnulib .m4 now does this for us:
51520         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
51521         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
51522         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
51523         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
51524         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
51525         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
51526         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
51527         AC_FUNC_OBSTACK.
51528         Do not replace the following functions, as this is now the job
51529         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
51530         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
51531         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
51532         atexit getpass, strdup, getpagesize.
51533         Replace 'raise'.
51534         Do not check for the following functions, as this is now the job
51535         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
51536         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
51537         setregid.
51538         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
51539         Check for sys/sysctl.h.
51540         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
51541         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
51542         of checking for ssize_t ourselves.
51543
51544         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
51545         Require every macro that gnulib/modules/* suggests for us.
51546         (jm_PREREQ_ADDEXT): New macro.
51547         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
51548         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
51549
51550         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
51551         (gl_PHYSMEM): Use it.
51552         Also check for `table' function.
51553         Check for new headers and functions.
51554         Add check for sys/sysmp.h.
51555         With suggestions from Kaveh Ghazi.
51556         Ignore headers that are present but cannot be compiled.  This
51557         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
51558         C 5.4.
51559
51560 2003-08-15  Paul Eggert  <eggert@twinsun.com>
51561
51562         Document merge from coreutils.
51563         * modules/userspec: Depend on posixver.
51564         * modules/strftime: Depend on tzset.
51565
51566 2003-08-15  Paul Eggert  <eggert@twinsun.com>
51567
51568         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
51569         rather than tab, after '#' in shell-script copyright notices.
51570         Suggested by Bruno Haible.
51571
51572 2003-08-15  Paul Eggert  <eggert@twinsun.com>
51573
51574         * config/srclist-update: Use three spaces, rather than tab, after '#'
51575         in shell-script copyright notices.  Suggested by Bruno Haible.
51576         Remove unnecessary parenthesization in regular expression.
51577
51578 2003-08-15  Jim Meyering  <jim@meyering.net>
51579
51580         Merge from coreutils.
51581         * lib/xgethostname.c: Include <stdlib.h>.
51582         (xghostname): Don't exit for anything other than memory-related
51583         failure; just return NULL.
51584         * lib/userspec.c: Include "posixver.h".
51585         (parse_user_spec): Accept `.' as a separator only
51586         in pre-POSIX-200112 mode.
51587         * lib/strtoimax.c: Use #elif rather than #else #if.
51588         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
51589         Remove function, now that we can rely on a working tzset function.
51590         [!_LIBC]: Ensure that the required autoconf test has been run.
51591         [!defined _NL_CURRENT && HAVE_STRFTIME]:
51592         Use underlying_strftime for %r.
51593         * lib/sha.c: Merge in some clean-up and optimization changes from
51594         glibc.
51595         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
51596         Ensure that it is a multiple of 64.
51597         Rearrange loop exit tests so as to avoid performing an
51598         additional fread after encountering an error or EOF.
51599         * lib/realloc.c: Update copyright date.
51600
51601 2003-08-15  Jim Meyering  <jim@meyering.net>
51602         and Paul Eggert  <eggert@twinsun.com>
51603
51604         Merge from coreutils.
51605         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
51606         member but strut utmpx does not.  Needed for AIX 4.3.3.
51607         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
51608
51609 2003-08-15  Jim Meyering  <jim@meyering.net>
51610         and Paul Eggert  <eggert@cs.ucla.edu>
51611
51612         Merges from coreutils, etc.
51613         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
51614         Require gl_FUNC_TZSET_CLOBBER.
51615         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
51616         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
51617         members.
51618
51619 2003-08-14  Paul Eggert  <eggert@twinsun.com>
51620
51621         Help the merge from coreutils.
51622         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
51623         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
51624         * m4/tzset.m4: Use it too.
51625
51626 2003-08-14  Paul Eggert  <eggert@twinsun.com>
51627
51628         * modules/tzset: New file.
51629
51630 2003-08-14  Jim Meyering  <jim@meyering.net>
51631
51632         Merges from coreutils.
51633         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
51634         variable names, rather than @FNMATCH_H@.
51635         * modules/alloca: Likewise for $(ALLOCA_H).
51636
51637         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
51638         the three copies of the literal target, `fnmatch.h'.
51639         * modules/alloca (alloca.h): Likewise.
51640
51641 2003-08-14  Jim Meyering  <jim@meyering.net>
51642
51643         Merge from coreutils.
51644         * m4/tzset.m4: New file.
51645         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
51646         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
51647         otherwise, AIX 5.1 systems would end up using the latter.
51648         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
51649         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
51650         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
51651         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
51652
51653 2003-08-14  Jim Meyering  <jim@meyering.net>
51654
51655         Merge from coreutils.
51656         * lib/obstack.h: Whitespace changes.
51657         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
51658         and xcalloc return values.
51659         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
51660         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
51661         hang on OSF/1 5.1 for DIR on both local and remote file systems.
51662         Reported by (and fix confirmed by) Nelson H. F. Beebe.
51663         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
51664         error from mntctl.
51665         Use mntctl's return value to drive the entry-processing loop, since
51666         we can't rely on the value of the vmt_length member in the last
51667         entry.  On some systems doing so could result in exhausting
51668         virtual memory.  Based in part on a patch from Mike Jetzer.
51669
51670 2003-08-14  Jim Meyering  <jim@meyering.net>
51671         and Paul Eggert  <eggert@twinsun.com>
51672
51673         Merges from coreutils, plus other fixes.
51674         * lib/physmem.c: Merge in portability changes from gcc/libiberty
51675         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
51676         for credits and details.  Thanks to Kaveh Ghazi for helping
51677         to keep these files in sync.
51678         (ARRAY_SIZE): Define it.
51679         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
51680         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
51681         (memcasecmp): Don't assume size_t fits in unsigned int.
51682         Remove casts and duplicate code.
51683         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
51684         (memcpy): Remove definition.
51685         Merge in some clean-up and optimization changes from glibc.
51686         [BLOCKSIZE]: Move definition to top of file.
51687         Ensure that it is a multiple of 64.
51688         Rearrange loop exit tests so as to avoid performing an
51689         additional fread after encountering an error or EOF.
51690         * lib/md5.h (md5_uintptr): Define.
51691         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
51692         return to the initial working directory.  Preserve errno
51693         for caller.
51694         * lib/idcache.c: Include "xalloc.h".
51695         (xmalloc, xrealloc): Remove decls.
51696         (getuser): Remove casts no longer required in C89.
51697         * lib/human.c: Include stdio.h, for sprintf.
51698         * lib/group-member.c: Include "xalloc.h".
51699         (xmalloc, xrealloc): Remove decls.
51700         (get_group_info): Remove casts no longer required in C89.
51701         * lib/getusershell.c (readname): Remove casts no longer required in
51702         C89.
51703         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
51704         * lib/getline.c: Whitespace fix, from coreutils.
51705
51706 2003-08-13  Paul Eggert  <eggert@twinsun.com>
51707
51708         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
51709         Check for isascii.
51710
51711         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
51712         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
51713         Undo previous (whitespace-only) change.
51714
51715 2003-08-13  Paul Eggert  <eggert@twinsun.com>
51716
51717         * lib/exclude.c: Include <ctype.h>
51718         (IN_CTYPE_DOMAIN): New macro.
51719         (is_space): New fn.
51720         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
51721         and empty lines.
51722
51723         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
51724         Undo previous (whitespace-only) change.
51725
51726 2003-08-13  Paul Eggert  <eggert@twinsun.com>
51727
51728         * config/srclist-update: Change update back to the old behavior,
51729         leaving whitespace alone.  Use one 'sed' command rather than a
51730         pipeline.
51731         (fixlicense): Now a variable, not a function.
51732         (remove_trailing_blanks): Remove.
51733         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
51734         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
51735         Undo previous (whitespace-only) change.
51736
51737 2003-08-12  Paul Eggert  <eggert@twinsun.com>
51738
51739         Merge from coreutils.
51740         * modules/euidaccess: Add lib_SOURCES, include for new
51741         file euidaccess.h
51742
51743 2003-08-12  Paul Eggert  <eggert@twinsun.com>
51744
51745         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
51746         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
51747         Normalize leading white space and remove trailing white space.
51748
51749         Merge from coreutils
51750         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
51751
51752         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
51753         0.12.1.  These files are now being upgraded automatically by
51754         ../config/srclist-update.
51755
51756 2003-08-12  Paul Eggert  <eggert@twinsun.com>
51757
51758         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
51759         Normalize leading white space and remove trailing white space.
51760         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
51761         notice, as per ../config/srclist-update.
51762
51763         Merge from coreutils.
51764         * lib/euidaccess.h: New file.
51765         * lib/euidaccess.c: Include it.
51766         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
51767         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
51768         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
51769
51770 2003-08-12  Paul Eggert  <eggert@twinsun.com>
51771
51772         * config/srclist-update: Add copyright notice.
51773         (remove_id_lines, remove_trailing_blanks): New constants.
51774         (fixfile): Use them to normalize spacing a bit in copied files.
51775         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
51776         Normalize leading white space and remove trailing white space.
51777
51778         * config/texinfo.tex: Sync with texinfo.
51779
51780         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
51781         strtoul.c from libc, to merge coreutils whitespace changes.
51782
51783         * config/srclist.txt: Get the following m4 files from gettext:
51784         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
51785         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
51786         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
51787         wint_t.m4.
51788
51789 2003-08-12  Karl Berry  <karl@gnu.org>
51790
51791         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
51792         been made.
51793
51794 2003-08-11  Paul Eggert  <eggert@twinsun.com>
51795
51796         * modules/gnu-source, m4/gnu-source.m4:
51797         Remove; we're assuming Autoconf 2.54 or later now.
51798         Suggested by Bruno Haible.
51799         * MODULES.html.sh (func_all_modules): Remove gnu-source.
51800
51801 2003-08-11  Bruno Haible  <bruno@clisp.org>
51802
51803         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
51804
51805 2003-08-11  Bruno Haible  <bruno@clisp.org>
51806
51807         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
51808         (vasnprintf): Use it instead of wcslen.
51809
51810 2003-08-11  Bruno Haible  <bruno@clisp.org>
51811
51812         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
51813         value to ensure that _Bool promotes to int. Use #define for _Bool when
51814         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
51815
51816 2003-08-10  Karl Berry  <karl@gnu.org>
51817
51818         * lib/regex.h: update from libc (whitespace fix).
51819
51820 2003-08-09  Paul Eggert  <eggert@twinsun.com>
51821
51822         Merge some files from coreutils.  These changes were
51823         originally made by Jim Meyering.
51824         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
51825         many older Unixes require this.
51826         * lib/alloca.c (alloca): Remove cast to argument of free;
51827         no longer needed in C89.
51828         * lib/alloca_.h, regex.h: Fix white space to match
51829         what GNU indent does.
51830
51831 2003-08-09  Paul Eggert  <eggert@twinsun.com>
51832
51833         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
51834         apparently Emacs's Unicode mode got confused before my 2003-08-05
51835         checkin.
51836
51837 2003-08-08  Paul Eggert  <eggert@twinsun.com>
51838
51839         * m4/extensions.m4: New file.
51840         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
51841         Require gl_USE_SYSTEM_EXTENSIONS.
51842         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
51843         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
51844
51845 2003-08-08  Paul Eggert  <eggert@twinsun.com>
51846
51847         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
51848         * modules/extensions, modules/gnu-source: New files.
51849         * modules/timespec, modules/unlocked-io: Depend on extensions.
51850
51851 2003-08-07  Paul Eggert  <eggert@twinsun.com>
51852
51853         * modules/restrict: New file.
51854         * MODULES.html.sh (func_all_modules): Add restrict.
51855         * modules/regex: Depend on restrict.
51856
51857 2003-08-07  Paul Eggert  <eggert@twinsun.com>
51858
51859         * m4/restrict.m4: New file.
51860         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
51861
51862 2003-08-07  Bruno Haible  <bruno@clisp.org>
51863
51864         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
51865         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
51866
51867 2003-08-07  Bruno Haible  <bruno@clisp.org>
51868
51869         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
51870         makes the module 'getndelim2' compatible with the module 'getline'.
51871
51872 2003-08-05  Paul Eggert  <eggert@twinsun.com>
51873
51874         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
51875         byte with "\201" to avoid glitches when editing that source file
51876         with multi-gnome-terminal.
51877
51878 2003-08-05  Paul Eggert  <eggert@twinsun.com>
51879
51880         * lib/bumpalloc.h: Remove.
51881
51882 2003-08-05  Paul Eggert  <eggert@twinsun.com>
51883
51884         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
51885         * modules/bumpalloc: Remove.
51886
51887 2003-08-04  Paul Eggert  <eggert@twinsun.com>
51888
51889         * lib/getloadavg.c: Change copyright notice and spacing to conform to
51890         GNU coding style.
51891
51892         Merge from coreutils.
51893         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
51894         1. From glibc.
51895         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
51896         from Karl Berry, implemented by Jim Meyering.
51897         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
51898         from Dmitry V. Levin.
51899         Remove anachronistic cast of xrealloc.
51900         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
51901         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
51902         type. Otherwise, it wouldn't compile with at least /bin/cc on
51903         ymp-cray-unicos9.0.2.X.
51904         Combine two mostly-identical uses of alloca into one.
51905         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
51906
51907 2003-08-04  Dave Love  <d.love@dl.ac.uk>
51908
51909         [From Emacs.]
51910
51911         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
51912         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
51913         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
51914         obsolete NLIST_NAME_UNION.
51915         [__GNU__]: Undef BSD and FSCALE.
51916         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
51917
51918 2003-08-03  Paul Eggert  <eggert@twinsun.com>
51919
51920         * lib/stdbool_.h (_Bool): Make it signed char, instead of
51921         an enum type, so that it's guaranteed to promote to int.  See:
51922         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
51923
51924 2003-08-03  Karl Berry  <karl@gnu.org>
51925
51926         * config/depcomp: update from automake.
51927
51928 2003-07-31  Paul Eggert  <eggert@twinsun.com>
51929
51930         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
51931         (strerror): Don't assume that a printable int fits in 14 bytes.
51932
51933 2003-07-31  Bruno Haible  <bruno@clisp.org>
51934
51935         * modules/getpass-gnu: New file.
51936         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
51937
51938 2003-07-31  Bruno Haible  <bruno@clisp.org>
51939
51940         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
51941
51942 2003-07-24  Karl Berry  <karl@gnu.org>
51943
51944         * config/missing: update from automake.
51945
51946 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
51947             Bruno Haible  <bruno@clisp.org>
51948
51949         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
51950         * lib/getline.c (getline, getdelim): Likewise.
51951         Remove _GNU_SOURCE define; now it's defined in config.h through
51952         m4/getline.m4.
51953
51954 2003-07-23  Karl Berry  <karl@gnu.org>
51955
51956         * config/config.sub: update from prep.
51957
51958 2003-07-22  Paul Eggert  <eggert@twinsun.com>
51959
51960         * modules/xalloc (Depends-on): Add exitfail.
51961         * modules/xmemcoll: Likewise.
51962
51963 2003-07-22  Paul Eggert  <eggert@twinsun.com>
51964
51965         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
51966         over-parenthesization in macros.
51967
51968         Sync with coreutils.
51969
51970         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
51971         required by C99.
51972
51973         Use `exit_failure' for xalloc and xmemcoll instead of their own
51974         private exit-failure variables.
51975         * lib/xalloc.h (xalloc_exit_failure): Remove.
51976         * lib/xmalloc.c: Likewise.  Include exitfail.h.
51977         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
51978         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
51979         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
51980         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
51981
51982 2003-07-20  Jim Meyering  <jim@meyering.net>
51983
51984         * modules/closeout (Depends-on): Add exitfail.
51985         Suggestion from Bruno Haible.
51986
51987 2003-07-19  Karl Berry  <karl@gnu.org>
51988
51989         * config/config.sub: update from prep.
51990
51991 2003-07-18  Paul Eggert  <eggert@twinsun.com>
51992
51993         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
51994         Remove.
51995         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
51996         to test that it can stand by itself.  Include "exitfail.h".
51997         Clients should set exit_failure instead.
51998         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
51999
52000 2003-07-18  Bruno Haible  <bruno@clisp.org>
52001
52002         * modules/getndelim2: New file.
52003         * modules/getline: Share files with module getndelim2.
52004         * modules/getnline: Depend on getndelim2 instead of sharing files with
52005         it. Add getnline.c to lib_SOURCES.
52006         * MODULES.html.sh (func_all_modules): Add getndelim2.
52007
52008 2003-07-18  Bruno Haible  <bruno@clisp.org>
52009
52010         * m4/getndelim2.m4: New file.
52011         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
52012         invoke gl_PREREQ_GETNDELIM2.
52013         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
52014         gl_PREREQ_GETNDELIM2.
52015         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
52016         gl_GETNDELIM2.
52017
52018 2003-07-18  Bruno Haible  <bruno@clisp.org>
52019
52020         * lib/getndelim2.h: New file.
52021         * lib/getndelim2.c: Make into a module of its own. Include config.h,
52022         getndelim2.h.
52023         (getndelim2): Make non-static. Change return type to ssize_t.
52024         * lib/getline.h: Change argument names.
52025         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
52026         * lib/getnline.c: Include getndelim2.h.
52027
52028 2003-07-18  Andreas Schwab  <schwab@suse.de>
52029
52030         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
52031
52032 2003-07-17  Karl Berry  <karl@gnu.org>
52033
52034         * config/config.sub: update from prep.
52035
52036 2003-07-17  Bruno Haible  <bruno@clisp.org>
52037
52038         * modules/getnline: New file.
52039         * modules/getline: Add lib/getndelim2.c to source file list.
52040         * MODULES.html.sh (func_all_modules): Add getnline.
52041
52042 2003-07-17  Bruno Haible  <bruno@clisp.org>
52043
52044         * m4/getnline.m4: New file.
52045
52046 2003-07-17  Bruno Haible  <bruno@clisp.org>
52047
52048         * m4/Makefile.am.in: Remove file.
52049         * m4/Makefile.am: Remove file.
52050         * m4/Makefile.in: Remove file.
52051
52052 2003-07-17  Bruno Haible  <bruno@clisp.org>
52053
52054         * lib/getnline.h: New file.
52055         * lib/getnline.c: New file.
52056         * lib/getndelim2.c: New file, extracted from getline.c.
52057         (getndelim2): Renamed from getdelim2, with added nmax argument.
52058         * lib/getline.c: Include getndelim2.c.
52059         (getdelim2): Moved out to getndelim2.c.
52060         (getline, getdelim): Update.
52061
52062 2003-07-17  Bruno Haible  <bruno@clisp.org>
52063
52064         * lib/Makefile.am: Remove file.
52065         * lib/Makefile.in: Remove file.
52066
52067 2003-07-17  Bruno Haible  <bruno@clisp.org>
52068
52069         * configure.in: Remove file.
52070         * Makefile.in: Remove file.
52071
52072 2003-07-17  Bruno Haible  <bruno@clisp.org>
52073
52074         * MODULES.html.sh: Put the </BODY> right before </HTML>.
52075
52076 2003-07-16  Karl Berry  <karl@gnu.org>
52077
52078         * config/srclist-update: was running fixlicense twice, which caused
52079                 texinfo.tex to be nullified for some reason.  Simplify,
52080                 $gplsrc is no longer needed as far as I can see?
52081
52082 2003-07-16  Jim Meyering  <jim@meyering.net>
52083
52084         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
52085
52086 2003-07-15  Paul Eggert  <eggert@twinsun.com>
52087
52088         * config/srclist.txt: Get the following files from gettext-runtime/intl
52089         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
52090         ref-del.sin.  From Bruno Haible.
52091         * config/srclist-update (fixfile): Change grep pattern again, since the
52092         previous fix didn't work (there was another trailing $).  Use
52093         '[$]' to escape the $s.
52094
52095 2003-07-15  Karl Berry  <karl@gnu.org>
52096
52097         * lib/vasnprintf.c: update from gettext.
52098
52099 2003-07-15  Karl Berry  <karl@gnu.org>
52100
52101         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
52102         gets expanded when surrounded by '$'.
52103
52104 2003-07-15  Jim Meyering  <jim@meyering.net>
52105
52106         * modules/save-cwd: Don't depend on error.  From Derek Price.
52107
52108 2003-07-15  Jim Meyering  <jim@meyering.net>
52109
52110         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
52111
52112 2003-07-14  Simon Josefsson  <jas@extundo.com>
52113
52114         * modules/mempcpy: New file.
52115         * MODULES.html.sh (func_all_modules): Add mempcpy.
52116
52117 2003-07-14  Simon Josefsson  <jas@extundo.com>
52118
52119         * m4/mempcpy.m4: New file.
52120
52121 2003-07-14  Simon Josefsson  <jas@extundo.com>
52122
52123         * lib/mempcpy.h: New file.
52124         * lib/mempcpy.c: New file.
52125
52126 2003-07-14  Paul Eggert  <eggert@twinsun.com>
52127
52128         * modules/getdate, modules/posixtm: Depend on mktime.
52129
52130 2003-07-14  Paul Eggert  <eggert@twinsun.com>
52131
52132         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
52133         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
52134         unicodeio.c, unicodeio.h, unlocked-io.h:
52135         Switch from LGPL to GPL.
52136
52137 2003-07-14  Paul Eggert  <eggert@twinsun.com>
52138
52139         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
52140         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
52141         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
52142         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
52143         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
52144         updated automatically by ../config/srclist-update.  This changes
52145         their license from LPGL to GPL.
52146
52147 2003-07-14  Paul Eggert  <eggert@twinsun.com>
52148
52149         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
52150         assumed to refer to the root of the most recent stable gettext version.
52151         * config/srclistvars.sh: Add defaults for eggert.
52152         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
52153         Match "This program" as well as "The program".  This is needed
52154         for gettext.
52155
52156 2003-07-14  Jim Meyering  <jim@meyering.net>
52157
52158         Don't emit diagnostics.  Let callers do that.
52159         * lib/save-cwd.c: Don't include "error.h".
52160         (save_cwd): Don't call error.  Ensure that errno is valid
52161         when returning nonzero.
52162
52163         * lib/save-cwd.h (restore_cwd): Update prototype.
52164         * lib/save-cwd.c (restore_cwd): Remove two parameters.
52165         Simplify.  Don't call error upon failure.  Let callers do that.
52166         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
52167         when auditing is enabled.  But don't bother updating the #if.
52168
52169 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
52170
52171         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
52172         it breaks C++ compilation.
52173         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
52174
52175 2003-07-10  Simon Josefsson  <jas@extundo.com>
52176
52177         * modules/strchrnul (Makefile.am): Add strchrnul.h.
52178
52179 2003-07-10  Jim Meyering  <jim@meyering.net>
52180
52181         * m4/clock_time.m4: Remove trailing blank.
52182         * m4/intmax_t.m4: Likewise.
52183
52184 2003-07-10  Jim Meyering  <jim@meyering.net>
52185
52186         * lib/vasnprintf.c: Remove trailing blanks.
52187         Make cpp indentation consistent.
52188
52189 2003-07-09  Paul Eggert  <eggert@twinsun.com>
52190
52191         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
52192         posixver.c, strftime.c, strnlen.c, strverscmp.c:
52193         Switch from LGPL to GPL.
52194
52195 2003-07-09  Paul Eggert  <eggert@twinsun.com>
52196
52197         * config/srclist.txt: Sort sublists.  Add
52198         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
52199         that differ from gnulib for one reason or another; we'd like this list
52200         to be smaller but for now let's document what we have.
52201
52202 2003-07-08  Paul Eggert  <eggert@twinsun.com>
52203
52204         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
52205         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
52206         and sweeter "eval x=$x".
52207         * config/srclist.txt: Get lib/argp* from glibc.
52208
52209 2003-07-07  Paul Eggert  <eggert@twinsun.com>
52210
52211         * lib/mktime.c: Fix some boundary cases and remove need for floating
52212         point.
52213
52214         Issue a compile-time diagnostic if time_t is floating point, or if
52215         two's complement arithmetic is not in effect, or if arithmetic
52216         right shift does not propagate the sign.  These assumptions were
52217         all in the original code but they weren't checked.
52218
52219         (TIME_T_MIDPOINT, verify): New macros.
52220         (__isleap): Remove; it has integer overflow problems.
52221         (leapyear): New function, without those problems.
52222         (ydhms_tm_diff): Remove; splitting into two parts.
52223         (ydhms_diff): New function, containing the arithmetic part of
52224         the old ydhms_tm_diff function.  Issue a compile-time
52225         diagnostic if we are not using C99 integer division.
52226         Avoid casts when possible.
52227         (guess_time_tm): New function, containing the checking part of
52228         the old ydhms_tm_diff function.  Return the new value, rather than
52229         the difference between it and the old.  Accept a new argument T
52230         so that *T specifies the old value.  Check for overflow in the result.
52231
52232         (__mktime_internal): Use a time_t offset, not a long int offset.
52233         This undoes the 2003-06-04 change, which is no longer needed now
52234         that we have better overflow checking.
52235         (localtime_offset): Likewise.
52236
52237         (__mktime_internal): Avoid harmful overflow on hosts where time_t
52238         and long are 64-bit but int is only 32-bit.
52239         (ydhms_diff): Use long int to store year1 and yday1.
52240         Issue a compile-time diagnostic if long int is not wide enough.
52241
52242         (__mktime_internal): Use long int to store adjusted year and yday.
52243         Use plain C rather than preprocessor commands, if that doesn't
52244         affect efficiency.
52245         Check for overflow (and try to repair) after each probe
52246         rather than checking only at the very end.  This avoids some bugs
52247         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
52248         does not equal GMT offset at maximum time).
52249         Use integer to check for overflow rather than floating point; this
52250         is more portable to non-IEEE hosts, and is a tad faster.
52251         When we detect that we are oscillating between two values,
52252         don't check whether tm_isdst has the requested value, since
52253         we already know the answer.  When tm_isdst has the wrong value,
52254         use a different heuristic to find the right one, based on the
52255         extreme values actually observed in practice in tz2003a,
52256         rather than the (overly optimistic) "previous 3 calendar quarters".
52257
52258         (not_equal_tm, print_tm, check_result): Use "const T" rather than
52259         "T const" to accommodate glibc style.
52260         (check_result): Use less-confusing report format.  "long" -> "long int.
52261         (main): Likewise.
52262         Don't loop if the iteration overflows time_t.
52263         Allow a negative step in the iteration.
52264
52265 2003-07-06  Karl Berry  <karl@gnu.org>
52266
52267         * config/depcomp: update from automake.
52268         * config/config.sub: update from prep.
52269
52270 2003-07-03  Karl Berry  <karl@gnu.org>
52271
52272         * config/config.guess: update from prep.
52273
52274 2003-07-01  Paul Eggert  <eggert@twinsun.com>
52275
52276         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
52277         xreadlink.c now includes it unconditionally.
52278
52279 2003-07-01  Paul Eggert  <eggert@twinsun.com>
52280
52281         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
52282         having it depend on HAVE_SYS_TYPES_H.
52283
52284 2003-07-01  Bruno Haible  <bruno@clisp.org>
52285
52286         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
52287         <sys/types.h> should be sufficient.
52288         Reported by Paul Eggert.
52289
52290 2003-06-26  Karl Berry  <karl@gnu.org>
52291
52292         * config/depcomp: update from automake.
52293
52294 2003-06-26  Bruno Haible  <bruno@clisp.org>
52295
52296         * modules/human: Depend on module stdbool.
52297
52298 2003-06-25  Bruno Haible  <bruno@clisp.org>
52299
52300         * modules/readlink: New file.
52301         * modules/xreadlink: Depend on it.
52302         * MODULES.html.sh (func_all_modules): Add readlink.
52303
52304 2003-06-25  Bruno Haible  <bruno@clisp.org>
52305
52306         * m4/readlink.m4: New file.
52307
52308 2003-06-25  Bruno Haible  <bruno@clisp.org>
52309
52310         * lib/readlink.c: New file.
52311
52312 2003-06-22  Karl Berry  <karl@gnu.org>
52313
52314         * config/srclist.txt: update mkinstalldirs from automake.
52315         * config/mkinstalldirs: update.
52316
52317 2003-06-22  Bruno Haible  <bruno@clisp.org>
52318
52319         Portability to mingw32.
52320         * m4/ssize_t.m4: New file, from GNU gettext.
52321         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
52322         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
52323
52324 2003-06-22  Bruno Haible  <bruno@clisp.org>
52325
52326         * modules/safe-read: Add m4/ssize_t.m4.
52327         * modules/xreadlink: Add m4/ssize_t.m4.
52328
52329 2003-06-20  Bruno Haible  <bruno@clisp.org>
52330
52331         Assume C89, so PARAMS isn't needed.
52332         * lib/unicodeio.h (PARAMS): Remove.
52333         * lib/unicodeio.c: Don't use PARAMS.
52334
52335 2003-06-18  Karl Berry  <karl@gnu.org>
52336
52337         * config/config.{guess,sub}: update from prep.
52338
52339 2003-06-18  Jim Meyering  <jim@meyering.net>
52340
52341         Merge changes from coreutils.
52342         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
52343         Remove explicit declarations of xmalloc and realloc.
52344         Include xalloc.h.
52345         (read_utmp): Remove anachronistic cast of xmalloc.
52346
52347 2003-06-17  Paul Eggert  <eggert@twinsun.com>
52348
52349         Assume C89, so PARAMS isn't needed.
52350         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
52351         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
52352         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
52353         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
52354         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
52355         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
52356         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
52357         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
52358         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
52359         lib/xstrtod.h, lib/xstrtol.h: Likewise.
52360         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
52361         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
52362         no longer needed. Anyway, config.h should always be included before any
52363         other file.
52364
52365 2003-06-11  Simon Josefsson  <jas@extundo.com>
52366
52367         * modules/sysexits: New file.
52368         * MODULES.html.sh (func_all_modules): Add sysexits.
52369
52370 2003-06-11  Simon Josefsson  <jas@extundo.com>
52371
52372         * lib/sysexit_.h: New file.
52373
52374 2003-06-11  Derek Price  <derek@ximbiot.com>
52375
52376         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
52377         necessary.
52378
52379 2003-06-11  Bruno Haible  <bruno@clisp.org>
52380
52381         * m4/sysexits.m4: New file.
52382
52383 2003-06-10  Simon Josefsson  <jas@extundo.com>
52384
52385         * lib/argp.h: New file, from glibc.
52386         * lib/argp-ba.c: New file, from glibc.
52387         * lib/argp-eexst.c: New file, from glibc.
52388         * lib/argp-fmtstream.c: New file, from glibc.
52389         * lib/argp-fmtstream.h: New file, from glibc.
52390         * lib/argp-fs-xinl.c: New file, from glibc.
52391         * lib/argp-help.c: New file, from glibc.
52392         * lib/argp-namefrob.h: New file, from glibc.
52393         * lib/argp-parse.c: New file, from glibc.
52394         * lib/argp-pv.c: New file, from glibc.
52395         * lib/argp-pvh.c: New file, from glibc.
52396         * lib/argp-xinl.c: New file, from glibc.
52397
52398 2003-06-10  Simon Josefsson  <jas@extundo.com>
52399
52400         * modules/strchrnul: New file.
52401
52402 2003-06-10  Simon Josefsson  <jas@extundo.com>
52403
52404         * modules/argp: New file.
52405
52406 2003-06-10  Simon Josefsson  <jas@extundo.com>
52407
52408         * m4/strchrnul.m4: New file.
52409
52410 2003-06-10  Simon Josefsson  <jas@extundo.com>
52411
52412         * lib/strchrnul.h: New file.
52413         * lib/strchrnul.c: New file.
52414
52415 2003-06-10  Bruno Haible  <bruno@clisp.org>
52416
52417         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
52418
52419 2003-06-07  Karl Berry  <karl@gnu.org>
52420
52421         * config/config.{guess,sub}: update from prep.
52422
52423 2003-06-07  Jim Meyering  <jim@meyering.net>
52424
52425         * modules/strtod: Use $(...) notation, not @...@ for
52426         AC_REPLACE'd variables.
52427         * modules/localcharset: Likewise.
52428
52429 2003-06-07  Jim Meyering  <jim@meyering.net>
52430
52431         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
52432         in place of my name in the copyright comment.
52433         Remove definition and uses of __P.
52434
52435         From coreutils.
52436         * lib/stat.c: Don't declare xmalloc explicitly.
52437         Instead, include "xalloc.h".
52438         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
52439         xrealloc, and xcalloc return values.
52440         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
52441         Improve comment.
52442         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
52443
52444 2003-06-07  Bruno Haible  <bruno@clisp.org>
52445
52446         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
52447         avoid AC_CONFIG_LINKS.
52448         * modules/fnmatch (Makefile.am): Use explicit creation rule for
52449         fnmatch.h, to avoid AC_CONFIG_LINKS.
52450         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
52451
52452 2003-06-07  Bruno Haible  <bruno@clisp.org>
52453
52454         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
52455         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
52456         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
52457         directory.
52458         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
52459         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
52460         directory.
52461
52462 2003-06-06  Jim Meyering  <jim@meyering.net>
52463
52464         Merge from coreutils.
52465         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
52466         Consolidate declarations and initializations of *_base* locals.
52467
52468         Merge from coreutils.
52469         This avoids a core dump on systems without GNU putenv,
52470         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
52471         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
52472         (unsetenv): New static function, from GNU libc.
52473         (rpl_putenv): Use it.
52474
52475         * lib/modechange.c: Remove trailing blanks.
52476
52477         Merge from coreutils.
52478         * lib/fsusage.c: Remove declaration of statfs.
52479         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
52480
52481         * lib/posixtm.c: Include <stdbool.h> unconditionally.
52482
52483 2003-06-06  Jim Meyering  <jim@meyering.net>
52484
52485         * lib/stdbool_.h: Renamed from stdbool.h.in.
52486
52487 2003-06-06  Jim Meyering  <jim@meyering.net>
52488             Bruno Haible  <bruno@clisp.org>
52489
52490         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
52491         Adjust Makefile.am snippet not to redirect directly to target.
52492         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
52493
52494 2003-06-05  Paul Eggert  <eggert@twinsun.com>
52495
52496         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
52497         mismatch, look in future quarters as well as past.  This fixes a
52498         bug when processing fall-backwards gaps immediately after a long
52499         period of daylight-saving time.
52500
52501         * lib/mktime.c: Assume freestanding C89 or better.
52502         (HAVE_LIMITS_H): Remove.  Assume it's 1.
52503         (__P): Remove; not used.
52504         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
52505         (mktime, not_equal_tm, print_tm, check_result,
52506         main): Use prototypes.  Use const * where appropriate.
52507         (main): Fix typo in testing code that uncovered by above changes.
52508         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
52509
52510 2003-06-04  Paul Eggert  <eggert@twinsun.com>
52511
52512         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
52513         locale.h, localeconv.  This merges changes from coreutils.
52514
52515         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
52516         It can be removed after the next Autoconf is released.
52517         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
52518         needed.
52519
52520 2003-06-04  Paul Eggert  <eggert@twinsun.com>
52521
52522         * lib/mktime.c: Fix Debian bug 177940
52523         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
52524         (localtime_offset): Now long int, not time_t, because we want it
52525         to be guaranteed to be signed.  All uses changed.
52526         (__mktime_internal): If overflow would occur when adding offset,
52527         don't add it.
52528
52529         Merge 'human' changes from coreutils.  Rewrite to support
52530         locale-specific notations like thousands separators.
52531         * lib/human.c: Simplify authorship notice.
52532         Include human.h immediately after config.h.
52533         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
52534         <limits.h>: Do not include, since human.h does.
52535         (SIZE_MAX, UINTMAX_MAX): New macros.
52536         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
52537         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
52538         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
52539         (power_letter): Renamed from suffixes.
52540         (generate_suffix_backwards): Remove.
52541         (adjust_value): Now takes int style (because of human.h changes)
52542         and long double value (for greater precision on some platforms).
52543         (group_number): New function.
52544         (human_readable): Use it.  Use integer options, not enum.
52545         Put the options before the sizes in the arg list.
52546         Support all the new options.
52547         The old human_readable function has been removed;
52548         use inttostr.h instead.
52549         (human_readable, default_block_size, humblock):
52550         Use uintmax_t, not int, for block sizes.
52551         (human_readable_inexact, block_size_types): Remove.
52552         (block_size_opts): New constant.
52553         (human_options): Renamed from human_block_size, with new signature
52554         that allows block sizes up to UINTMAX_MAX.  All callers changed.
52555         * lib/human.h: Add copyright and authorship notice.
52556         Include <limits.h> and <stdbool.h> unconditionally.
52557         (PARAMS): Remove.  All uses removed.
52558         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
52559         (enum human_inexact_style): Remove tag; now a nameless enum.
52560         (human_floor, human_ceiling, human_round_to_even): Now have
52561         values 2, 0, 1 rather than -1, 1, 0.
52562         (human_group_digits, human_suppress_point_zero, human_autoscale,
52563         human_base_1024, human_SI, human_B): New constants.
52564         (human_readable_inexact, human_block_size): Remove.
52565         (human_readable): Size args are now uintmax_t, not int.
52566         (human_options): New decl.
52567
52568         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
52569         unnecessary now that we assume C89 or better.  This change
52570         imported from coreutils.
52571
52572         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
52573         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
52574         in the 2003-05-30 sync from glibc.
52575
52576         .h files should stand alone, but we shouldn't include <sys/types.h>
52577         if we can get away with just <stddef.h>.
52578
52579         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
52580         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
52581         rather than <sys/types.h>, as we merely need size_t.
52582         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
52583         to get size_t.
52584         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
52585         Include <stdio.h>, to get FILE.
52586         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
52587         memcasecmp.h has included <stddef.h> and all we need is size_t.
52588         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
52589         our interface, instead of including <sys/types.h>
52590
52591 2003-06-04  Paul Eggert  <eggert@twinsun.com>
52592
52593         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
52594         now, as glibc mktime is buggy on non-glibc systems.
52595
52596 2003-06-03  Karl Berry  <karl@gnu.org>
52597
52598         * config/config.sub: update from prep.
52599
52600 2003-06-02  Paul Eggert  <eggert@twinsun.com>
52601
52602         [from coreutils]
52603         Fix some minor time-related bugs with POSIX time arguments.
52604         Some valid time stamps were being rejected (notably -1, and
52605         time stamps before 1900 on 64-bit hosts).  And some invalid
52606         time stamps were being accepted, e.g. September 31.
52607
52608         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
52609         that we can return (time_t) -1 successfully.
52610         * lib/posixtm.c: Likewise.
52611         [HAVE_STDBOOL_H]: Include <stdbool.h>.
52612         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
52613         (t): Remove static var.
52614         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
52615         of static var.  All uses changed.
52616         (year): Do not reject years before 1900; they can occur with
52617         64-bit time_t.
52618         (posix_time_parse): Do not check for out-of-range components;
52619         that is now the caller's responsibility, since our checks were
52620         only approximations.
52621         (posixtime): Use mktime to check for out-of-range components,
52622         since it knows them exactly.
52623         If mktime returns (time_t) -1, check whether an error actually occurred
52624         by invoking localtime on -1.
52625         (main) [TEST_POSIXTIME]: Check for input data errors, and report
52626         posixtime failures better.
52627         Improve the test data (in comments only).
52628
52629 2003-06-02  Karl Berry  <karl@gnu.org>
52630
52631         * config/mkinstalldirs (version): new variable.
52632         (--version): new option.
52633         (usage): improve message.
52634
52635 2003-05-30  Karl Berry  <karl@gnu.org>
52636
52637         * lib/mktime.c: update from libc.
52638
52639 2003-05-30  Bruno Haible  <bruno@clisp.org>
52640
52641         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
52642         * config/config.rpath: Upgrade to gettext-0.12.1.
52643
52644 2003-05-30  Bruno Haible  <bruno@clisp.org>
52645
52646         * m4/gettext.m4: Upgrade to gettext-0.12.1.
52647         * m4/nls.m4: New file, from gettext-0.12.1.
52648         * m4/po.m4: New file, from gettext-0.12.1.
52649         * m4/progtest.m4: Upgrade to gettext-0.12.1.
52650
52651 2003-05-30  Bruno Haible  <bruno@clisp.org>
52652
52653         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
52654         * lib/localcharset.h: Likewise.
52655         * lib/localcharset.c: Likewise.
52656
52657 2003-05-29  Karl Berry  <karl@gnu.org>
52658
52659         * config/config.rpath: update from gettext.
52660
52661 2003-05-28  Paul Eggert  <eggert@twinsun.com>
52662
52663         Assume the headers required for C89 freestanding compilers.
52664         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
52665         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
52666         * m4/human.m4 (gl_HUMAN): Likewise.
52667         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
52668         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
52669         * m4/userspec.m4 (gl_USERSPEC): Likewise.
52670         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
52671         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
52672         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
52673
52674 2003-05-28  Paul Eggert  <eggert@twinsun.com>
52675
52676         Assume the headers required for C89 freestanding compilers.
52677         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
52678         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
52679         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
52680         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
52681         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
52682         define, since <limits.h> is guaranteed to do that.
52683         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
52684         * lib/exclude.c: Include <stdbool.h> unconditionally.
52685         * lib/tempname.c: Include <stddef.h> unconditionally.
52686         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
52687         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
52688         <stddef.h> does that.
52689         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
52690         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
52691         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
52692         needed.
52693         * lib/xstrtol.c: Likewise.
52694         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
52695         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
52696
52697         * lib/addext.c (addext): Use assignment rather than cast, to avoid
52698         warnings on some platforms.
52699
52700         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
52701         arbitrarily.
52702
52703 2003-05-26  Jim Meyering  <jim@meyering.net>
52704
52705         Merge in a change from coreutils:
52706         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
52707         that is guaranteed to be `no'.  Use `no_such_member' to indicate
52708         that condition, rather than `-1' which is slightly misleading.
52709         Change the name of the cache variable to have the gl_ prefix.
52710         Prompted by a patch from Richard Dawe for DJGPP.
52711
52712 2003-05-24  Karl Berry  <karl@gnu.org>
52713
52714         * config/config.guess: update from prep.
52715
52716 2003-05-22  Karl Berry  <karl@gnu.org>
52717
52718         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
52719
52720 2003-05-20  Karl Berry  <karl@gnu.org>
52721
52722         * config/config.guess: update from prep.
52723
52724 2003-05-18  Karl Berry  <karl@gnu.org>
52725
52726         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
52727         might actually be set by the user.
52728
52729         * config/depcomp, install-sh, mdate-sh: update from automake.
52730
52731 2003-05-17  Bruno Haible  <bruno@clisp.org>
52732
52733         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
52734         invalid expansion for AC_EGREP_CPP.
52735         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
52736         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
52737         Suggested by Akim Demaille <akim@epita.fr> in
52738         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
52739
52740 2003-05-12  Jim Meyering  <jim@meyering.net>
52741
52742         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
52743         the space-padded-by-default conversion specifiers, %e, %k, %l.
52744
52745 2003-05-12  Bruno Haible  <bruno@clisp.org>
52746
52747         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
52748         the string is longer than 4 KB.
52749
52750 2003-05-11  Karl Berry  <karl@gnu.org>
52751
52752         * config/config.{guess,sub}: update from prep.
52753
52754 2003-05-09  Bruno Haible  <bruno@clisp.org>
52755
52756         * modules/error: Add m4/strerror_r.m4 to file list.
52757
52758 2003-05-03  Bruno Haible  <bruno@clisp.org>
52759
52760         Upgrade to Unicode-4.0.
52761         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
52762         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
52763         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
52764         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
52765         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
52766         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
52767         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
52768         Change width of U+E0100..U+E01EF from 1 to 0.
52769
52770 2003-04-25  Jim Meyering  <jim@meyering.net>
52771
52772         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
52773         of type size_t, not int.
52774
52775 2003-04-25  Bruno Haible  <bruno@clisp.org>
52776
52777         * lib/copy-file.c: Include <stddef.h>, for size_t.
52778
52779 2003-04-21  Paul Eggert  <eggert@twinsun.com>
52780
52781         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
52782         code which expansion is under static control.  Patch imported from
52783         Akim Demaille's patch to Bison; see
52784         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
52785
52786 2003-04-14  Bruno Haible  <bruno@clisp.org>
52787
52788         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
52789
52790 2003-04-11  Jim Meyering  <jim@meyering.net>
52791
52792         Merge changes from Coreutils.
52793
52794         2003-03-22  Jim Meyering  <jim@meyering.net>
52795
52796         * lib/strftime.c (widen): Cast alloca return value to proper type.
52797
52798         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
52799
52800         From GNU libc.
52801         * lib/strftime.c (my_strftime): Handle very large width
52802         specifications for numeric values correctly.  Improve checks for
52803         overflow.
52804
52805         2003-01-19  Jim Meyering  <jim@meyering.net>
52806
52807         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
52808         definitions.
52809         (nl_get_alt_digit) [! defined my_strftime]: Define.
52810         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
52811         _nl_get_alt_digit and _nl_get_walt_digit.
52812
52813         * lib/strftime.c (my_strftime): Merge in locale-related changes from
52814         libc. These changes have no effect outside of _LIBC.
52815
52816 2003-04-10  Bruno Haible  <bruno@clisp.org>
52817
52818         * modules/findprog: New file.
52819         * MODULES.html.sh (func_all_modules): Add it.
52820
52821 2003-04-10  Bruno Haible  <bruno@clisp.org>
52822
52823         * m4/findprog.m4: New file.
52824         * m4/eaccess.m4: New file.
52825
52826 2003-04-10  Bruno Haible  <bruno@clisp.org>
52827
52828         * lib/findprog.h: New file, from GNU gettext.
52829         * lib/findprog.c: New file, from GNU gettext.
52830
52831 2003-04-05  Jim Meyering  <jim@meyering.net>
52832
52833         Merge changes from Coreutils.
52834
52835         * lib/exclude.h (PARAMS): Remove definition and uses.
52836         * lib/exclude.c: Remove uses of `PARAMS'.
52837
52838         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
52839         Add test-cases for DOS filenames. Declare program_name.
52840         (main): Set up program_name.  Patch by Rich Dawe.
52841
52842         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
52843         error from mntctl.
52844         Use mntctl's return value to drive the entry-processing loop, since
52845         we can't rely on the value of the vmt_length member in the last
52846         entry.  On some systems doing so could result in exhausting
52847         virtual memory.  Based in part on a patch from Mike Jetzer.
52848
52849 2003-04-04  Bruno Haible  <bruno@clisp.org>
52850
52851         * modules/linebreak: New file.
52852         * MODULES.html.sh (func_all_modules): Add it.
52853
52854 2003-04-04  Bruno Haible  <bruno@clisp.org>
52855
52856         * m4/linebreak.m4: New file.
52857
52858 2003-04-04  Bruno Haible  <bruno@clisp.org>
52859
52860         * lib/linebreak.h: New file, from GNU gettext.
52861         * lib/linebreak.c: New file, from GNU gettext with slight
52862         modifications.
52863         * lib/lbrkprop.h: New file, from GNU gettext.
52864
52865 2003-04-03  Bruno Haible  <bruno@clisp.org>
52866
52867         * modules/utf8-ucs4: New file.
52868         * modules/utf16-ucs4: New file.
52869         * modules/ucs4-utf8: New file.
52870         * modules/ucs4-utf16: New file.
52871         * MODULES.html.sh (func_all_modules): Add them.
52872
52873 2003-04-03  Bruno Haible  <bruno@clisp.org>
52874
52875         * m4/utf-ucs4.m4: New file.
52876         * m4/ucs4-utf.m4: New file.
52877
52878 2003-04-03  Bruno Haible  <bruno@clisp.org>
52879
52880         * lib/utf8-ucs4.h: New file, from GNU gettext.
52881         * lib/utf16-ucs4.h: New file, from GNU gettext.
52882         * lib/ucs4-utf8.h: New file, from GNU gettext.
52883         * lib/ucs4-utf16.h: New file, from GNU gettext.
52884
52885 2003-04-02  Bruno Haible  <bruno@clisp.org>
52886
52887         * modules/binary-io: New file.
52888         * MODULES.html.sh (func_all_modules): Add it.
52889
52890 2003-04-02  Bruno Haible  <bruno@clisp.org>
52891
52892         * lib/binary-io.h: New file, from GNU gettext.
52893
52894 2003-04-01  Bruno Haible  <bruno@clisp.org>
52895
52896         * modules/pathname: New file.
52897         * MODULES.html.sh (func_all_modules): Add it.
52898
52899 2003-04-01  Bruno Haible  <bruno@clisp.org>
52900
52901         * lib/pathname.h: New file, from GNU gettext.
52902         * lib/concatpath.c: New file, from GNU gettext.
52903
52904 2003-03-30  Bruno Haible  <bruno@clisp.org>
52905
52906         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
52907
52908 2003-03-30  Bruno Haible  <bruno@clisp.org>
52909
52910         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
52911         function chown() doesn't exist.
52912
52913 2003-03-28  Bruno Haible  <bruno@clisp.org>
52914
52915         * modules/copy-file: New file.
52916         * MODULES.html.sh (func_all_modules): Add it.
52917
52918 2003-03-28  Bruno Haible  <bruno@clisp.org>
52919
52920         * m4/copy-file.m4: New file.
52921
52922 2003-03-28  Bruno Haible  <bruno@clisp.org>
52923
52924         * lib/copy-file.h: New file, from GNU gettext.
52925         * lib/copy-file.c: New file, from GNU gettext.
52926
52927 2003-03-18  Jim Meyering  <jim@meyering.net>
52928
52929         * lib/quote.c (quote_n): Fix typo in comment.
52930
52931 2003-03-18  Bruno Haible  <bruno@clisp.org>
52932
52933         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
52934         checking.
52935         * m4/onceonly_2_57.m4: Likewise.
52936
52937 2003-03-17  Bruno Haible  <bruno@clisp.org>
52938
52939         * m4/onceonly.m4: Require autoconf 2.54 or newer.
52940         (m4_quote): Remove macro.
52941         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
52942
52943 2003-03-14  Jim Meyering  <jim@meyering.net>
52944
52945         Merge changes from Coreutils.
52946         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
52947         to be const, in order to avoid warnings.
52948         (obstack_room): Likewise.
52949         (obstack_empty_p): Likewise.
52950
52951 2003-03-14  Bruno Haible  <bruno@clisp.org>
52952
52953         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
52954         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
52955
52956 2003-03-13  Paul Eggert  <eggert@twinsun.com>
52957
52958         Merge changes from Bison.
52959         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
52960         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
52961         when compiling Bison 1.875's `bitset bset = obstack_alloc
52962         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
52963         * lib/hash.c: Include <stdbool.h> unconditionally.
52964
52965 2003-03-13  Paul Eggert  <eggert@twinsun.com>
52966
52967         * m4/onceonly.m4 (m4_quote): New macro.
52968         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
52969         Quote AC_FOREACH variable-expansions properly.
52970
52971 2003-03-13  Paul Eggert  <eggert@twinsun.com>
52972
52973         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
52974
52975 2003-03-09  Paul Eggert  <eggert@twinsun.com>
52976
52977         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
52978         Reported by Bruce Becker; see:
52979         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
52980
52981 2003-03-03  Paul Eggert  <eggert@twinsun.com>
52982             Bruno Haible  <bruno@clisp.org>
52983
52984         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
52985         Reported by John Hughes, see
52986         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
52987
52988 2003-02-20  Bruno Haible  <bruno@clisp.org>
52989
52990         * MODULES.html.sh (func_all_modules): Add poll.
52991
52992 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
52993
52994         * modules/poll: New file.
52995
52996 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
52997
52998         * lib/poll_.h: New file.
52999         * lib/poll.c: New file.
53000
53001 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
53002
53003         * m4/poll.m4: New file.
53004
53005 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
53006
53007         * modules/mathl: New file.
53008
53009 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
53010
53011         * lib/mathl.h: New file.
53012         * lib/acosl.c: New file.
53013         * lib/asinl.c: New file.
53014         * lib/atanl.c: New file.
53015         * lib/ceill.c: New file.
53016         * lib/cosl.c: New file.
53017         * lib/expl.c: New file.
53018         * lib/floorl.c: New file.
53019         * lib/frexpl.c: New file.
53020         * lib/ldexpl.c: New file.
53021         * lib/logl.c: New file.
53022         * lib/sincosl.c: New file.
53023         * lib/sinl.c: New file.
53024         * lib/sqrtl.c: New file.
53025         * lib/tanl.c: New file.
53026         * lib/trigl.c: New file.
53027         * lib/trigl.h: New file.
53028
53029 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
53030
53031         * m4/mathl.m4: New file.
53032
53033 2003-02-18  Bruno Haible  <bruno@clisp.org>
53034
53035         * MODULES.html.sh (func_all_modules): Add mathl.
53036
53037 2003-02-17  Bruno Haible  <bruno@clisp.org>
53038
53039         * modules/mkdtemp: New module.
53040         * MODULES.html.sh (func_all_modules): Add it.
53041
53042 2003-02-17  Bruno Haible  <bruno@clisp.org>
53043
53044         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
53045
53046 2003-02-17  Bruno Haible  <bruno@clisp.org>
53047
53048         * lib/mkdtemp.h: New file, from GNU gettext.
53049         * lib/mkdtemp.c: New file, from GNU gettext.
53050
53051 2003-02-02  Jim Meyering  <jim@meyering.net>
53052
53053         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
53054         e.g. glibc-2.2.93.
53055
53056 2003-01-31  Bruno Haible  <bruno@clisp.org>
53057
53058         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
53059         'rpl_rename'.
53060         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
53061         'rpl_strnlen'.
53062         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
53063         'rpl_strtod'.
53064         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
53065         'rpl_utime'.
53066
53067 2003-01-31  Bruno Haible  <bruno@clisp.org>
53068
53069         * lib/rename.c: #undef rename before defining rpl_rename.
53070         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
53071
53072 2003-01-30  Bruno Haible  <bruno@clisp.org>
53073
53074         * modules/vasnprintf, modules/vasprintf: New modules.
53075         * MODULES.html.sh (func_all_modules): Add them.
53076
53077 2003-01-30  Bruno Haible  <bruno@clisp.org>
53078
53079         * m4/signed.m4: New file, from GNU gettext.
53080         * m4/longdouble.m4: New file, from GNU gettext.
53081         * m4/wchar_t.m4: New file, from GNU gettext.
53082         * m4/wint_t.m4: New file, from GNU gettext.
53083         * m4/vasnprintf.m4: New file.
53084         * m4/vasprintf.m4: New file.
53085
53086 2003-01-30  Bruno Haible  <bruno@clisp.org>
53087
53088         * lib/printf-args.h: New file, from GNU gettext.
53089         * lib/printf-args.c: New file, from GNU gettext.
53090         * lib/printf-parse.h: New file, from GNU gettext.
53091         * lib/printf-parse.c: New file, from GNU gettext.
53092         * lib/vasnprintf.h: New file, from GNU gettext.
53093         * lib/vasnprintf.c: New file, from GNU gettext.
53094         * lib/asnprintf.c: New file, from GNU gettext.
53095         * lib/vasprintf.h: New file, from GNU gettext with modifications.
53096         * lib/vasprintf.c: New file, from GNU gettext.
53097         * lib/asprintf.c: New file, from GNU gettext.
53098
53099 2003-01-29  Bruno Haible  <bruno@clisp.org>
53100
53101         * modules/stpncpy: New module.
53102         * MODULES.html.sh (func_all_modules): Add it.
53103
53104 2003-01-29  Bruno Haible  <bruno@clisp.org>
53105
53106         * m4/stpncpy.m4: New file.
53107
53108 2003-01-29  Bruno Haible  <bruno@clisp.org>
53109
53110         * lib/stpncpy.h: New file, from GNU gettext with modifications.
53111         * lib/stpncpy.c: New file, from GNU gettext with modifications.
53112
53113 2003-01-28  Bruno Haible  <bruno@clisp.org>
53114
53115         * modules/c-ctype: New module.
53116         * MODULES.html.sh (func_all_modules): Add it.
53117
53118 2003-01-28  Bruno Haible  <bruno@clisp.org>
53119
53120         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
53121         Paul Eggert.
53122         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
53123         Paul Eggert.
53124
53125 2003-01-27  Bruno Haible  <bruno@clisp.org>
53126
53127         * modules/xsetenv: New module.
53128         * MODULES.html.sh (func_all_modules): Add it.
53129
53130 2003-01-27  Bruno Haible  <bruno@clisp.org>
53131
53132         * lib/xsetenv.h: New file, from GNU gettext.
53133         * lib/xsetenv.c: New file, from GNU gettext.
53134
53135 2003-01-23  Jim Meyering  <jim@meyering.net>
53136
53137         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
53138         from working on systems without dirfd (at least Irix and OSF1/Tru64).
53139
53140 2003-01-23  Bruno Haible  <bruno@clisp.org>
53141
53142         * modules/minmax: New module.
53143         * MODULES.html.sh (func_all_modules): Add it.
53144
53145 2003-01-23  Bruno Haible  <bruno@clisp.org>
53146
53147         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
53148         Eggert.
53149
53150 2003-01-22  Bruno Haible  <bruno@clisp.org>
53151
53152         * modules/exit: New module.
53153         * MODULES.html.sh (func_all_modules): Add it.
53154
53155 2003-01-22  Bruno Haible  <bruno@clisp.org>
53156
53157         * lib/exit.h: New file, from GNU gettext.
53158
53159 2003-01-19  Bruno Haible  <bruno@clisp.org>
53160
53161         * gnulib-tool: Recognize option --extract-maintainer.
53162         (func_get_maintainer): New function.
53163         * modules/*: Add Maintainer entry.
53164
53165 2003-01-16  Jim Meyering  <jim@meyering.net>
53166
53167         * m4/regex.m4: The `regex' struct is both input and output.
53168         Initialize it before each use.  Patch by Tim Waugh.
53169
53170 2003-01-16  Bruno Haible  <bruno@clisp.org>
53171
53172         * MODULES.html.sh: Add a table of contents. Add the module name as
53173         leftmost column. Add hyperlinks.
53174
53175 2003-01-15  Bruno Haible  <bruno@clisp.org>
53176
53177         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
53178
53179 2003-01-15  Bruno Haible  <bruno@clisp.org>
53180
53181         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
53182         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
53183         suffix.
53184
53185 2003-01-15  Bruno Haible  <bruno@clisp.org>
53186
53187         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
53188
53189 2003-01-15  Bruno Haible  <bruno@clisp.org>
53190
53191         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
53192         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
53193
53194 2003-01-14  Jim Meyering  <jim@meyering.net>
53195
53196         * lib/same.c (same_name): Tweak a comment.
53197
53198 2003-01-14  Bruno Haible  <bruno@clisp.org>
53199
53200         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
53201         when a string comparison is sufficient.
53202
53203 2003-01-14  Bruno Haible  <bruno@clisp.org>
53204
53205         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
53206         'unsigned int'.
53207
53208 2003-01-14  Bruno Haible  <bruno@clisp.org>
53209
53210         * lib/hash-pjw.c: Add comment about low quality of this function.
53211
53212 2003-01-13  Bruno Haible  <bruno@clisp.org>
53213
53214         * modules/stpcpy: Distribute lib/stpcpy.h.
53215         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
53216
53217 2003-01-13  Bruno Haible  <bruno@clisp.org>
53218
53219         * modules/*: Add a description.
53220         * modules/strpbrk: Fix Makefile.am snippet.
53221         * modules/strtoimax: Fix dependencies.
53222         * modules/strtoumax: Likewise.
53223
53224 2003-01-13  Bruno Haible  <bruno@clisp.org>
53225
53226         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
53227         * modules/alloca (Makefile.am): All object files depend on alloca.h.
53228         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
53229
53230 2003-01-13  Bruno Haible  <bruno@clisp.org>
53231
53232         * gnulib-tool (func_create_testdir): Store config/* files in the main
53233         directory.
53234         * config.rpath: Move to ...
53235         * config/config.rpath: ... here.
53236         * modules/gettext: Contains config/config.rpath, not config.rpath.
53237         * modules/iconv: Likewise.
53238
53239 2003-01-12  Paul Eggert  <eggert@twinsun.com>
53240
53241         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
53242         to avoid collisions with libcurses and libreadline.
53243
53244         * m4/getstr.m4: Remove.
53245         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
53246
53247 2003-01-12  Paul Eggert  <eggert@twinsun.com>
53248
53249         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
53250         to avoid collisions with libcurses and libreadline.
53251
53252         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
53253         * lib/getstr.h, getstr.c: Remove.
53254         * lib/getline.c: Include "getline.h", to check interface.
53255         Move body of old getstr.c here: this defines MIN_CHUNK and
53256         declares getdelim2, which is renamed from getstr.
53257         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
53258
53259         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
53260         All uses changed.
53261         * lib/linebuffer.h: Likewise.
53262         (readline): Remove backward-compatibility macro.
53263
53264 2003-01-12  Paul Eggert  <eggert@twinsun.com>
53265
53266         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
53267         to avoid collisions with libcurses and libreadline.
53268         * getstr: Remove.
53269         * MODULES.html.sh: Remove getstr.
53270         * modules/getline: Depend on unlocked-io, not getstr.
53271
53272 2003-01-12  Jim Meyering  <jim@meyering.net>
53273
53274         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
53275
53276 2003-01-10  Bruno Haible  <bruno@clisp.org>
53277
53278         * modules/alloca: Change Makefile.am requirements. Simplify Include
53279         requirements. Add lib/alloca_.h to file list.
53280
53281 2003-01-10  Bruno Haible  <bruno@clisp.org>
53282
53283         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
53284
53285 2003-01-10  Bruno Haible  <bruno@clisp.org>
53286
53287         * lib/alloca_.h: New file.
53288         * lib/getdate.y: Unconditionally include alloca.h.
53289         * lib/makepath.c: Likewise.
53290         * lib/setenv.c: Likewise.
53291         * lib/userspec.c: Likewise.
53292
53293 2003-01-09  Karl Berry  <karl@gnu.org>
53294
53295         * MODULES.html.sh: include `dirname $0` in PATH, to find
53296         gnulib-tool.
53297
53298 2003-01-09  Bruno Haible  <bruno@clisp.org>
53299
53300         * modules/stdbool: Change configure.ac, Makefile.am requirements.
53301         Simplify Include requirements. Add lib/stdbool.h.in to file list.
53302
53303 2003-01-09  Bruno Haible  <bruno@clisp.org>
53304
53305         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
53306
53307 2003-01-09  Bruno Haible  <bruno@clisp.org>
53308
53309         * lib/stdbool.h.in: New file.
53310
53311 2003-01-09  Bruno Haible  <bruno@clisp.org>
53312
53313         * gnulib-tool (func_all_modules): Ignore files ending in ~.
53314         * MODULES.html.sh: Likewise.
53315
53316 2003-01-08  Jim Meyering  <jim@meyering.net>
53317
53318         * lib/full-write.c: Undefine and define-away `const' after inclusion
53319         of errno.h, not before.  Suggestion from Bruno Haible.
53320
53321 2003-01-08  Bruno Haible  <bruno@clisp.org>
53322
53323         * modules/full-read: Depend on full-write.
53324
53325 2003-01-08  Bruno Haible  <bruno@clisp.org>
53326
53327         * lib/safe-read.c: Include specification header first, to ensure its
53328         selfcontainedness.
53329         * lib/full-write.c: Likewise.
53330
53331 2003-01-07  Jim Meyering  <jim@meyering.net>
53332
53333         * lib/full-write.c: Rework so that it may serve to define full_read,
53334         too.
53335         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
53336
53337 2003-01-07  Bruno Haible  <bruno@clisp.org>
53338
53339         * lib/strtoimax.c: Include <stdint.h> as an alternative to
53340         <inttypes.h>.
53341         * lib/xstrtol.h: Likewise.
53342         * lib/xstrtoimax.c: Likewise.
53343         * lib/xstrtoumax.c: Likewise.
53344         * lib/human.h: Likewise.
53345
53346         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
53347         on systems that have <inttypes.h> but not <stdint.h>.
53348
53349 2003-01-07  Bruno Haible  <bruno@clisp.org>
53350
53351         * MODULES.html.sh: Add copyright notice.
53352         (missed_files): Omit CVS directory entries.
53353         (func_module): Make it work with sed-3.02.
53354         * MODULES.txt: Remove file.
53355
53356 2003-01-06  Jim Meyering  <jim@meyering.net>
53357
53358         * lib/version-etc.c: Update year in translatable copyright string.
53359
53360 2003-01-03  Karl Berry  <karl@gnu.org>
53361
53362         * config/config.{guess,sub}: update from prep.
53363
53364 2003-01-02  Karl Berry  <karl@gnu.org>
53365
53366         * doc/COPYING.DOC: belatedly updated to 1.2.
53367
53368 2003-01-01  Karl Berry  <karl@gnu.org>
53369
53370         * gnulib-tool (func_verify_module): report module name $module in
53371         error message, not $1.
53372         * gnulib-tool (create-testdir): don't complain if destdir couldn't
53373         be created, only if it doesn't exist.
53374         * gnulib-tool (last_checkin_date): don't expand the $Date here.
53375
53376 2002-12-31  Paul Eggert  <eggert@twinsun.com>
53377
53378         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
53379
53380 2002-12-31  Paul Eggert  <eggert@twinsun.com>
53381
53382         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
53383         memcmp if strcoll doesn't work.
53384
53385 2002-12-31  Bruno Haible  <bruno@clisp.org>
53386
53387         * lib/utime.c (utime_null): No need to call ftruncate if the file was
53388         nonempty.
53389
53390 2002-12-31  Bruno Haible  <bruno@clisp.org>
53391
53392         * lib/memcoll.c (STRCOLL): New macro.
53393         (memcoll): Use it.
53394
53395 2002-12-31  Bruno Haible  <bruno@clisp.org>
53396
53397         * lib/localcharset.h: New file.
53398         * lib/localcharset.c: Include it.
53399         * lib/unicodeio.c: Likewise.
53400
53401 2002-12-31  Bruno Haible  <bruno@clisp.org>
53402
53403         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
53404         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
53405
53406 2002-12-31  Bruno Haible  <bruno@clisp.org>
53407
53408         * lib/getline.h: Include <stddef.h>, for size_t.
53409
53410         * lib/unicodeio.h: Include <stddef.h>, for size_t.
53411         * lib/unicodeio.c: Don't include <stddef.h>.
53412
53413 2002-12-31  Bruno Haible  <bruno@clisp.org>
53414
53415         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
53416         HAVE_TM_ZONE.
53417
53418 2002-12-24  Karl Berry  <karl@gnu.org>
53419
53420         * config/config.guess: update from prep.
53421
53422 2002-12-24  Bruno Haible  <bruno@clisp.org>
53423
53424         General infrasructure.
53425         * m4/README: Rewritten.
53426         * m4/onceonly.m4: New file.
53427         * m4/onceonly_2_57.m4: New file.
53428
53429         Module atexit.
53430         * m4/atexit.m4: New file.
53431
53432         Module strtod.
53433         * m4/strtod.m4: New file.
53434
53435         Module strtol.
53436         * m4/strtol.m4: New file.
53437
53438         Module strtoul.
53439         * m4/strtoul.m4: New file.
53440
53441         Module memchr.
53442         * m4/memchr.m4: New file.
53443
53444         Module memcmp.
53445         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
53446         (jm_FUNC_MEMCMP): Invoke it.
53447
53448         Module memcpy.
53449         * m4/memcpy.m4: New file.
53450
53451         Module memmove.
53452         * m4/memmove.m4: New file.
53453
53454         Module memset.
53455         * m4/memset.m4: New file.
53456
53457         Module strcspn.
53458         * m4/strcspn.m4: New file.
53459
53460         Module strpbrk.
53461         * m4/strpbrk.m4: New file.
53462
53463         Module strstr.
53464         * m4/strstr.m4: New file.
53465
53466         Module strerror.
53467         * m4/strerror.m4: New file.
53468
53469         Module mktime.
53470         * m4/mktime.m4: Renamed from jm-mktime.m4.
53471         (gl_PREREQ_MKTIME): New macro.
53472         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
53473
53474         Module malloc.
53475         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
53476         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
53477         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
53478
53479         Module realloc.
53480         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
53481         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
53482         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
53483
53484         Module strftime.
53485         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
53486         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
53487         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
53488         gl_TM_GMTOFF.
53489         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
53490
53491         Module xalloc.
53492         * m4/xalloc.m4: New file.
53493
53494         Module alloca.
53495         * m4/alloca.m4: New file.
53496
53497         Module putenv.
53498         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
53499         (jm_FUNC_PUTENV): Invoke it.
53500
53501         Module setenv.
53502         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
53503         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
53504         when invoked twice.
53505         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
53506         gt_FUNC_SETENV.
53507
53508         Module memrchr.
53509         * m4/memrchr.m4: New file.
53510
53511         Module stpcpy.
53512         * m4/stpcpy.m4: New file.
53513
53514         Module strcase.
53515         * m4/strcase.m4: New file.
53516
53517         Module strdup.
53518         * m4/strdup.m4: New file.
53519
53520         Module strnlen.
53521         * m4/strnlen.m4: New file.
53522
53523         Module strndup.
53524         * m4/strndup.m4: New file.
53525
53526         Module xstrtod.
53527         * m4/xstrtod.m4: New file.
53528
53529         Module xstrtol.
53530         * m4/xstrtol.m4: New file.
53531
53532         Module getdate.
53533         * m4/getdate.m4: New file.
53534
53535         Module unlocked-io.
53536         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
53537         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
53538         * m4/jm-glibc-io.m4n: Remove file.
53539
53540         Module long-options.
53541         * m4/long-options.m4: New file.
53542
53543         Module md5.
53544         * m4/md5.m4: New file.
53545
53546         Module sha.
53547         * m4/sha.m4: New file.
53548
53549         Module getstr.
53550         * m4/getstr.m4: New file.
53551
53552         Module getline.
53553         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
53554         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
53555         <sys/types.h>, for size_t. Use the function name gnu_getline, not
53556         simply getline. Infoke gl_PREREQ_GETLINE.
53557
53558         Module obstack.
53559         * m4/obstack.m4: New file.
53560
53561         Module hash.
53562         * m4/hash.m4: New file.
53563
53564         Module readtokens.
53565         * m4/readtokens.m4: New file.
53566
53567         Module strverscmp.
53568         * m4/strverscmp.m4: New file.
53569
53570         Module stdbool.
53571         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
53572         OSF/1.
53573
53574         Module strtoll.
53575         * m4/strtoll.m4: New file.
53576
53577         Module strtoull.
53578         * m4/strtoull.m4: New file.
53579
53580         Module strtoimax.
53581         * m4/strtoimax.m4: New file.
53582
53583         Module strtoumax.
53584         * m4/strtoumax.m4: New file.
53585
53586         Module xstrtoimax.
53587         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
53588         jm_AC_PREREQ_XSTRTOIMAX.
53589         Moved the strtol prerequisites to strtol.m4.
53590         Moved the strtoll prerequisites to strtoll.m4.
53591         Moved the strtoimax prerequisites to strtoimax.m4.
53592
53593         Module xstrtoumax.
53594         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
53595         jm_AC_PREREQ_XSTRTOUMAX.
53596         Moved the strtoul prerequisites to strtoul.m4.
53597         Moved the strtoull prerequisites to strtoull.m4.
53598         Moved the strtoumax prerequisites to strtoumax.m4.
53599
53600         Module chown.
53601         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
53602         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
53603
53604         Module dup2.
53605         * m4/dup2.m4: New file.
53606
53607         Module ftruncate.
53608         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
53609         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
53610
53611         Module getgroups.
53612         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
53613         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
53614
53615         Module gettimeofday.
53616         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
53617         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
53618         gl_PREREQ_GETTIMEOFDAY.
53619
53620         Module mkdir.
53621         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
53622         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
53623
53624         Module mkstemp.
53625         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
53626         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
53627         jm_AC_TYPE_UINTMAX_T.
53628         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
53629
53630         Module stat.
53631         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
53632         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
53633
53634         Module lstat.
53635         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
53636         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
53637
53638         Module timespec.
53639         * m4/timespec.m4 (gl_TIMESPEC): New macro.
53640         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
53641         * m4/st_mtim.m4: Indentation.
53642
53643         Module nanosleep.
53644         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
53645         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
53646         gl_PREREQ_NANOSLEEP.
53647
53648         Module regex.
53649         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
53650         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
53651         (gl_REGEX): New macro.
53652
53653         Module rename.
53654         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
53655         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
53656
53657         Module rmdir.
53658         * m4/rmdir.m4: New file.
53659
53660         Module utime.
53661         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
53662         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
53663         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
53664
53665         Module dirname.
53666         * m4/dirname.m4: New file.
53667
53668         Module getopt.
53669         * m4/getopt.m4: New file.
53670
53671         Module unistd-safer.
53672         * m4/unistd-safer.m4: New file.
53673
53674         Module fnmatch.
53675         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
53676         declaration.
53677         (gl_PREREQ_FNMATCH_EXTRA): New macro.
53678         (gl_FUNC_FNMATCH_POSIX): New macro.
53679         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
53680         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
53681         simply fnmatch.
53682
53683         Module exclude.
53684         * m4/exclude.m4: New file.
53685
53686         Module human.
53687         * m4/human.m4: New file.
53688
53689         Module acl.
53690         * m4/acl.m4: Nop.
53691
53692         Module backupfile.
53693         * m4/backupfile.m4: New file.
53694         * m4/d-ino.m4: Indentation.
53695
53696         Module fsusage.
53697         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
53698         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
53699         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
53700
53701         Module dirfd.
53702         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
53703         requirements.
53704
53705         Module euidaccess.
53706         * m4/euidaccess.m4: New file.
53707
53708         Module file-type.
53709         * m4/file-type.m4: New file.
53710
53711         Module fileblocks.
53712         * m4/fileblocks.m4: New file.
53713
53714         Module filemode.
53715         * m4/filemode.m4: New file.
53716
53717         Module isdir.
53718         * m4/isdir.m4: New file.
53719
53720         Module lchown.
53721         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
53722         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
53723
53724         Module makepath.
53725         * m4/makepath.m4: New file.
53726
53727         Module modechange.
53728         * m4/modechange.m4: New file.
53729
53730         Module mountlist.
53731         * m4/mountlist.m4: New file.
53732         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
53733         Indentation.
53734
53735         Module path-concat.
53736         * m4/path-concat.m4: New file.
53737
53738         Module pathmax.
53739         * m4/pathmax.m4: New file.
53740
53741         Module same.
53742         * m4/same.m4: New file.
53743
53744         Module save-cwd.
53745         * m4/save-cwd.m4: New file.
53746
53747         Module savedir.
53748         * m4/savedir.m4: New file.
53749
53750         Module xgetcwd.
53751         * m4/xgetcwd.m4: New file.
53752         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
53753
53754         Module xreadlink.
53755         * m4/xreadlink.m4: New file.
53756
53757         Module safe-read.
53758         * m4/safe-read.m4: New file.
53759
53760         Module safe-write.
53761         * m4/safe-write.m4: New file.
53762
53763         Module closeout.
53764         * m4/closeout.m4: New file.
53765
53766         Module stdio-safer.
53767         * m4/stdio-safer.m4: New file.
53768
53769         Module getpass.
53770         * m4/getpass.m4: New file.
53771
53772         Module getugroups.
53773         * m4/getugroups.m4: New file.
53774
53775         Module group-member.
53776         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
53777         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
53778
53779         Module idcache.
53780         * m4/idcache.m4: New file.
53781
53782         Module userspec.
53783         * m4/userspec.m4: New file.
53784
53785         Module gettime.
53786         * m4/clock_time.m4: New file.
53787         * m4/gettime.m4: New file.
53788
53789         Module settime.
53790         * m4/settime.m4: New file.
53791
53792         Module posixtm.
53793         * m4/posixtm.m4: New file.
53794
53795         Module gethostname.
53796         * m4/gethostname.m4: New file.
53797
53798         Module canon-host.
53799         * m4/canon-host.m4: New file.
53800
53801         Module gettext.
53802         * m4/codeset.m4: New file, from gettext-0.11.5.
53803         * m4/gettext.m4: New file, from gettext-0.11.5.
53804         * m4/glibc21.m4: New file, from gettext-0.11.5.
53805         * m4/iconv.m4: New file, from gettext-0.11.5.
53806         * m4/intdiv0.m4: New file, from gettext-0.11.5.
53807         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
53808         * m4/inttypes.m4: New file, from gettext-0.11.5.
53809         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
53810         * m4/isc-posix.m4: New file, from gettext-0.11.5.
53811         * m4/lcmessage.m4: New file, from gettext-0.11.5.
53812         * m4/lib-ld.m4: New file, from gettext-0.11.5.
53813         * m4/lib-link.m4: New file, from gettext-0.11.5.
53814         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
53815         * m4/progtest.m4: New file, from gettext-0.11.5.
53816         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
53817         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
53818         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
53819
53820         Module localcharset.
53821         * m4/localcharset.m4: New file.
53822
53823         Module hard-locale.
53824         * m4/hard-locale.m4: New file.
53825
53826         Module mbswidth.
53827         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
53828         onceonly macros.
53829         * m4/mbrtowc.m4: Add comment.
53830
53831         Module memcasecmp.
53832         * m4/memcasecmp.m4: New file.
53833
53834         Module memcoll.
53835         * m4/memcoll.m4: New file.
53836
53837         Module unicodeio.
53838         * m4/unicodeio.m4: New file.
53839
53840         Module rpmatch.
53841         * m4/rpmatch.m4: New file.
53842
53843         Module yesno.
53844         * m4/yesno.m4: New file.
53845
53846         Module exitfail.
53847         * m4/exitfail.m4: New file.
53848
53849         Module c-stack.
53850         * m4/c-stack.m4 (gl_C_STACK): New macro.
53851         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
53852
53853         Module error.
53854         * m4/error.m4 (gl_ERROR): New macro.
53855         (jm_PREREQ_ERROR): Use onceonly macros.
53856
53857         Module fatal.
53858         * m4/fatal.m4: New file.
53859
53860         Module getloadavg.
53861         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
53862         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
53863
53864         Module getpagesize.
53865         * m4/getpagesize.m4: New file.
53866
53867         Module getusershell.
53868         * m4/getusershell.m4: New file.
53869
53870         Module physmem.
53871         * m4/physmem.m4: New file.
53872
53873         Module posixver.
53874         * m4/posixver.m4: New file.
53875
53876         Module quotearg.
53877         * m4/quotearg.m4: New file.
53878
53879         Module quote.
53880         * m4/quote.m4: New file.
53881
53882         Module readutmp.
53883         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
53884
53885         Module sig2str.
53886         * m4/sig2str.m4: New file.
53887
53888         Other.
53889         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
53890         ulonglong.m4.
53891         * m4/intmax_t.m4: New file.
53892         * m4/d-type.m4: Indentation.
53893         * m4/jm-macros.m4: Update.
53894         * m4/prereq.m4 (jm_PREREQ): Update.
53895         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
53896         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
53897         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
53898         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
53899         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
53900         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
53901         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
53902         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
53903         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
53904         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
53905         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
53906         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
53907         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
53908         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
53909         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
53910         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
53911         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
53912         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
53913         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
53914
53915 2002-12-24  Bruno Haible  <bruno@clisp.org>
53916
53917         * MODULES.txt: Update according to m4/ changes.
53918
53919         Module gettext.
53920         * config.rpath: New file, from gettext-0.11.5.
53921
53922         * modules/*: New module descriptions.
53923         * gnulib-tool: New file.
53924         * MODULES.html.sh: New file.
53925
53926 2002-12-21  Karl Berry  <karl@gnu.org>
53927
53928         * doc/fdl.texi: update to version 1.2.
53929
53930 2002-12-19  Karl Berry  <karl@gnu.org>
53931
53932         * config/config.guess: update from prep.
53933
53934 2002-12-18  Bruno Haible  <bruno@clisp.org>
53935
53936         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
53937         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
53938
53939 2002-12-17  Bruno Haible  <bruno@clisp.org>
53940
53941         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
53942         stdlib.h, string.h.
53943
53944 2002-12-17  Bruno Haible  <bruno@clisp.org>
53945
53946         * lib/canon-host.c (strdup): Remove unused declaration.
53947
53948         * lib/fsusage.c: Include full_read.h.
53949         (get_fs_usage): Use full_read instead of safe_read.
53950
53951         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
53952
53953 2002-12-12  Karl Berry  <karl@gnu.org>
53954
53955         * config/config.guess: update from prep.
53956
53957 2002-12-11  Bruno Haible  <bruno@clisp.org>
53958
53959         * m4/setenv.m4: New file, from gettext-0.11.5.
53960
53961 2002-12-11  Bruno Haible  <bruno@clisp.org>
53962
53963         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
53964         not unsetenv().
53965         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
53966         modifications:
53967
53968         2002-12-11  Bruno Haible  <bruno@clisp.org>
53969
53970                 * setenv.c (alloca): Fall back to malloc.
53971                 (freea): New macro.
53972                 (setenv): Use freea() to free memory allocated with alloca().
53973
53974         2002-11-13  Bruno Haible  <bruno@clisp.org>
53975
53976                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
53977                 function declarations.
53978                 * unsetenv.c (unsetenv): Likewise.
53979
53980         2002-03-04  Bruno Haible  <bruno@clisp.org>
53981
53982                 Portability to AIX 4.3.3.
53983                 * unsetenv.c: New file, extracted from setenv.c.
53984                 * setenv.c: Move the unsetenv() function to unsetenv.c.
53985
53986         2001-12-20  Bruno Haible  <bruno@clisp.org>
53987
53988                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
53989                 use malloc instead. For SunOS 4.
53990
53991         2001-12-11  Bruno Haible  <bruno@clisp.org>
53992
53993                 * setenv.c: Declare alloca.
53994                 (compar_fn_t): New typedef.
53995                 (KNOWN_VALUE, STORE_VALUE): Use it.
53996
53997         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
53998         setenv.h.
53999
54000 2002-12-10  Paul Eggert  <eggert@twinsun.com>
54001
54002         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
54003         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
54004         Choose values that are less likely to collide with system fnmatch
54005         options.
54006         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
54007         defined (e.g., a pure POSIX system).
54008         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
54009         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
54010
54011 2002-12-06  Paul Eggert  <eggert@twinsun.com>
54012
54013         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
54014         a pain in practice to deal with generated m4 files.  This change
54015         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
54016
54017         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
54018         and jm-glibc-io.m4, as they are no longer a special case.
54019         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
54020         kludge and the auto-generation stuff.  Check only whether the
54021         functions are declared, not whether they exist, since older hosts
54022         that don't declare the functions can't use the optimization anyway.
54023
54024 2002-12-06  Jim Meyering  <jim@meyering.net>
54025
54026         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
54027
54028         Merge in changes from libc's misc/error.c, in preparation
54029         for the merge of gnulib's changes back into libc.
54030
54031         * lib/error.c (_): Define only if not already defined.
54032         Move definition to follow all #include directives.
54033         Include unlocked-io.h only if !_LIBC.
54034         [_LIBC]: Include <libio/libioP.h>.
54035         [USE_IN_LIBIO]: Include <libio/iolibio.h>
54036         (fflush): Tweak definition to use INTUSE.
54037         (putc): Define.
54038
54039 2002-12-05  Paul Eggert  <eggert@twinsun.com>
54040
54041         * lib/alloca.c [defined emacs]: Include "lisp.h".
54042         (xalloc_die) [defined emacs]: New macro.
54043         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
54044         [! defined emacs]: Include <xalloc.h>.
54045         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
54046         (pointer): Typedef to POINTER_TYPE *.
54047         (malloc): Remove decl; we now always use xmalloc.
54048         (alloca): Use old-style definition, since Emacs needs this.
54049         Check for arithmetic overflow when computing combined size.
54050
54051 2002-12-04  Paul Eggert  <eggert@twinsun.com>
54052
54053         Do not generate unlocked-io.h automatically, since it's easier to
54054         maintain it by hand.
54055
54056         * lib/unlocked-io.h: New file, from GNU diffutils,
54057         but with proper copyright notice and attribution.
54058         * lib/gen-uio: Remove.
54059         * lib/Makefile.am: Add copyright notice.
54060         (libfetish_a_SOURCES): Add unlocked-io.h.
54061         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
54062         (DISTCLEANFILES, io_functions): Remove macros.
54063         (EXTRA_DIST): Remove gen_uio.
54064         (unlocked-io.h): Remove rule.
54065
54066 2002-12-04  Jim Meyering  <jim@meyering.net>
54067
54068         Reflect the fact that stat.c and lstat.c are no longer generated.
54069         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
54070         (DISTCLEANFILES): Likewise.
54071         (EXTRA_DIST): Likewise.
54072         (all_local): Don't depend on stat.c or lstat.c.
54073         (stat.c, lstat.c): Remove rules.
54074         (EXTRA_DIST): Remove xstat.in.
54075
54076         * lib/xstat.in: Remove file.  Contents moved into stat.c.
54077         * lib/stat.c: New file.  Contents mostly from xstat.in.
54078         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
54079         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
54080
54081         * lib/safe-read.c: Rework so that it may serve to define safe_write,
54082         too.
54083         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
54084
54085 2002-12-03  Jim Meyering  <jim@meyering.net>
54086
54087         * lib/safe-read.c, safe-write.c: Change variable names and comments,
54088         but not semantics, to minimize the differences between these two files.
54089         (safe_read): Change comment to mention SAFE_READ_ERROR.
54090
54091         * lib/safe-read.c (IS_EINTR): Define.
54092         (safe_read): Use IS_EINTR in place of in-function cpp directives.
54093
54094 2002-12-02  Jim Meyering  <jim@meyering.net>
54095
54096         * lib/safe-read.c (EINTR): Define.
54097         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
54098         (INT_MAX): Provide fallback.
54099         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
54100
54101         * lib/safe-read.h (SAFE_READ_ERROR): Define.
54102
54103 2002-12-02  Bruno Haible  <bruno@clisp.org>
54104
54105         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
54106         Define, taken from safe-read.c.
54107         (INT_MAX): Provide fallback.
54108         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
54109         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
54110
54111         * lib/safe-read.c (EINTR): Remove definition.
54112         (safe_read): Don't use EINTR if it is absent.
54113
54114 2002-12-01  Jim Meyering  <jim@meyering.net>
54115
54116         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
54117         zero.
54118         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
54119
54120 2002-11-27  Paul Eggert  <eggert@twinsun.com>
54121
54122         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
54123         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
54124         with `if (! (value < limit)) abort ();', for readability.
54125
54126 2002-11-26  Karl Berry  <karl@gnu.org>
54127
54128         * lib/strdup.c: copy from libc again, with jim's ok.
54129         * lib/.cppi-disable: re-add strdup.c
54130
54131 2002-11-25  Karl Berry  <karl@gnu.org>
54132
54133         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
54134         instead of "strtol.c".
54135
54136 2002-11-25  Karl Berry  <karl@gnu.org>
54137
54138         * config/install-sh: update from automake for variable quoting, $0 in
54139         error msgs, etc.
54140
54141         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
54142         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
54143         entry.
54144
54145 2002-11-25  Jim Meyering  <jim@meyering.net>
54146
54147         * lib/mktime.c: Sync from libc, now that it has the latest fix.
54148
54149 2002-11-24  Karl Berry  <karl@gnu.org>
54150
54151         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
54152         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
54153
54154 2002-11-24  Jim Meyering  <jim@meyering.net>
54155
54156         Update from coreutils:
54157
54158         * lib/mktime.c: Merge in changes from libc.
54159
54160         Avoid a link-time failure on some Linux systems.
54161         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
54162         (otherwise).
54163         (__mon_yday): Declare with the STATIC attribute.
54164         (__mktime_internal): Likewise.
54165         Based on a report from Greg Schafer.
54166
54167 2002-11-23  Jim Meyering  <jim@meyering.net>
54168
54169         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
54170         Use `unsigned', not `int', as type of index.
54171
54172         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
54173
54174         * lib/fsusage.c: Remove unneeded parentheses around operands of
54175         `defined'.
54176
54177 2002-11-22  Paul Eggert  <eggert@twinsun.com>
54178
54179         * lib/quotearg.h: Allow multiple inclusion by surrounding with
54180         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
54181         so that we can be included first.
54182         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
54183         * lib/quotearg.c: Include quotearg.h immediately after config.h.
54184         No need to include stddef.h or sys/types.h any more.
54185         Surround local include files with "", not "<>".
54186         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
54187         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
54188         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
54189         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
54190         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
54191         (ISPRINT): Remove; no longer needed now that we assume C89.
54192
54193         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
54194         Preserve errno.
54195
54196         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
54197         quotearg_char): Use SIZE_MAX rather than
54198         (size_t) -1 when we are talking about "infinity".
54199
54200         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
54201
54202 2002-11-22  Paul Eggert  <eggert@twinsun.com>
54203
54204         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
54205         hint that one should use `if (! x) abort ();' rather than `assert
54206         (x);', and anyway it's one less thing to worry about configuring.
54207         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
54208         hash_rehash, hash_insert): Use abort rather than assert.
54209
54210 2002-11-22  Bruno Haible  <bruno@clisp.org>
54211
54212         * lib/safe-read.h: Assume C89. Add comments.
54213         (safe_read): Change return type to size_t.
54214         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
54215         byte counts > SSIZE_MAX correctly.
54216         * lib/safe-write.h: New file.
54217         * lib/safe-write.c: New file.
54218         * lib/full-read.h: New file.
54219         * lib/full-read.c: New file.
54220         * lib/full-write.h: Assume C89. Add comments.
54221         * lib/full-write.c: Include safe-write.h.
54222         (full_write): Rewritten to use safe_write.
54223         Suggested by Jim Meyering and Paul Eggert.
54224
54225 2002-11-21  Jim Meyering  <jim@meyering.net>
54226
54227         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
54228
54229         Merge in changes from the coreutils.
54230
54231         2002-09-25  Paul Eggert  <eggert@twinsun.com>
54232         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
54233         <stdint.h>.
54234         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
54235         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
54236         int.  Work more efficiently if X is the same width as uintmax_t.
54237         Do not compare X to -1, to avoid bogus compiler warning.
54238         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
54239         Don't assume that f_frsize and f_bsize are the same type.
54240
54241         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
54242         warning on FreeBSD.
54243
54244         * lib/makepath.c (make_path): Restore umask *before* creating the final
54245         component.
54246         (make_path): Minor reformatting.
54247
54248         * lib/xmalloc.c: Adjust to work with new autoconf macros,
54249         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
54250         HAVE_MALLOC/HAVE_REALLOC.
54251
54252         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
54253         dummy ones.  At least on GNU/Linux systems, `auto' means something
54254         else.
54255         From Michael Stone.
54256
54257 2002-11-21  Bruno Haible  <bruno@clisp.org>
54258
54259         Remove case insensitive option matching.
54260         * lib/argmatch.h (argcasematch): Remove declaration.
54261         (ARGCASEMATCH): Remove macro.
54262         (__xargmatch_internal): Remove case_sensitive argument.
54263         (XARGMATCH): Update.
54264         (XARGCASEMATCH): Remove macro.
54265         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
54266         case_sensitive argument.
54267         (argcasematch): Remove function.
54268         (__xargmatch_internal): Remove case_sensitive argument.
54269         (main): Use XARGMATCH instead of XARGCASEMATCH.
54270
54271         * lib/xmalloc.c: Change compile-time error message. Add comment about
54272         required autoconf version.
54273
54274 2002-11-20  Paul Eggert  <eggert@twinsun.com>
54275
54276         Merge argmatch cleanups from Bison.  Assume C89.
54277
54278         * lib/argmatch.c: Include config.h here, not in argmatch.h.
54279         Include stdlib.h, for EXIT_FAILURE.
54280         Always include <string.h>, since we assume C89.
54281         (EXIT_FAILURE): Remove pre-C89 bug workaround.
54282         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
54283         Include <stddef.h> instead, since it's all we need for size_t.
54284         (PARAMS): Remove.  All uses removed.
54285         (ARRAY_CARDINALITY): Do not bother to #undef.
54286         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
54287         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
54288         Remove unnecessary parentheses.
54289         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
54290         Insert necessary parentheses.
54291         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
54292         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
54293
54294 2002-11-19  Bruno Haible  <bruno@clisp.org>
54295
54296         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
54297         * lib/mbswidth.h: Include <stddef.h>, for size_t.
54298
54299         * lib/mbswidth.h (PARAMS): Remove macro.
54300         (mbswidth, mbsnwidth): Use ANSI C function declarations.
54301         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
54302
54303         * lib/gcd.h (PARAMS): Remove macro.
54304         (gcd): Use ANSI C function declarations.
54305         * lib/gcd.c (gcd): Likewise.
54306
54307 2002-11-15  Bruno Haible  <bruno@clisp.org>
54308
54309         * lib/strcspn.c: Include <stddef.h>.
54310         (strcspn): Use ANSI C function declaration. Change return type to
54311         size_t. Use NULL.
54312         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
54313         (strpbrk): Use NULL.
54314         * lib/strpbrk.h (PARAMS): Remove macro.
54315         (strpbrk): Use ANSI C function declaration.
54316         * lib/strstr.c: Don't include <sys/types.h>.
54317         * lib/strstr.h (PARAMS): Remove macro.
54318         (strstr): Use ANSI C function declarations.
54319
54320 2002-11-14  Karl Berry  <karl@gnu.org>
54321
54322         * config/mkinstalldirs: `do' on separate line, instead of
54323         `for var; do'.
54324
54325 2002-11-06  Bruno Haible  <bruno@clisp.org>
54326
54327         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
54328         * lib/gcd.c (gcd): Likewise.
54329
54330 2002-11-05  Bruno Haible  <bruno@clisp.org>
54331
54332         * lib/gcd.h: New file, from gettext-0.11.5.
54333         * lib/gcd.c: New file, from gettext-0.11.5.
54334
54335 2002-11-05  Bruno Haible  <bruno@clisp.org>
54336
54337         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
54338         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
54339         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
54340         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
54341
54342         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
54343         <libintl.h>.
54344         * lib/makepath.c: Include gettext.h instead of <locale.h> and
54345         <libintl.h>.
54346
54347         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
54348         * lib/human.c: Include gettext.h instead of <libintl.h>.
54349         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
54350         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
54351         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
54352         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
54353         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
54354         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
54355         (textdomain): Remove definition.
54356         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
54357
54358         * lib/long-options.c: Remove include of <libintl.h> and definition of
54359         _.
54360         * lib/same.c: Remove include of <libintl.h> and definition of _.
54361
54362 2002-11-04  Owen Taylor  <otaylor@redhat.com>
54363
54364         * lib/config.charset: A few additions for Solaris.
54365
54366 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
54367
54368         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
54369         * lib/localcharset.c (locale_charset): Declare as extern "C".
54370
54371 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
54372
54373         * lib/config.charset: msdos in uk_UA uses CP1125.
54374
54375 2002-11-04  Bruno Haible  <bruno@clisp.org>
54376
54377         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
54378         * lib/strcase.h: New file, from GNU gettext-0.11.5.
54379         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
54380         * lib/strstr.h: New file, from GNU gettext-0.11.5.
54381         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
54382
54383 2002-11-04  Bruno Haible  <bruno@clisp.org>
54384
54385         * lib/localcharset.c (locale_charset): Don't return an empty string.
54386
54387 2002-11-04  Bruno Haible  <bruno@clisp.org>
54388
54389         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
54390         aliases.
54391
54392 2002-11-04  Bruno Haible  <bruno@clisp.org>
54393
54394         * lib/config.charset: Update for newest glibc. Add canonical names
54395         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
54396
54397 2002-11-04  Bruno Haible  <bruno@clisp.org>
54398
54399         * lib/config.charset: Add support for NetBSD.
54400
54401 2002-11-04  Bruno Haible  <bruno@clisp.org>
54402
54403         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
54404
54405 2002-11-01  Bruno Haible  <bruno@clisp.org>
54406
54407         * configure.in: Add AC_CONFIG_AUX_DIR call.
54408         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
54409         test/Makefile.
54410         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
54411
54412 2002-09-28  Karl Berry  <karl@gnu.org>
54413
54414         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
54415         installed automake until the next release, since changes have been
54416         made.
54417
54418 2002-09-25  Karl Berry  <karl@gnu.org>
54419
54420         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
54421         * lib/getopt*: copy from libc/posix.
54422         * lib/gettext.h: copy from gettext.
54423         * lib/.cppi-disable: add strdup.c, gettext.h.
54424
54425 2002-09-25  Karl Berry  <karl@gnu.org>
54426
54427         * config/srclist.txt: enable gettext.h check.
54428         * config/config.{guess,sub}: update from prep.
54429         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
54430                 from automake 1.6.3.
54431         See srclist*.
54432
54433 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
54434
54435         * regex.c (PATFETCH): Remove the translating fetch.
54436         (PATFETCH_RAW): Rename to PATFETCH.
54437         (set_image_of_range): New fun.
54438         (SET_RANGE_TABLE_WORK_AREA): Use it.
54439         (regex_compile): Don't translate the pattern chars so eagerly.
54440         Only do it when inserting an `exactn' bytecode or when handling
54441         a char-range.
54442         (mutually_exclusive_p): Avoid empty statement.
54443
54444 2002-07-06  Jim Meyering  <meyering@lucent.com>
54445
54446         * m4/README: Don't mention Makefile.am.in.
54447         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
54448
54449 2002-07-01  Jim Meyering  <meyering@lucent.com>
54450
54451         * lib/c-stack.c: Include sys/time.h.
54452         From Volker Borchert.
54453
54454 2002-06-26  Paul Eggert  <eggert@twinsun.com>
54455
54456         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
54457
54458 2002-06-26  Paul Eggert  <eggert@twinsun.com>
54459
54460         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
54461         New macro.  Use it uniformly instead of
54462         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
54463         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
54464         reported by Vin Shelton.
54465
54466 2002-06-22  Paul Eggert  <eggert@twinsun.com>
54467
54468         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
54469         Do not assume SA_SIGINFO behavior.
54470         Bug reported by Jim Meyering on NetBSD 1.5.2.
54471
54472 2002-06-22  Jim Meyering  <meyering@lucent.com>
54473
54474         * m4/c-stack.m4: New file, from diffutils-2.8.2.
54475         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
54476
54477         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
54478         now that configure.ac uses AC_GNU_SOURCE.
54479         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
54480         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
54481
54482         Update to latest tools.  Suggestions from Paul Eggert.
54483         * m4/stdbool.m4: New file, from diffutils-2.8.2.
54484         * m4/gnu-source.m4: Update from diffutils-2.8.2.
54485         * m4/fnmatch.m4: Likewise.
54486         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
54487         to AC_HEADER_STDBOOL
54488
54489 2002-06-22  Jim Meyering  <meyering@lucent.com>
54490
54491         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
54492         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
54493
54494 2002-06-22  Jim Meyering  <meyering@lucent.com>
54495
54496         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
54497
54498         * lib/exitfail.c, exitfail.h: Likewise.
54499         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
54500
54501         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
54502         of fnmatch.h.
54503         (EXTRA_DIST): Add fnmatch_loop.c.
54504         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
54505
54506         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
54507         * lib/fnmatch.c: Update from diffutils-2.8.2.
54508         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
54509         * lib/fnmatch.h: Remove file.
54510
54511 2002-06-21  Jim Meyering  <meyering@lucent.com>
54512
54513         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
54514         * m4/mbrtowc.m4: Likewise.
54515
54516         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
54517         * m4/mbswidth.m4: Reflect name change:
54518         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
54519         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
54520
54521         * m4/lib-link.m4: Update from gettext-0.11.2.
54522         * m4/gettext.m4: Likewise.
54523
54524         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
54525         From Alfred M. Szmidt.
54526
54527 2002-06-18  Paul Eggert  <eggert@twinsun.com>
54528
54529         * lib/file-type.h: Report an error if neither S_ISREG nor
54530         S_IFREG is defined, instead of using a test specific to glibc
54531         2.2.  This should be safe, since POSIX requires S_ISREG and
54532         Unix Version 7 had S_IFREG.  We don't need to check for
54533         <sys/types.h> since we don't use any symbols that it defines.
54534
54535 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
54536
54537         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
54538         $@-t, so that each temporary file name is unique and valid in the first
54539         8 characters, for operation under DOS.
54540
54541 2002-06-15  Paul Eggert  <eggert@twinsun.com>
54542
54543         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
54544
54545 2002-06-15  Jim Meyering  <meyering@lucent.com>
54546
54547         Work even with DJGPP 2.03, which lacks support for symlinks.
54548         From Richard Dawe.
54549         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
54550         is defined.
54551         * lib/lchown.c (S_ISLNK): Likewise.
54552
54553 2002-06-15  Jim Meyering  <meyering@lucent.com>
54554
54555         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
54556         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
54557         have been included before this file.
54558
54559 2002-06-14  Jim Meyering  <meyering@lucent.com>
54560
54561         * lib/file-type.h: Use the version from diffutils-2.8.2.
54562         * lib/file-type.c: Likewise.
54563
54564 2002-06-07  Jim Meyering  <meyering@lucent.com>
54565
54566         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
54567         They're needed at least for NetBSD 1.5.2.
54568         ($statxfs_includes): Include those same headers.
54569         ($statxfs_includes): Include sys/vfs.h if available.
54570         ($statxfs_includes): Likewise for sys/statvfs.h.
54571         Check for the following members in both structs statfs and statvfs:
54572         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
54573
54574 2002-06-01  Jim Meyering  <meyering@lucent.com>
54575
54576         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
54577         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
54578
54579 2002-05-28  Jim Meyering  <meyering@lucent.com>
54580
54581         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
54582         Reported by Volker Borchert.
54583
54584 2002-05-27  Jim Meyering  <meyering@lucent.com>
54585
54586         Fix a problem seen only on nonconforming systems whereby ls.c's
54587         use of localtime, and then of gettimeofday would cause trouble:
54588         the localtime call used to initialize rpl_gettimeofday's save
54589         mechanism would clobber ls's current local time information so
54590         that in any long listing the first file would always be listed
54591         with date 1970-01-01.  Analysis by Volker Borchert.
54592
54593         * lib/gettimeofday.c (localtime): Undefine.
54594         (rpl_localtime): New function.
54595
54596 2002-05-27  Jim Meyering  <meyering@lucent.com>
54597
54598         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
54599         localtime.
54600
54601         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
54602         use the replacement function; it wouldn't resolve at link time.
54603         Reported by Volker Borchert.
54604
54605 2002-05-22  Jim Meyering  <meyering@lucent.com>
54606
54607         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
54608         file-type.h.
54609         * lib/file-type.h: New file.
54610         * lib/file-type.c (file_type): New file/function.  Extracted from
54611         diffutils.
54612
54613 2002-04-30  Jim Meyering  <meyering@lucent.com>
54614
54615         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
54616
54617 2002-04-29  Paul Eggert  <eggert@twinsun.com>
54618
54619         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
54620
54621 2002-04-29  Paul Eggert  <eggert@twinsun.com>
54622
54623         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
54624         Do not check for alloca.h (no longer used) or stdbool.h (was never
54625         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
54626
54627 2002-04-29  Paul Eggert  <eggert@twinsun.com>
54628
54629         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
54630
54631 2002-04-29  Jim Meyering  <meyering@lucent.com>
54632
54633         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
54634         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
54635         Use AC_FUNC_STRNLEN here instead.
54636
54637         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
54638         With autoconf-2.53a, it's part of AC_PROG_CC.
54639
54640 2002-04-28  Paul Eggert  <eggert@twinsun.com>
54641
54642         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
54643         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
54644
54645 2002-04-28  Paul Eggert  <eggert@twinsun.com>
54646
54647         * lib/sig2str.h, lib/sig2str.c: New files.
54648         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
54649
54650 2002-04-28  Paul Eggert  <eggert@twinsun.com>
54651
54652         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
54653         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
54654         of 127, since 64 is the largest conceivable number for ancient
54655         nonstandard hosts.
54656         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
54657
54658 2002-04-28  Jim Meyering  <meyering@lucent.com>
54659
54660         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
54661
54662 2002-04-24  Jim Meyering  <meyering@lucent.com>
54663
54664         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
54665         (jm_PREREQ): Use it.
54666
54667         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
54668         mach/mach.h fcntl.h.
54669         Check for this function: setlocale.
54670
54671 2002-04-24  Jim Meyering  <meyering@lucent.com>
54672
54673         * lib/gettext.h: New file, from Gettext.
54674         * lib/Makefile.am (INCLUDES): Remove -I../intl.
54675         (libfetish_a_SOURCES): Add gettext.h.
54676
54677 2002-04-16  Jim Meyering  <meyering@lucent.com>
54678
54679         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
54680         ut_pid, ut_id, ut_exit.
54681
54682 2002-04-16  Jim Meyering  <meyering@lucent.com>
54683
54684         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
54685         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
54686         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
54687
54688 2002-04-12  Jim Meyering  <meyering@lucent.com>
54689
54690         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
54691         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
54692         existence of the getmntinfo function.  Needed for Darwin 5.3.
54693
54694         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
54695         This is necessary at least on Darwin 5.3.
54696
54697         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
54698         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
54699         strnlen.o in the library, and that makes some versions of ranlib
54700         object.
54701
54702 2002-04-12  Jim Meyering  <meyering@lucent.com>
54703
54704         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
54705
54706 2002-04-09  Jim Meyering  <meyering@lucent.com>
54707
54708         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
54709         to be more precise.  Rather than saying we're checking whether the
54710         function `works', say what we're testing.
54711         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
54712         Reported by Bruno Haible.
54713
54714 2002-03-10  Jim Meyering  <meyering@lucent.com>
54715
54716         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
54717         Suggestion from Santiago Vila.
54718
54719 2002-03-08  Jim Meyering  <meyering@lucent.com>
54720
54721         * lib/rename.c: Mention that this wrapper is needed also on
54722         mips-dec-ultrix4.4 systems.
54723
54724 2002-03-02  Jim Meyering  <meyering@lucent.com>
54725
54726         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
54727         not HAVE_CLOCK_SETTIME.
54728
54729 2002-02-27  Paul Eggert  <eggert@twinsun.com>
54730
54731         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
54732         Check for clock_settime.
54733
54734 2002-02-27  Paul Eggert  <eggert@twinsun.com>
54735
54736         * lib/nanosleep.h: Rename to....
54737         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
54738
54739         * lib/gettime.c: New file.
54740         * lib/settime.c: New file.
54741         * lib/stime.c: Remove.
54742
54743         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
54744         timespec.h.  Remove nanosleep.h.
54745
54746 2002-02-25  Paul Eggert  <eggert@twinsun.com>
54747
54748         * m4/acl.m4: New file.
54749         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
54750         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
54751
54752 2002-02-25  Paul Eggert  <eggert@twinsun.com>
54753
54754         * lib/acl.c, lib/acl.h: New files.
54755         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
54756
54757 2002-02-24  Jim Meyering  <meyering@lucent.com>
54758
54759         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
54760         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
54761         cause trouble.  Reported by Nelson Beebe.
54762
54763 2002-02-23  Paul Eggert  <eggert@twinsun.com>
54764
54765         * lib/path-concat.c (xpath_concat): Reorder code to pacify
54766         compilers that don't know that xalloc_die never returns.
54767
54768 2002-02-20  Jim Meyering  <meyering@lucent.com>
54769
54770         * lib/getdate.c: Regenerate using bison-1.33.
54771
54772 2002-02-17  Jim Meyering  <meyering@lucent.com>
54773
54774         * config/config.guess (main): Don't use `head -1'; it's no longer
54775         portable. Use `sed 1q' instead.
54776
54777 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
54778
54779         * m4/codeset.m4: Upgrade to gettext-0.11.
54780         * m4/gettext.m4: Upgrade to gettext-0.11.
54781         * m4/glibc21.m4: Upgrade to gettext-0.11.
54782         * m4/iconv.m4: Upgrade to gettext-0.11.
54783         * m4/isc-posix.m4: Upgrade to gettext-0.11.
54784         * m4/lcmessage.m4: Upgrade to gettext-0.11.
54785         * m4/lib-ld.m4: New file, from gettext-0.11.
54786         * m4/lib-link.m4: New file, from gettext-0.11.
54787         * m4/lib-prefix.m4: New file, from gettext-0.11.
54788         * m4/progtest.m4: Upgrade to gettext-0.11.
54789
54790 2002-02-15  Paul Eggert  <eggert@twinsun.com>
54791
54792         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
54793         (jm_PREREQ): Use it.
54794
54795 2002-02-15  Paul Eggert  <eggert@twinsun.com>
54796
54797         * lib/posixver.c, lib/posixver.h: New files.
54798         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
54799
54800 2002-02-02  Paul Eggert  <eggert@twinsun.com>
54801             Bruno Haible  <bruno@clisp.org>
54802
54803         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
54804         (fwrite_success_callback): New declaration.
54805         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
54806         print_unicode_char. Call failure callback instead of error.
54807         (fwrite_success_callback): New function.
54808         (exit_failure_callback): New function.
54809         (fallback_failure_callback): New function.
54810         (print_unicode_char): Call unicode_to_mb.
54811
54812 2002-01-26  Jim Meyering  <meyering@lucent.com>
54813
54814         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
54815         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
54816
54817 2002-01-26  Jim Meyering  <meyering@lucent.com>
54818
54819         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
54820
54821 2002-01-22  Paul Eggert  <eggert@twinsun.com>
54822
54823         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
54824
54825 2002-01-22  Jim Meyering  <meyering@lucent.com>
54826
54827         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
54828         Otherwise, some versions of automake would omit the rule that makes
54829         Makefile from Makefile.in.
54830
54831 2002-01-21  Paul Eggert  <eggert@twinsun.com>
54832
54833         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
54834         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
54835         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
54836         (memcoll): Set errno to zero if there is no error.
54837
54838         * lib/quotearg.c (quotearg_buffer_restyled):
54839         Fix bug with quoting buffers containing NUL when backslashing escapes.
54840         This bug was exposed by the other changes in this patch.
54841         (quotearg_n_options): New arg ARGSIZE.
54842         All callers changed.
54843         (quoting_options_from_style): New function.
54844         (quotearg_n_style): Use it.
54845         (quotearg_n_style_mem): New function.
54846
54847         * lib/quotearg.h (quotearg_n_style_mem): New function.
54848
54849 2002-01-19  Jim Meyering  <meyering@lucent.com>
54850
54851         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
54852         Remove useless quotes: DF_PROG="df".
54853         * m4/strnlen.m4: New file.
54854
54855 2002-01-16  Paul Eggert  <eggert@twinsun.com>
54856
54857         * lib/backupfile.c (ISDIGIT): Comment fix.
54858         * lib/getdate.y (ISDIGIT): Likewise.
54859         * lib/posixtm.c (ISDIGIT, year): Likewise.
54860         * lib/strverscmp.c (ISDIGIT): Likewise.
54861         * lib/userspec.c (ISDIGIT): Likewise.
54862
54863 2002-01-16  Jim Meyering  <meyering@lucent.com>
54864
54865         * lib/getdate.y: Add three semicolons, each just before a closing
54866         brace. Bison (as of version 1.31) no longer papers over that mistake.
54867
54868 2002-01-05  Jim Meyering  <meyering@lucent.com>
54869
54870         * lib/version-etc.c (version_etc_copyright): Update copyright year.
54871
54872 2001-12-19  Paul Eggert  <eggert@twinsun.com>
54873
54874         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
54875         not silently exit merely because the output buffer happens to
54876         have nothing pending.
54877
54878 2001-12-18  Paul Eggert  <eggert@twinsun.com>
54879
54880         See the big note in ../ChangeLog.
54881         * lib/human.c (suffixes): Prefer K to k for 1024.
54882         (generate_suffix_backwards): New function.
54883         (human_readable_inexact): Use it.
54884         * lib/xstrtol.c (__xstrtol): If there is no number but there
54885         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
54886         Accept 'K' as well as 'k'.
54887
54888 2001-12-15  Jim Meyering  <meyering@lucent.com>
54889
54890         * lib/regex.h (__restrict_arr): Update from libc.
54891
54892         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
54893         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
54894         (STREQ): Define.
54895
54896 2001-12-14  Jim Meyering  <meyering@lucent.com>
54897
54898         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
54899         Suggestion from Bruno Haible.
54900
54901 2001-12-10  Jim Meyering  <meyering@lucent.com>
54902
54903         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
54904         xrealloc, Instead, include "xalloc.h".
54905         (initbuffer): Don't cast xmalloc return value to char*.
54906         (readline): Reword comment.
54907         Don't cast xrealloc return value to char*
54908         Return NULL, not 0.
54909
54910 2001-12-09  Jim Meyering  <meyering@lucent.com>
54911
54912         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
54913         about `signed and unsigned type in conditional expression'.
54914         * lib/posixtm.c (posix_time_parse): Likewise.
54915
54916         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
54917
54918         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
54919         to avoid a pedantic warning.
54920
54921         * lib/getstr.c: Don't include assert.h.
54922         (getstr): Remove warning-evoking assertions.
54923         Return -1 if offset parameter is out of bounds.
54924         Change the type of a local from int to size_t.
54925
54926         * lib/strftime.c (my_strftime_localtime_r): Include this function
54927         definition in the `#if ! HAVE_TM_GMTOFF' block.
54928
54929         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
54930         Include xalloc.h instead.
54931
54932 2001-12-02  Jim Meyering  <meyering@lucent.com>
54933
54934         * lib/tempname.c: Don't declare getenv, thus reverting the change of
54935         2001-11-18.  It's no longer necessary, now that stdlib.h is always
54936         included.
54937
54938         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
54939         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
54940
54941 2001-11-30  Akim Demaille  <akim@epita.fr>
54942
54943         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
54944         before being defined.
54945
54946 2001-11-27  Paul Eggert  <eggert@twinsun.com>
54947
54948         * lib/quotearg.h (quotearg_n, quotearg_n_style):
54949         First arg is int, not unsigned.
54950         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
54951         (SIZE_MAX, UINT_MAX): New macros.
54952         (quotearg_n_options): Abort if N is negative.
54953         Avoid overflow check on hosts where size_t is 64 bits and int
54954         is 32 bits, as overflow is impossible there.
54955         Fix off-by-one typo that caused unnecessary reallocation.
54956
54957 2001-11-27  Jim Meyering  <meyering@lucent.com>
54958
54959         * lib/tempname.c: Merge with version from libc.
54960         * lib/regex.c: Likewise.
54961
54962         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
54963         systems for which STDC_HEADERS is 0, it was not included, resulting in
54964         a warning about an integer-to-pointer conversion problem with getenv.
54965         Reported by Volker Borchert.
54966
54967 2001-11-26  Jim Meyering  <meyering@lucent.com>
54968
54969         * lib/gtod.h: Remove file.
54970         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
54971         * lib/gettimeofday.c: Don't include gtod.h.
54972         (GTOD_init): Remove function.
54973         (rpl_gettimeofday): Do its job here instead, rather than aborting.
54974         Suggestion from Volker Borchert.
54975
54976 2001-11-23  Jim Meyering  <meyering@lucent.com>
54977
54978         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
54979         it.
54980         * lib/hash.c (struct hash_table): Define it here instead.
54981
54982 2001-11-22  Jim Meyering  <meyering@lucent.com>
54983
54984         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
54985
54986 2001-11-20  Jim Meyering  <meyering@lucent.com>
54987
54988         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
54989         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
54990
54991 2001-11-19  Jim Meyering  <meyering@lucent.com>
54992
54993         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
54994         directory.  Use "conftestXXXXXX" as the template.
54995         Suggestion from Paul Eggert.
54996
54997         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
54998         immediately, so the test doesn't mistakenly hit the max-open-files
54999         limit.
55000
55001 2001-11-18  Paul Eggert  <eggert@twinsun.com>
55002
55003         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
55004         (TEMPORARIES): New macro.
55005         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
55006         removes an artificial limitation (e.g. HP-UX 10.20, where
55007         TMP_MAX is 17576).
55008
55009 2001-11-18  Jim Meyering  <meyering@lucent.com>
55010
55011         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
55012
55013 2001-11-18  Jim Meyering  <meyering@lucent.com>
55014
55015         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
55016         on SunOS 4.
55017
55018         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
55019         files will be created before anything else.
55020
55021 2001-11-17  Paul Eggert  <eggert@twinsun.com>
55022
55023         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
55024         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
55025
55026 2001-11-17  Jim Meyering  <meyering@lucent.com>
55027
55028         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
55029         Prompted by a report from Bob Proulx.
55030
55031         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
55032         Instead, require UTILS_FUNC_MKSTEMP.
55033
55034 2001-11-17  Jim Meyering  <meyering@lucent.com>
55035
55036         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
55037         Now, that's done as part of AC_FUNC_STRTOD.
55038
55039 2001-11-17  Jim Meyering  <meyering@lucent.com>
55040
55041         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
55042         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
55043         rather than group writable.  Patch by Juan F. Codagnone.
55044
55045         * lib/readtokens.c: Remove explicit declarations of xmalloc and
55046         xrealloc, Instead, include "xalloc.h".
55047
55048         * lib/mountlist.c: Include unlocked-io.h after all system headers.
55049         Remove explicit declarations of xmalloc, xrealloc,
55050         and xstrdup.  Instead, include "xalloc.h".
55051
55052         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
55053         unlocked-io.h.
55054         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
55055         Likewise.
55056         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
55057
55058         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
55059         Reported by Padraig Brady.
55060
55061         * lib/mkstemp.c: #undef mkstemp.
55062         Include config.h.
55063         (rpl_mkstemp): Rename from mkstemp.
55064         Protoize.
55065
55066 2001-11-16  Jim Meyering  <meyering@lucent.com>
55067
55068         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
55069         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
55070         determine the amount of total physical memory, use pstat_getstatic.
55071         HPUX-11 doesn't define _SC_PHYS_PAGES.
55072         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
55073         If sysconf couldn't be used to determine the amount of available
55074         physical memory, use both pstat_getstatic and pstat_getdynamic.
55075         Based on a patch from Bob Proulx.
55076
55077 2001-11-10  Jim Meyering  <meyering@lucent.com>
55078
55079         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
55080         (jm_PREREQ): Use it.
55081
55082 2001-11-09  Jim Meyering  <meyering@lucent.com>
55083
55084         * m4/jm-macros.m4: Require autoconf-2.52f.
55085         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
55086         Use these AC_-prefixed names, not the AM_-prefixed ones.
55087
55088         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
55089
55090 2001-11-05  Jim Meyering  <meyering@lucent.com>
55091
55092         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
55093
55094 2001-11-04  Jim Meyering  <meyering@lucent.com>
55095
55096         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
55097         $DEFS.
55098
55099 2001-11-03  Jim Meyering  <meyering@lucent.com>
55100
55101         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
55102         of AC_DEFUN.
55103
55104         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
55105         know the name of the variable in the macro definition.
55106
55107 2001-11-03  Jim Meyering  <meyering@lucent.com>
55108
55109         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
55110         in argmatch_to_argument call.
55111
55112         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
55113         argument.
55114
55115         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
55116         e.g., a fault due to an attempt to free a NULL pointer.
55117
55118 2001-11-01  Jim Meyering  <meyering@lucent.com>
55119
55120         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
55121         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
55122
55123 2001-11-01  Jim Meyering  <meyering@lucent.com>
55124
55125         * lib/dirfd.c, lib/dirfd.h: New files.
55126         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
55127
55128         * lib/hash.c (hash_print) [TESTING]: Clean up.
55129
55130 2001-10-22  Paul Eggert  <eggert@twinsun.com>
55131
55132         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
55133         to avoid a warning if -Wall.
55134
55135 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
55136
55137         * README: New file
55138         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
55139         (per RMS's instructions, this is now the canonical source)
55140         * lgpl/, gpl/: New directories.
55141
55142 2001-10-21  Paul Eggert  <eggert@twinsun.com>
55143
55144         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
55145
55146 2001-10-21  Jim Meyering  <meyering@lucent.com>
55147
55148         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
55149         this code would end up calling gettext even in packages built
55150         with --disable-nls.
55151         * lib/getopt.c (_): Likewise.
55152         * lib/regex.c (_): Likewise.
55153
55154 2001-10-20  Paul Eggert  <eggert@twinsun.com>
55155
55156         * m4/error.m4 (jm_PREREQ_ERROR):
55157         Do not invoke AC_CHECK_FUNCS with strerror_r, as
55158         AC_FUNC_STRERROR_R does that.
55159         Check for strerror declaration.
55160
55161         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
55162         are supposed to have them these days.
55163         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
55164         Merge changes from latest Autoconf CVS.
55165         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
55166         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
55167         POSIX decided to standardize on the int flavor of strerror_r.
55168
55169 2001-10-20  Paul Eggert  <eggert@twinsun.com>
55170
55171         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
55172         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
55173         Use strerror_r that is only a macro, even if it is not a function.
55174         (strerror): Check for HAVE_DECL_STRERROR before declaring.
55175         (private_strerror): Use prototypes, not old-style function definition.
55176         (print_errno_message): New function.
55177         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
55178         char*-flavored one.
55179         (error_tail, error, error_at_line): Use it.
55180
55181 2001-10-11  Jim Meyering  <meyering@lucent.com>
55182
55183         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
55184         and quote_n (1, ... to avoid clobbering a buffer.
55185
55186 2001-10-05  Jim Meyering  <meyering@lucent.com>
55187
55188         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
55189         hash-pjw.h.
55190         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
55191         * lib/hash-pjw.h: New file.
55192
55193 2001-09-30  Jim Meyering  <meyering@lucent.com>
55194
55195         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
55196         `struct fsstat' has the `f_fstypename' member.
55197         Use that to define FS_TYPE, which is now used to make
55198         the getfsstat link test tighter.
55199
55200 2001-09-30  Jim Meyering  <meyering@lucent.com>
55201
55202         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
55203         Include <sys/ucred.h>, for Apple Darwin.
55204         Include sys/mount.h and sys/fs_types.h only if available.
55205         (FS_TYPE): Define.
55206         (read_filesystem_list): Use FS_TYPE.
55207
55208 2001-09-29  Paul Eggert  <eggert@twinsun.com>
55209
55210         * lib/exclude.c (excluded_filename): 0 -> false, since it's
55211         a boolean context.
55212
55213 2001-09-29  Jim Meyering  <meyering@lucent.com>
55214
55215         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
55216         [one-argument getmntent function]): Include stdio.h before mntent.h.
55217         SunOS 4.1.x needs it for the declaration of `FILE'.
55218         Patch by Volker Borchert.
55219
55220         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
55221         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
55222         sys/fs_types.h, and make the link-test for getfsstat guard #include
55223         directives with appropriate #if HAVE_*_H tests so that we can
55224         detect getfsstat on Apple Darwin1.3.7 systems.
55225         Reported by Nelson Beebe.
55226         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
55227
55228 2001-09-28  Paul Eggert  <eggert@twinsun.com>
55229
55230         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
55231         #defines strtoimax.  Also treat the other strto* functions
55232         like strtoimax.
55233
55234         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
55235         Check for strtoul and strtoumax,
55236         as those declarations are made even in the signed case.
55237         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
55238         Likewise, for strtol and strtoimax.
55239
55240 2001-09-28  Paul Eggert  <eggert@twinsun.com>
55241
55242         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
55243         #defines strtoimax.  Also treat the other strto* functions
55244         like strtoimax.
55245
55246         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
55247         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
55248         (strtoimax, strtoumax): Do not declare if already defined as a macro.
55249
55250 2001-09-26  Jim Meyering  <meyering@lucent.com>
55251
55252         Most macros in unlocked-io.h had the wrong number of arguments.
55253         * lib/gen-uio: New script.
55254         (USE_UNLOCKED_IO): Define to 1 if not already defined.
55255         * lib/unlocked-io.hin: Remove file.
55256         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
55257         rather than trying to embed it here.
55258         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
55259         Reported by Padraig Brady.
55260
55261 2001-09-25  Volker Borchert  <bt@teknon.de>
55262
55263         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
55264         `result'.
55265
55266 2001-09-24  Jim Meyering  <meyering@lucent.com>
55267
55268         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
55269
55270 2001-09-23  Jim Meyering  <meyering@lucent.com>
55271
55272         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
55273         instead of the mere test for existence of mntent.h.  The latter
55274         would get a false-positive on AIX 3.4 systems.
55275         In the outer getmntent if-block, don't die if neither of the getmntent
55276         tests succeeds.  Instead, just fall through and continue with the
55277         remaining tests.
55278
55279 2001-09-23  Jim Meyering  <meyering@lucent.com>
55280
55281         * lib/mountlist.c: Remove useless parentheses in #if directives.
55282         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
55283         the deprecated MOUNTED symbol is no longer defined in mntent.h.
55284
55285 2001-09-22  Jim Meyering  <meyering@lucent.com>
55286
55287         * m4/gettext.m4: New file.  From gettext.
55288         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
55289         * m4/progtest.m4: Likewise
55290         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
55291         * m4/glibc21.m4: Likewise.
55292
55293         * m4/libintl.m4: Remove.  No longer used.
55294
55295 2001-09-22  Jim Meyering  <meyering@lucent.com>
55296
55297         * lib/localcharset.c: Update from latest gettext.
55298         * lib/config.charset: Likewise.
55299
55300 2001-09-20  Jim Meyering  <meyering@lucent.com>
55301
55302         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
55303         strtoimax.
55304         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
55305         strtoumax.
55306
55307 2001-09-20  Jim Meyering  <meyering@lucent.com>
55308
55309         * lib/xstrtol.c (strtoimax): Guard declaration with
55310         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
55311         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
55312         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
55313         (strtoumax): Likewise, for completeness (it wasn't necessary).
55314
55315 2001-09-17  Paul Eggert  <eggert@twinsun.com>
55316
55317         * lib/strtoimax.c (HAVE_LONG_LONG):
55318         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
55319         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
55320         to work around bug in IBM C compiler.
55321
55322 2001-09-17  Jim Meyering  <meyering@lucent.com>
55323
55324         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
55325         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
55326         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
55327         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
55328         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
55329         whenever the right hand side need not be expanded by the shell.
55330
55331 2001-09-16  Paul Eggert  <eggert@twinsun.com>
55332
55333         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
55334         library.  It's not correct, as some older glibcs are buggy.
55335         fnmatch wasn't fixed until glibc 2.2.
55336
55337         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
55338         special shell magic here.
55339
55340 2001-09-16  Jim Meyering  <meyering@lucent.com>
55341
55342         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
55343         * m4/jm-macros.m4: Require it.
55344
55345 2001-09-16  Jim Meyering  <meyering@lucent.com>
55346
55347         * lib/mkdir.c: New file.
55348
55349 2001-09-15  Jim Meyering  <meyering@lucent.com>
55350
55351         * m4/jm-macros.m4: Check for help2man.
55352
55353 2001-09-11  Jim Meyering  <meyering@lucent.com>
55354
55355         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
55356         The body, by Paul Eggert, was moved here from configure.in.
55357         * m4/jm-macros.m4: Require UTILS_HOST_OS.
55358
55359 2001-09-04  Paul Eggert  <eggert@twinsun.com>
55360
55361         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
55362         (jm_PREREQ): Use it.
55363
55364 2001-09-04  Paul Eggert  <eggert@twinsun.com>
55365
55366         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
55367         Use ssize_t, not int, to store result of readlink.
55368         Check for ssize_t overflow as well as size_t overflow,
55369         as POSIX says the result of readlink is implementation-defined
55370         when ssize_t overflows.
55371         Remove unnecessary cast to char*.
55372         Use free+malloc instead of realloc, as the storage doesn't need
55373         to be preserved and it's clearer and can be more efficient that way.
55374         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
55375         * lib/xreadlink.h (xreadlink): Update prototype.
55376
55377 2001-09-04  Paul Eggert  <eggert@twinsun.com>
55378
55379         * lib/xgetcwd.c: Revert some of the previous change; intead,
55380         fix the HAVE_GETCWD_NULL code to behave more like the
55381         !HAVE_GETCWD_NULL code used to.
55382
55383         Include "xalloc.h".
55384         (xgetcwd): Do not return NULL when memory is exhausted; instead,
55385         invoke xalloc_die.
55386
55387 2001-09-03  Paul Eggert  <eggert@twinsun.com>
55388
55389         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
55390         sys/param.h, as pathmax.h includes them.
55391
55392 2001-09-03  Paul Eggert  <eggert@twinsun.com>
55393
55394         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
55395         (jm_PREREQ_XGETCWD): New macro.
55396
55397         * m4/getcwd.m4: New file.
55398
55399 2001-09-03  Paul Eggert  <eggert@twinsun.com>
55400
55401         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
55402         like the HAVE_GETCWD_NULL code.
55403         Include pathmax.h if not HAVE_GETCWD.
55404         Do not include xalloc.h.
55405         (INITIAL_BUFFER_SIZE): New symbol.
55406         Do not use xmalloc / xrealloc, since the caller is responsible for
55407         handling errors.  Preserve errno around `free' during failure.
55408         Do not overrun buffer when using getwd.
55409
55410 2001-09-03  Paul Eggert  <eggert@twinsun.com>
55411
55412         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
55413         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
55414         getcwd (NULL, 0).
55415
55416 2001-09-03  Paul Eggert  <eggert@twinsun.com>
55417
55418         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
55419         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
55420         spotted by Jim Meyering.
55421
55422 2001-09-03  Jim Meyering  <meyering@lucent.com>
55423
55424         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
55425         failure.
55426
55427 2001-09-02  Jim Meyering  <meyering@lucent.com>
55428
55429         * lib/error.c: Update from GNU libc.
55430
55431 2001-09-01  Jim Meyering  <meyering@lucent.com>
55432
55433         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
55434         Used by df.
55435
55436 2001-09-01  Jim Meyering  <meyering@lucent.com>
55437
55438         * lib/xreadlink.c: New file.
55439         * lib/xreadlink.h: New file.
55440         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
55441         xreadlink.h.
55442
55443         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
55444         doesn't conflict with sparc Solaris 7's definition in
55445         /usr/include/sys/int_types.h.
55446
55447         * lib/exclude.c: Use `""', not `<>' to #include non-system header
55448         files.
55449         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
55450         and strncasecmp as r-values.  Unixware didn't have declarations.
55451
55452 2001-08-31  Paul Eggert  <eggert@twinsun.com>
55453
55454         * lib/xstrtol.h: Add copyright notice.
55455         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
55456         LONGINT_INVALID_SUFFIX_CHAR.
55457
55458 2001-08-31  Paul Eggert  <eggert@twinsun.com>
55459
55460         * lib/xstrtol.c (strtoimax): New decl.
55461
55462 2001-08-31  Paul Eggert  <eggert@twinsun.com>
55463
55464         * lib/xgetcwd.c: Don't include pathmax.h.
55465         Include stdlib.h and unistd.h if available.
55466         Include xalloc.h.
55467         (xmalloc, xstrdup, free): Remove decls.
55468         (xgetcwd): Don't assume sizes fit in unsigned.
55469         Check for overflow when computing sizes.
55470         Simplify reallocation code.
55471
55472 2001-08-31  Paul Eggert  <eggert@twinsun.com>
55473
55474         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
55475         a directory's st_size can have an arbitrary value, so the old
55476         usage could waste an arbitrary amount of memory.  All uses
55477         changed.
55478         * lib/savedir.h: Update prototype.
55479
55480 2001-08-31  Paul Eggert  <eggert@twinsun.com>
55481
55482         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
55483
55484         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
55485         old strtoimax.c.
55486
55487         Also, make the following further changes to make this file's
55488         configuration more similar to that of strtol.c:
55489         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
55490         (strtoumax, uintmax_t, strtoull, strtol): Remove.
55491         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
55492         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
55493         changed to signed values.
55494
55495         And make the following changes as well:
55496         Fix copyright notice, as 1999 was missing.
55497         (verify): New macro.
55498         (strtoimax): Check sizes at compile-time, not run-time.
55499         Prefer strtol to strtoll if both work.
55500         (main): Remove; it was not that useful and was a pain to maintain.
55501
55502         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
55503
55504 2001-08-31  Jim Meyering  <meyering@lucent.com>
55505
55506         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
55507         Use an initial, malloc'd, buffer of length 128 rather than
55508         a statically allocated one of length 1024.
55509
55510 2001-08-30  Paul Eggert  <eggert@twinsun.com>
55511
55512         Simplify code, partly by assuming autoconf 2.52 semantics.
55513
55514         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
55515
55516         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
55517         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
55518         All uses removed.
55519         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
55520         Move AC_REQUIRE to next-to-top level, to avoid confusion.
55521         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
55522         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
55523         jm_AC_HEADER_INTTYPES_H.
55524         * m4/jm-macros.m4 (jm_MACROS): Likewise.
55525
55526         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
55527
55528         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
55529         Quote first arg of AC_DEFUN.
55530         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
55531         since they are needed to parse the include file even if we need
55532         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
55533         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
55534         but with opposite signedness.
55535
55536 2001-08-30  Paul Eggert  <eggert@twinsun.com>
55537
55538         Merge 'exclude' changes from tar 1.13.22.
55539         This fixes one or two unlikely storage allocation overflow bugs,
55540         but doesn't change user-visible behavior otherwise.
55541
55542 2001-08-30  Paul Eggert  <eggert@twinsun.com>
55543
55544         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
55545         (jm_PREREQ_EXCLUDE): New macro.
55546
55547 2001-08-30  Paul Eggert  <eggert@twinsun.com>
55548
55549         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
55550         tm to be declared.
55551
55552 2001-08-30  Paul Eggert  <eggert@twinsun.com>
55553
55554         * lib/hash.c: Remove '2001' from copyright notice.
55555
55556 2001-08-30  Paul Eggert  <eggert@twinsun.com>
55557
55558         * lib/full-write.h: New file.
55559         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
55560         * lib/full-write.c: Correct credits, as cccp.c no longer
55561         exists and anyway it was so heavily changed from the old cccp
55562         code as to be unrecognizable.  Include full-write.h.
55563         (full_write) Return size_t, with short writes meaning failure.
55564         All callers changed.  This fixes a bug with large buffers
55565         on 64-bit hosts.
55566         * lib/utime.c: Include full-write.h.
55567
55568 2001-08-30  Paul Eggert  <eggert@twinsun.com>
55569
55570         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
55571         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
55572         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
55573         Include if available.
55574         (<xalloc.h>): Include
55575         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
55576         (verify): New macro.  Use it to verify that EXCLUDE macros do not
55577         collide with FNM macros.
55578         (struct patopts): New struct.
55579         (struct exclude): Use it, as exclude patterns now come with options.
55580         (new_exclude): Support above changes.
55581         (new_exclude, add_exclude_file):
55582         Initial size must now be a power of two to simplify overflow checking.
55583         (free_exclude, fnmatch_no_wildcards): New function.
55584         (excluded_filename): No longer requires options arg, as the options
55585         are determined by add_exclude.  Now returns bool, not int.
55586         (excluded_filename, add_exclude):
55587         Add support for the fancy new exclusion options.
55588         (add_exclude, add_exclude_file): Now takes int options arg.
55589         Check for arithmetic overflow when computing sizes.
55590         (add_exclude_file): xrealloc might modify errno, so don't
55591         realloc until after errno might be used.
55592
55593         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
55594         New macros.
55595         (free_exclude): New decl.
55596         (add_exclude, add_exclude_file): Now takes int options arg.
55597         (excluded_filename): No longer requires options arg, as the options
55598         are determined by add_exclude.  Now returns bool, not int.
55599
55600 2001-08-30  Paul Eggert  <eggert@twinsun.com>
55601
55602         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
55603
55604 2001-08-27  Jim Meyering  <meyering@lucent.com>
55605
55606         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
55607
55608         * lib/version-etc.c (N_): Remove definition.
55609         Revert most of last change.
55610         Instead, simply don't mark the `Copyright...' string for translation.
55611         Based on advice from Paul Eggert.
55612
55613         * lib/strtoxmax.c: Tweak comment.
55614
55615 2001-08-26  Jim Meyering  <meyering@lucent.com>
55616
55617         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
55618
55619         * m4/xstrtoimax.m4: New file.
55620         * m4/xstrtoumax.m4: Add comments explaining why we
55621         AC_REPLACE_FUNCS(strtol).
55622
55623 2001-08-26  Jim Meyering  <meyering@lucent.com>
55624
55625         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
55626         of copyright with `%s' so translators don't get an untranslated
55627         message in 2002.
55628         (COPYRIGHT_YEAR): Define.
55629         (version_etc): Use fprintf rather than fputs.
55630         Suggestion from Ulrich Drepper.
55631
55632         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
55633
55634         * lib/strtoll.c: New file, from GNU libc.
55635         * lib/xstrtoimax.c: New file.
55636
55637         * lib/xstrtol.h: Add xstrtoimax.
55638         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
55639         * lib/strtoimax.c: New file.  Likewise, but first define
55640         STRTOUXMAX_SIGNED.
55641
55642         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
55643         ...
55644         * lib/strtoxmax.c: ... then renamed to this.
55645
55646 2001-08-18  Paul Eggert  <eggert@twinsun.com>
55647
55648         * m4/inttypes.m4: Add AC_PREREQ(2.13).
55649         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
55650         (jm_AC_TYPE_INTMAX_T): New macro.
55651         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
55652
55653         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
55654
55655         * m4/longlong.m4: Renamed from ulonglong.m4.
55656         * m4/inttypes.m4: Renamed from inttypes_h.m4.
55657         * m4/uintmax_t.m4: Removed.
55658
55659 2001-08-13  Paul Eggert  <eggert@twinsun.com>
55660
55661         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
55662         Port to Solaris 8, where 'sed' requires a space after the 'r'
55663         command, and where sh dislikes "$/".  Clean up the spacing a bit.
55664         Redirect output to $tmp just once.
55665
55666 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
55667
55668         * lib/addext.c (<errno.h>): Include.
55669         (errno): Declare if not defined.
55670         (addext): Work correctly when pathconf returns -1 and leaves
55671         errno alone because there is no limit.  Also, work even if
55672         pathconf returns a value greater than SIZE_MAX.
55673
55674 2001-08-12  Jim Meyering  <meyering@lucent.com>
55675
55676         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
55677         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
55678         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
55679         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
55680         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
55681         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
55682         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
55683         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
55684         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
55685         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
55686         utime.m4, utimes.m4, xstrtoumax.m4:
55687         Quote the first argument in each use of AC_DEFUN.
55688
55689 2001-08-12  Jim Meyering  <meyering@lucent.com>
55690
55691         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
55692         Simply `return getcwd (NULL, 0);'.
55693         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
55694         Use 1300 as initial value for length, not PATH_MAX.
55695
55696         * lib/pathmax.h: Clean up cpp syntax.
55697
55698 2001-08-12  Jim Meyering  <meyering@lucent.com>
55699
55700         * lib/gettimeofday.c: New file.
55701         * lib/gtod.h: New file.
55702         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
55703
55704 2001-08-05  Jim Meyering  <meyering@lucent.com>
55705
55706         * m4/jm-macros.m4: Require autoconf-2.52.
55707
55708 2001-08-04  Jim Meyering  <meyering@lucent.com>
55709
55710         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
55711         stmt, to get in sync with glibc.
55712
55713 2001-08-03  Paul Eggert  <eggert@twinsun.com>
55714
55715         The following changes are from gettext 0.10.39 as maintained by
55716         Bruno Haible.
55717
55718         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
55719         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
55720         with inverted sense.  All uses changed.
55721
55722         * lib/mbswidth.c: Don't include <limits.h>.
55723         Include <stdlib.h> and <string.h> unconditionally.
55724         (iswcntrl, mbsinit, ISCNTRL): New macros.
55725         (mbsnwidth): Use K&R style function declarations.
55726         Don't bother checking for MB_LEN_MAX == 1, since the compiler
55727         can optimize it when MB_CUR_MAX == 1.
55728         The width of control characters is zero, not 1.
55729
55730 2001-08-03  Paul Eggert  <eggert@twinsun.com>
55731
55732         The following changes are from gettext 0.10.39 as maintained by
55733         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
55734
55735         * m4/codeset.m4: Upgrade to serial AM1.
55736         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
55737         all uses changed.  Quote first arg of AC_DEFUN.
55738         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
55739
55740         * m4/iconv.m4: Upgrade to serial AM2.
55741         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
55742         Add --with-libconv-prefix.
55743         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
55744         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
55745         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
55746         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
55747         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
55748
55749         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
55750         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
55751         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
55752         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
55753         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
55754         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
55755         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
55756         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
55757         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
55758
55759         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
55760         string.h any more.
55761
55762         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
55763         not the default value.
55764
55765         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
55766         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
55767         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
55768         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
55769         Also check for iswcntrl, used for wcwidth fallback.
55770         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
55771         to Autoconf 2.13.
55772
55773 2001-08-03  Jim Meyering  <meyering@lucent.com>
55774
55775         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
55776         as it was in the original.  Reported by Paul Eggert.
55777
55778 2001-07-16  Jim Meyering  <meyering@lucent.com>
55779
55780         * m4/gettimeofday.m4: New file.
55781         Prompted by a report from Bernhard Baehr.
55782
55783 2001-07-15  Jim Meyering  <meyering@lucent.com>
55784
55785         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
55786         stuff. Now it's in ../Makefile.cfg.
55787
55788 2001-07-15  Jim Meyering  <meyering@lucent.com>
55789
55790         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
55791         (BUILT_SOURCES): Add unlocked-io.h.
55792         (io_functions): Define.
55793         (unlocked-io.h): New rule.
55794         (DISTCLEANFILES): Add unlocked-io.h.
55795         (all-local): Depend on unlocked-io.h, to ensure it is created.
55796
55797         * lib/unlocked-io.hin: New file
55798
55799         * lib/regex.c: Update from glibc.
55800
55801 2001-07-05  Jim Meyering  <meyering@lucent.com>
55802
55803         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
55804         recommendation.
55805         (libfetish_a_SOURCES): Put all .h files here instead.
55806         Remove a thus-exposed (better checks in automake) duplicate and
55807         two unnecessary .h files.
55808
55809 2001-07-04  Jim Meyering  <meyering@lucent.com>
55810
55811         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
55812         that generates jm-glibc-io.m4 so that it doesn't trigger any make
55813         distcheck failure.
55814
55815 2001-07-02  Jim Meyering  <meyering@lucent.com>
55816
55817         The following changes were prompted by suggestions from Bruno Haible.
55818
55819         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
55820         is now generated.
55821         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
55822         definition of EXTRA_DIST.
55823         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
55824         ensure that the generated file is created/updated whenever the list
55825         of $(unlocked_functions) is changed.
55826         (jm-glibc-io.m4): New rule.
55827         (unlocked-io.h): New rule -- currently unused.
55828
55829 2001-06-24  Jim Meyering  <meyering@lucent.com>
55830
55831         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
55832         unmatched right bracket, rather than kludging it with an extra,
55833         falsely-matching quote in a comment.  Patch by Akim Demaille.
55834
55835 2001-06-11  Jim Meyering  <meyering@lucent.com>
55836
55837         * lib/regex.c: Update from GNU libc.
55838
55839 2001-05-27  Jim Meyering  <meyering@lucent.com>
55840
55841         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
55842         Check for ut_type in struct utmp.
55843
55844 2001-05-27  Jim Meyering  <meyering@lucent.com>
55845
55846         * lib/readutmp.h (UT_TYPE): Define.
55847
55848 2001-05-24  Jim Meyering  <meyering@lucent.com>
55849
55850         * lib/argmatch.c: Include "quote.h".
55851         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
55852         quote function.  Reported by Göran Uddeborg.
55853
55854 2001-05-22  Jim Meyering  <meyering@lucent.com>
55855
55856         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
55857         now that we use the package-supplied version unconditionally.
55858         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
55859
55860 2001-05-21  Jim Meyering  <meyering@lucent.com>
55861
55862         * m4/regex.m4: Change a couple backticks to single quotes to avoid
55863         shell syntax errors.
55864
55865 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
55866
55867         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
55868
55869 2001-05-20  Paul Eggert  <eggert@twinsun.com>
55870
55871         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
55872         Don't bother to check library strftime, since
55873         we'll be using our own my_strftime function anyway.
55874         Define my_strftime instead of strftime.
55875
55876 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
55877
55878         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
55879         which is not yet declared.
55880
55881 2001-05-15  Jim Meyering  <meyering@lucent.com>
55882
55883         * m4/regex.m4: Use proper quoting so brackets appear in the test
55884         program.
55885         Reported by, and with help from, Bruno Haible.
55886
55887 2001-05-13  Jim Meyering  <meyering@lucent.com>
55888
55889         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
55890         undefined.
55891
55892 2001-05-11  Paul Eggert  <eggert@twinsun.com>
55893
55894         dirname code cleanup.  base_name now behaves more compatibly
55895         with POSIX basename when given file names that have trailing
55896         slashes, and similarly for dir_name.  Add new primitives
55897         base_len and dir_len.  Put the directory-name-related decls
55898         into dirname.h.
55899
55900         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
55901         * lib/backupfile.c (base_name): Likewise.
55902         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
55903         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
55904         * lib/makepath.c (strip_trailing_slashes): Likewise.
55905         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
55906         ISSLASH): Likewise.
55907         * lib/rename.c (strip_trailing_slashes): Likewise.
55908         * lib/same.c (base_name): Likewise.
55909         * lib/stripslash.c (ISSLASH): Likewise.
55910
55911         * lib/addext.c: Include <dirname.h> after size_t is defined.
55912         * lib/backupfile.c: Likewise.
55913
55914         * lib/addext.c (addext): Use base_len to trim redundant
55915         trailing slashes instead of doing it ourselves.
55916         But do not trim the last slash if it is not redundant.
55917
55918         * lib/backupfile.c (find_backup_file_name,
55919         max_backup_version): Use base_len instead of rolling it ourselves.
55920         Handle the case of "" and (on DOS) "C:" correctly.
55921
55922         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
55923         needed. Include <string.h>, <dirname.h>.
55924         (base_name): Allow file names ending in slashes, other than names
55925         that are all slashes.  In this case, return the basename followed
55926         by the slashes.  This is more general, and can be used in places
55927         where the original base_name purposely had an assertion failure.
55928         (base_len): New function.
55929
55930         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
55931         Do not include <assert.h>; no longer needed.
55932         Include xalloc.h.
55933         (memrchr): Remove decl.
55934         (dir_name_r): Remove.
55935         (dir_len): Renamed from dirlen.  All callers changed.
55936         Rewrite in terms of base_name, for simplicity and consistency.
55937         (dir_name): Never return NULL.  All callers changed.
55938         Do not include <stdlib.h> in test program; no longer needed.
55939         return 0; is fine for test program.
55940
55941         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
55942         New macros.
55943         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
55944
55945         * lib/path-concat.c (path_concat): Use base_len to compute
55946         base length, not strlen; this means we cannot rely on memcpy
55947         to null-terminate.
55948
55949         * lib/same.c (STREQ): Remove.
55950         (same_name): Handle the case where the basename ends in trailing '/'.
55951
55952         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
55953         a slash was stripped.  Do not strip the last slash after a
55954         file system prefix.
55955
55956 2001-05-11  Paul Eggert  <eggert@twinsun.com>
55957
55958         * lib/Makefile.am (libfetish_a_SOURCES):
55959         Add strftime.c, since we now compile it on all hosts.
55960
55961         * lib/strftime.c (my_strftime):
55962         Define to nstrftime if emacs, but only if my_strftime is not defined.
55963         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
55964         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
55965         Add one more extra argument: a nanoseconds value.
55966         All uses changed.
55967         (ns): New macro.
55968         (my_strftime function): Add %N format.
55969         (emacs_strftimeu): Renamed from emacs_strftime,
55970         with extra ut argument.
55971
55972 2001-05-09  Paul Eggert  <eggert@twinsun.com>
55973
55974         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
55975
55976 2001-04-21  Jim Meyering  <meyering@lucent.com>
55977
55978         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
55979         doesn't interfere.
55980
55981 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
55982
55983         * m4/ftruncate.m4: Check for chsize.
55984         Link with ftruncate.o unconditionally if ftruncate is missing.
55985         This was required when cross-compiling to i586-mingw32msvc.
55986
55987 2001-04-08  Jim Meyering  <meyering@lucent.com>
55988
55989         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
55990         recomputed; that's necessary when the offset spans a DST transition.
55991         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
55992
55993 2001-04-02  Jim Meyering  <meyering@lucent.com>
55994
55995         * lib/regex.h, regex.c: Update from GNU libc.
55996
55997 2001-03-24  Jim Meyering  <meyering@lucent.com>
55998
55999         * m4/jm-macros.m4: Require autoconf-2.49d.
56000
56001 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
56002
56003         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
56004
56005 2001-03-19  Paul Eggert  <eggert@twinsun.com>
56006
56007         * lib/version-etc.c (version_etc_copyright): Update to 2001.
56008
56009 2001-03-17  Jim Meyering  <meyering@lucent.com>
56010
56011         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
56012         now that the version in autoconf is equivalent.
56013         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
56014
56015         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
56016         Suggestion from Akim Demaille.
56017
56018         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
56019         (jm_PREREQ_TEMPNAME): New function.
56020
56021 2001-03-16  Paul Eggert  <eggert@twinsun.com>
56022
56023         * lib/tempname.c (uint64_t): Define to uintmax_t if
56024         not defined, and if UINT64_MAX is not defined.
56025         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
56026         Reported by John David Anglin.
56027
56028 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
56029
56030         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
56031         resolve alias if codeset is empty.
56032         * lib/config.charset (BeOS): Use wildcard syntax.
56033
56034 2001-03-13  Jim Meyering  <meyering@lucent.com>
56035
56036         * lib/path-concat.c (path_concat)
56037         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
56038         concatenating e.g., `C:' and `foo'.
56039         From Bruno Haible.
56040
56041 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
56042
56043         * lib/localcharset.c (locale_charset): Don't use
56044         setlocale(LC_CTYPE,NULL). Don't return NULL.
56045         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
56046
56047 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
56048
56049         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
56050         support for DOS/DJGPP.
56051
56052 2001-03-01  Paul Eggert  <eggert@twinsun.com>
56053
56054         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
56055         lacks mkstemp.  Compile our own tempname.c if we compile our own
56056         mkstemp.c, as mkstemp relies on tempname.
56057
56058 2001-03-01  Jim Meyering  <meyering@lucent.com>
56059
56060         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
56061         AH_VERBATIM really does output its argument verbatim.
56062
56063 2001-02-28  Paul Eggert  <eggert@twinsun.com>
56064
56065         * lib/Makefile.am (libfetish_a_SOURCES):
56066         Add dup-safer.c, fopen-safer.c.
56067         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
56068
56069         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
56070         * lib/unistd-safer.h: New files.
56071
56072 2001-02-25  Paul Eggert  <eggert@twinsun.com>
56073
56074         The mkstemp replacement is taken from glibc 2.2.2, with some
56075         portability fixes for use outside glibc, as follows:
56076
56077         * lib/tempname.c (struct_stat64): New macro.
56078         (direxists, __gen_tempname): Use it.
56079         This avoids a portability problem with Solaris 8.
56080
56081         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
56082         (<stddef.h>, <stdint.h>, <string.h>):
56083         Include only if STDC_HEADERS || _LIBC.
56084         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
56085         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
56086         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
56087         (__set_errno): Define this macro if <errno.h> doesn't.
56088         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
56089         Define these macros if <stdio.h> doesn't.
56090         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
56091         Define these macros if <sys/stat.h>
56092         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
56093         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
56094         __xstat64): Define if not _LIBC.
56095         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
56096         (__gen_tempname): Invoke gettimeofday only if
56097         HAVE_GETTIMEOFDAY || _LIBC;
56098         otherwise, fall back on plain "time".
56099         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
56100
56101         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
56102
56103         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
56104
56105 2001-02-18  Paul Eggert  <eggert@twinsun.com>
56106
56107         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
56108
56109 2001-02-17  Paul Eggert  <eggert@twinsun.com>
56110
56111         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
56112         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
56113         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
56114         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
56115
56116 2001-02-17  Paul Eggert  <eggert@twinsun.com>
56117
56118         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
56119         Remove workaround macros for hosts that have mbrtowc but not
56120         mbstate_t, as we now insist on proper declarations for both
56121         before using mbrtowc.
56122
56123 2001-02-17  Jim Meyering  <meyering@lucent.com>
56124
56125         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
56126         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
56127         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
56128         UnixWare 7.1.1.
56129
56130         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
56131         rather than AC_CACHE_VAL.
56132
56133 2001-02-17  Jim Meyering  <meyering@lucent.com>
56134
56135         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
56136         around included file name.
56137
56138         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
56139
56140         * lib/strftime.c: Update from GNU libc (the only changes were to
56141         comments).
56142
56143 2001-02-17  Jim Meyering  <meyering@lucent.com>
56144
56145         * lib/regex.c: Update from libc.
56146
56147 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
56148
56149         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
56150         clash.
56151
56152 2001-02-16  Paul Eggert  <eggert@twinsun.com>
56153
56154         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
56155         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
56156         Reported by Mark Hounschell via Paul Eggert.
56157
56158 2001-02-07  Jim Meyering  <meyering@lucent.com>
56159
56160         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
56161
56162 2001-02-05  Jim Meyering  <meyering@lucent.com>
56163
56164         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
56165         it includes the patch required for `large file' support with at least
56166         HP-UX's 10.20 /bin/cc.
56167
56168 2001-02-03  Jim Meyering  <meyering@lucent.com>
56169
56170         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
56171         AS_IF, now that it works once again (mysteriously).
56172         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
56173
56174 2001-01-30  Jim Meyering  <meyering@lucent.com>
56175
56176         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
56177         * m4/chown.m4: Rename conftestchown to conftest.chown.
56178         * m4/rename.m4: s/conftestdir/conftest.d1/ and
56179         s/conftestdir2/conftest.d2/.
56180         * m4/utimes.m4: s/conftestdata/conftest.data/
56181         Inspired by Pavel Roskin's change in autoconf.
56182
56183 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
56184
56185         * lib/config.charset: Update for FreeBSD 4.2.
56186
56187 2001-01-27  Jim Meyering  <meyering@lucent.com>
56188
56189         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
56190         a use of AS_IF.
56191         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
56192
56193 2001-01-26  Jim Meyering  <meyering@lucent.com>
56194
56195         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
56196         quotearg.c includes it.
56197
56198 2001-01-26  Jim Meyering  <meyering@lucent.com>
56199
56200         * lib/quotearg.c: Include stddef.h.
56201         * lib/quote.c: Include stddef.h.
56202         Reported by Axel Kittenberger.
56203
56204         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
56205         line in double quotes so that it evokes a better diagnostic.
56206         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
56207         Reported by Axel Kittenberger.
56208
56209 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
56210
56211         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
56212         as if it was a `charset'.
56213
56214 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
56215
56216         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
56217         has const.
56218
56219 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
56220
56221         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
56222         to avoid a warning.  Add back 'const' to inptr.
56223
56224 2001-01-20  Jim Meyering  <meyering@lucent.com>
56225
56226         Be sure that headers are checked before used in code compiled
56227         for the type checks.
56228         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
56229         In place of that, invoke jm_CHECK_ALL_TYPES.
56230         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
56231         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
56232         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
56233         The check for ssize_t was mistakenly run before the test for unistd.h.
56234
56235         The configure-time check for stdbool.h was missing.
56236         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
56237         (jm_PREREQ_HASH): New function.
56238
56239 2001-01-17  Jim Meyering  <meyering@lucent.com>
56240
56241         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
56242         for autoconf-2.49c.
56243         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
56244
56245 2001-01-16  Jim Meyering  <meyering@lucent.com>
56246
56247         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
56248         From Bruno Haible.
56249
56250 2001-01-14  Jim Meyering  <meyering@lucent.com>
56251
56252         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
56253         foo and bar.  Create conftestdir/ in the script, not in the C code.
56254         Remove directories in the script, not in the C code.
56255         Remove conftestdir{,2} before trying to create the directory.
56256         Make the entire configure script fail if the mkdir fails.
56257
56258 2001-01-14  Jim Meyering  <meyering@lucent.com>
56259
56260         * lib/rename.c: New file.  From Volker Borchert.
56261         Include stdlib.h, string.h or strings.h, and xalloc.h.
56262         Use strip_trailing_slashes rather than open-coding it.
56263
56264 2001-01-03  Paul Eggert  <eggert@twinsun.com>
56265
56266         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
56267
56268 2001-01-03  Jim Meyering  <meyering@lucent.com>
56269
56270         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
56271         of local `inptr' to avoid warning with some system declarations of
56272         iconv.
56273
56274 2001-01-02  Volker Borchert  <bt@teknon.de>
56275
56276         * m4/rename.m4: New file.
56277         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
56278
56279 2001-01-01  Jim Meyering  <meyering@lucent.com>
56280
56281         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
56282         even on systems with utmpx.h.  It's necessary for the declaration of
56283         utmp's ut_user member.  Reported by Andreas Jaeger.
56284
56285         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
56286         available. They are required for the declarations of getgrgid and
56287         getpwuid resp.
56288         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
56289         Reported by Andreas Jaeger.
56290
56291 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
56292
56293         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
56294         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
56295         so `make install' also works in VPATH builds.
56296
56297 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
56298
56299         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
56300         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
56301         can be used in subdirectories.
56302
56303 2000-12-29  Paul Eggert  <eggert@twinsun.com>
56304
56305         * lib/modechange.c: Do not assume that mode_t uses the
56306         traditional octal encoding.  E.g. "chmod 1 FOO" should set
56307         the other-execute bit of FOO even if S_IXOTH != 1.
56308
56309         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
56310         WOTH, XOTH, ALLM): New macros.
56311         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
56312          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
56313         Use them.
56314         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
56315         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
56316         (mode_compile):
56317         No need to use uintmax_t; unsigned long is long enough.
56318         Don't bother to get suffix since we don't use it.
56319
56320 2000-12-26  Jim Meyering  <meyering@lucent.com>
56321
56322         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
56323         better with autoheader.
56324
56325 2000-12-24  Jim Meyering  <meyering@lucent.com>
56326
56327         * lib/hash.c (is_prime): Return explicit boolean values.
56328         (hash_get_first): Return NULL to appease Irix5.6's 89.
56329         Reported by Nelson Beebe.
56330
56331 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
56332
56333         * lib/localcharset.c (locale_charset): Add support for Win32.
56334
56335 2000-12-18  Paul Eggert  <eggert@twinsun.com>
56336
56337         * lib/physmem.h, lib/physmem.c: New files.
56338
56339         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
56340         (noinst_HEADERS): Add physmem.h.
56341
56342         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
56343         't' for compatibility with Solaris 8 sort.
56344
56345 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
56346
56347         * lib/config.charset: Add support for BeOS.
56348
56349 2000-12-17  Jim Meyering  <meyering@lucent.com>
56350
56351         * m4/dos.m4 (jm_AC_DOS): New file and macro.
56352         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
56353
56354 2000-12-16  Jim Meyering  <meyering@lucent.com>
56355
56356         This bug had a serious impact on chown: `chown N:M FILE' (for integer
56357         N and M) would have treated it like `chown N:N FILE'.
56358
56359         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
56360
56361 2000-12-16  Jim Meyering  <meyering@lucent.com>
56362
56363         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
56364         SHELLS_FILE to a file name that's useful on djgpp systems.
56365         Include stdlib.h.
56366         (ADDITIONAL_DEFAULT_SHELLS): Define.
56367         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
56368         Based mostly on a patch from Prashant TR.
56369
56370 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
56371
56372         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
56373         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
56374         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
56375
56376 2000-12-08  Andreas Schwab  <schwab@suse.de>
56377
56378         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
56379         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
56380
56381 2000-12-07  Jim Meyering  <meyering@lucent.com>
56382
56383         * lib/stripslash.c (ISSLASH): Define.
56384         (strip_trailing_slashes): Use ISSLASH rather than comparing against
56385         `/'.
56386         From Prashant TR.
56387
56388         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
56389         (dir_name_r): Declare this function as static.
56390         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
56391         manifest itself on a name containing a mix of slashes and
56392         backslashes.
56393         Make this function work with names starting with a DOS-style
56394         drive letter and colon prefix.
56395         (dir_name): Append `.' if necessary.
56396         Based mostly on patches from Prashant TR and Eli Zaretskii.
56397
56398         * lib/dirname.h (dir_name_r): Remove prototype.
56399
56400 2000-12-06  Paul Eggert  <eggert@twinsun.com>
56401
56402         * m4/off_t-format.m4: Remove this file.
56403         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
56404
56405 2000-12-06  Jim Meyering  <meyering@lucent.com>
56406
56407         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
56408         replacement strtoull, we may well need the replacement strtoul, too.
56409         Check for declarations of strtoul and strtoull.
56410         Check for strtol.  Mainly as a cue to cause automake to include
56411         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
56412         Check for limits.h -- strtol.c needs it.
56413
56414 2000-12-05  Jim Meyering  <meyering@lucent.com>
56415
56416         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
56417
56418 2000-12-04  Jim Meyering  <meyering@lucent.com>
56419
56420         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
56421         Also include memory.h, stdlib.h, unistd.h if appropriate.
56422         Reported by Andreas Jaeger (conflicting declaration of malloc).
56423
56424 2000-12-02  Jim Meyering  <meyering@lucent.com>
56425
56426         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
56427         * m4/jm-macros.m4 (jm_MACROS): require it.
56428
56429 2000-12-02  Jim Meyering  <meyering@lucent.com>
56430
56431         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
56432
56433 2000-12-01  Paul Eggert  <eggert@twinsun.com>
56434
56435         * lib/memrchr.c: Include <config.h> before any system include file.
56436
56437 2000-11-30  Jim Meyering  <meyering@lucent.com>
56438
56439         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
56440
56441 2000-11-30  Jim Meyering  <meyering@lucent.com>
56442
56443         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
56444
56445 2000-11-29  Paul Eggert  <eggert@twinsun.com>
56446
56447         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
56448
56449 2000-11-26  Jim Meyering  <meyering@lucent.com>
56450
56451         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
56452
56453 2000-11-22  Paul Eggert  <eggert@twinsun.com>
56454
56455         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
56456         size of (size_t) -1; it's not portable.
56457
56458 2000-11-17  Jim Meyering  <meyering@lucent.com>
56459
56460         * lib/strstr.c: Update from GNU libc.
56461
56462 2000-11-17  Akim Demaille  <akim@epita.fr>
56463
56464         * lib/obstack.h: Formatting changes.
56465         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
56466         prevent type checking.
56467         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
56468         cast the value to (void *): assigning a `foo *' to a `void *'
56469         variable is valid.
56470         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
56471
56472 2000-11-16  Jim Meyering  <meyering@lucent.com>
56473
56474         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
56475
56476 2000-11-11  Jim Meyering  <meyering@lucent.com>
56477
56478         * lib/error.c: Add a couple #includes, merging from GNU libc version.
56479
56480 2000-11-10  Jim Meyering  <meyering@lucent.com>
56481
56482         * lib/obstack.h: Update from GNU libc.
56483         * lib/obstack.c: Likewise.
56484
56485 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
56486
56487         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
56488
56489 2000-11-06  Paul Eggert  <eggert@twinsun.com>
56490
56491         * lib/getusershell.c (setusershell): Use rewind rather than
56492         fseek/fseeko, to avoid configuration hassles with fseeko.
56493         Don't bother opening SHELLS_FILE if shellstream is NULL;
56494         it's not necessary.
56495
56496 2000-11-05  Jim Meyering  <meyering@lucent.com>
56497
56498         * lib/makepath.h (make_dir): Declare.
56499         * lib/makepath.c (make_dir): Remove `static' attribute.
56500         Tweak a comment.
56501
56502 2000-11-04  Jim Meyering  <meyering@lucent.com>
56503
56504         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
56505
56506 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
56507
56508         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
56509         last one in a bucket, advance to the next bucket.
56510
56511 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
56512
56513         * lib/fnmatch.c: Do not comment out all the code if we are using
56514         the GNU C library, because in some cases we are replacing buggy
56515         code in the GNU C library itself.
56516
56517 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
56518
56519         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
56520         (regex_compile): Catch bogus \(\1\).
56521
56522 2000-10-30  Paul Eggert  <eggert@twinsun.com>
56523
56524         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
56525         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
56526         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
56527
56528 2000-10-30  Paul Eggert  <eggert@twinsun.com>
56529
56530         * lib/error.h, getline.h, modechange.h:
56531         Remove "2000" from Copyright line, as the file hasn't been
56532         changed this year other than in the copyright notice.
56533
56534         * lib/xalloc.h: Add "2000" to Copyright line, as this file
56535         was changed this year.
56536
56537 2000-10-29  Jim Meyering  <meyering@lucent.com>
56538
56539         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
56540         renaming.
56541         * m4/ls-mntd-fs.m4: Likewise
56542
56543 2000-10-29  Jim Meyering  <meyering@lucent.com>
56544
56545         * lib/xstat.in: Fix grammar in comment.
56546
56547 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
56548
56549         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
56550         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
56551         doesn't define __restrict_arr.
56552
56553 2000-10-28  Jim Meyering  <meyering@lucent.com>
56554
56555         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
56556         (jm_PREREQ_MEMCHR): New function.
56557
56558 2000-10-28  Jim Meyering  <meyering@lucent.com>
56559
56560         * lib/memchr.c: Update from libc.
56561         Adjust for portability:
56562         [HAVE_STDLIB_H]: Include stdlib.h.
56563         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
56564         Undef __memchr, too.
56565         [!weak_alias]: Define __memchr to memchr.
56566
56567         * lib/regex.c: Update from libc.
56568         * lib/regex.h: Likewise.
56569         * lib/getopt1.c: Likewise.
56570         * lib/memcmp.c: Likewise.
56571
56572         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
56573         Avoid using fseek, when possible -- it's broken by design.
56574         Patch by Ulrich Drepper.
56575
56576 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
56577
56578         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
56579         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
56580         Giving in to popular pressure to shut up the compiler with casts.
56581
56582 2000-10-26  Jim Meyering  <meyering@lucent.com>
56583
56584         * lib/strftime.c: Update from libc.
56585
56586 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
56587
56588         * regex.c: More `unsigned char' -> `re_char' changes.
56589         Also change several `int' into `re_wchar_t'.
56590         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
56591         (PUSH_FAILURE_POINTER): Don't cast any more.
56592         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
56593         We want GCC to complain, since this piece of code makes
56594         re_match non-reentrant, which *should* be fixed.
56595         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
56596         (EXTEND_BUFFER): Use RETALLOC.
56597         (SET_LIST_BIT): Don't cast.
56598         (re_wchar_t): New type.
56599         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
56600         that those two functions will always properly return.
56601         (IMMEDIATE_QUIT_CHECK): Cast to void.
56602         (analyse_first): Use recursion rather than an explicit stack.
56603         (re_compile_fastmap): Can't fail anymore.
56604         (re_search_2): Don't check re_compile_fastmap for failure.
56605         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
56606         Now also sets the new value (passed in a new argument).
56607         (re_match_2_internal): Use it.
56608         Also, use a new var `reg' of type size_t when looping through regs
56609         rather than reuse the inappropriate `mcnt'.
56610
56611 2000-10-25  Jim Meyering  <meyering@lucent.com>
56612
56613         * lib/obstack.c: Update from libc.
56614
56615 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
56616
56617         * regex.c (regex_compile): Change the way of handling a range from
56618         a char less than 256 to a char not less than 256.
56619
56620 2000-10-24  Andrew Innes  <andrewi@gnu.org>
56621
56622         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
56623         NT-Emacs only.
56624         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
56625         so that re_search functions only quit when callers expect them to.
56626
56627 2000-10-23  Jim Meyering  <meyering@lucent.com>
56628
56629         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
56630         wrong.  That set_locale call must not have any side effects.
56631         From Paul Eggert.
56632
56633 2000-10-22  Jim Meyering  <meyering@lucent.com>
56634
56635         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
56636         [CYCLIC]: Remove now-unused definition.
56637
56638         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
56639         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
56640         Suggestion from Ulrich Drepper.
56641
56642 2000-10-21  Jim Meyering  <meyering@lucent.com>
56643
56644         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
56645         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
56646         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
56647
56648 2000-10-21  Jim Meyering  <meyering@lucent.com>
56649
56650         * lib/dirname.c (memrchr): Declare if necessary.
56651         (dir_name): Remove the restriction that there be no
56652         trailing slashes.  Now, this code skips past them, effectively
56653         ignoring them.
56654         [TEST_DIRNAME] (main): New unit tests.
56655
56656         * lib/memrchr.c: New file from GNU libc.
56657         Undef __memrchr, too.
56658         [!weak_alias]: Define __memrchr to memrchr.
56659         Guard weak_alias use with `#ifdef weak_alias'.
56660
56661 2000-10-21  Jim Meyering  <meyering@lucent.com>
56662
56663         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
56664         (dir_name): Use dir_name_r.
56665         * lib/dirname.h (dir_name_r): Declare it.
56666
56667 2000-10-17  Jim Meyering  <meyering@lucent.com>
56668
56669         * lib/quote.h (PARAMS): Define and use.
56670         Reported by Akim Demaille.
56671
56672         * lib/getopt.c: Update from libc.
56673
56674 2000-10-16  Jim Meyering  <meyering@lucent.com>
56675
56676         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
56677         setlocale.
56678         From Jan Fedak.
56679
56680 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
56681
56682         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
56683
56684 2000-09-25  Jim Meyering  <meyering@lucent.com>
56685
56686         * lib/md5.h (rol): Define (from GnuPG).
56687
56688         * lib/sha.c: Give credit (GnuPG) where due.
56689         (M): Use rol rather than open-coding it.
56690         Add a FIXME comment.
56691
56692 2000-09-21  Jim Meyering  <meyering@lucent.com>
56693
56694         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
56695         Reported by Michael Stone.
56696
56697 2000-09-20  Jim Meyering  <meyering@lucent.com>
56698
56699         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
56700         (noinst_HEADERS): Add sha.h.
56701         Based on code from Scott G. Miller and from GnuPG.
56702
56703 2000-09-18  Jim Meyering  <meyering@lucent.com>
56704
56705         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
56706         LIBS. Otherwise, everyone ends up linking with -lelf for some
56707         configurations.
56708         Reported by Mike Stone.
56709
56710 2000-09-15  Jim Meyering  <meyering@lucent.com>
56711
56712         * lib/regex.c: Update from libc.
56713
56714 2000-09-10  Jim Meyering  <meyering@lucent.com>
56715
56716         * lib/getopt.c (_getopt_internal): Update from glibc.
56717
56718 2000-09-09  Jim Meyering  <meyering@lucent.com>
56719
56720         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
56721         think it should be used as a general replacement for isascii.
56722         * lib/fnmatch.c: Likewise.
56723         * lib/mbswidth.c: Likewise
56724         * lib/regex.c: Likewise.
56725
56726         Don't use atoi.
56727         * lib/userspec.c: Include sys/param.h and limits.h.
56728         Include xstrtol.h.
56729         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
56730         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
56731         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
56732         UID, GID.  Check range.
56733
56734 2000-09-06  Jim Meyering  <meyering@lucent.com>
56735
56736         * lib/getopt.c (_getopt_internal): Update from glibc.
56737
56738 2000-08-30  Jim Meyering  <meyering@lucent.com>
56739
56740         * lib/strftime.c: Merge in changes from GNU libc.
56741
56742 2000-08-26  Jim Meyering  <meyering@lucent.com>
56743
56744         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
56745         * m4/fpending.m4: New file.
56746
56747 2000-08-26  Jim Meyering  <meyering@lucent.com>
56748
56749         * lib/closeout.c: Include "__fpending.h".
56750         (close_stdout_status): Return right away if there's nothing to flush.
56751
56752         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
56753         * lib/__fpending.c: New file.
56754         * lib/__fpending.h: New file.
56755
56756 2000-08-20  Jim Meyering  <meyering@lucent.com>
56757
56758         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
56759         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
56760         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
56761
56762 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
56763
56764         Improve fileutils installation on systems where running
56765         programs (like install) can't be unlinked.
56766         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
56767         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
56768
56769 2000-08-07  Paul Eggert  <eggert@twinsun.com>
56770
56771         Standardize on "memory exhausted" instead of "Memory exhausted"
56772         or "virtual memory exhausted".
56773         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
56774         "virtual memory exhausted".
56775         * lib/same.c (same_name): Invoke xalloc_die instead of printing
56776         our own message.
56777         * lib/userspec.c (parse_user_spec): Likewise.
56778         * lib/bumpalloc.h: comment fix
56779         * lib/same.c, userspec.c: Include xalloc.h.
56780
56781         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
56782         not char *const and pointing to a constant array.
56783         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
56784         (xrealloc): Comment fix.
56785
56786         * lib/userspec.c (parse_user_spec):
56787         Don't translate a message until just before returning,
56788         to avoid unnecessary translation.
56789
56790 2000-08-07  Jim Meyering  <meyering@lucent.com>
56791
56792         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
56793         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
56794         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
56795         getgroups.c, gethostname.c, getopt.h, group-member.c,
56796         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
56797         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
56798         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
56799         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
56800         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
56801         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
56802         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
56803         yesno.c: Back out Copyright date changes for each file with no change
56804         this year.  This eases coordination with other programs using the same
56805         source code modules.  From Paul Eggert.
56806
56807 2000-08-06  Paul Eggert  <eggert@twinsun.com>
56808
56809         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
56810         not char, for compatibility with glibc 2.1.3 strftime.c.
56811
56812 2000-08-03  Greg McGary  <greg@mcgary.org>
56813
56814         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
56815         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
56816         (EXTEND_BUFFER): Use them.
56817
56818 2000-08-01  Jim Meyering  <meyering@lucent.com>
56819
56820         * lib/dirname.c (ISSLASH): Define.
56821         (BACKSLASH_IS_PATH_SEPARATOR): Define.
56822         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
56823         both `\' and `/' may be use as path separators.
56824         Based on a patch from Prashant TR.
56825
56826 2000-07-31  Paul Eggert  <eggert@twinsun.com>
56827
56828         * lib/quotearg.c (quotearg_n_options): Don't make the initial
56829         slot vector a constant, since it might get modified.
56830
56831 2000-07-31  Jim Meyering  <meyering@lucent.com>
56832
56833         * lib/xmalloc.c: Use `virtual memory exhausted', not
56834         `Memory exhausted'.
56835         * lib/obstack.c (print_and_abort): Likewise.
56836
56837 2000-07-30  Paul Eggert  <eggert@twinsun.com>
56838
56839         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
56840         buffer, so that the caller can always quote one small
56841         component of a "memory exhausted" message in slot 0.
56842         From a suggestion by Jim Meyering.
56843
56844 2000-07-30  Jim Meyering  <meyering@lucent.com>
56845
56846         * lib/makepath.c (make_path): Quote the other instance, too.
56847
56848         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
56849         (STATIC_BUF_SIZE): Define.
56850         (quotearg_n_options): Use only statically allocated storage when
56851         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
56852         than STATIC_BUF_SIZE.
56853
56854 2000-07-29  Jim Meyering  <meyering@lucent.com>
56855
56856         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
56857         * lib/dirname.c (dir_name): Likewise.
56858
56859         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
56860         `/'.
56861
56862         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
56863         (dir_name): Assert that there are no trailing slashes.
56864
56865 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
56866
56867         * lib/mbswidth.h (mbswidth): Add a flags argument.
56868         (mbswidth): New declaration.
56869         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
56870         * lib/mbswidth.c (mbswidth): Add a flags argument.
56871         (mbsnwidth): New function.
56872
56873 2000-07-24  Jim Meyering  <meyering@lucent.com>
56874
56875         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
56876
56877 2000-07-23  Paul Eggert  <eggert@twinsun.com>
56878
56879         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
56880
56881 2000-07-23  Paul Eggert  <eggert@twinsun.com>
56882
56883         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
56884         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
56885         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
56886         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
56887         invoke multibyte primitives.
56888
56889 2000-07-23  Paul Eggert  <eggert@twinsun.com>
56890
56891         * lib/quotearg.c:
56892         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
56893         so that mbstate_t is always defined.
56894
56895         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
56896         be 1 in at least one GCC installation, and this configuration
56897         error is likely to be common.  Ignoring MB_LEN_MAX hurts
56898         performance on hosts that have mbrtowc but have only unibyte
56899         locales, but I assume these hosts are rare.
56900
56901 2000-07-23  Paul Eggert  <eggert@twinsun.com>
56902
56903         * lib/mbswidth.c (_XOPEN_SOURCE):
56904         Don't define; this causes problems on Solaris 7.
56905         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
56906
56907 2000-07-23  Jim Meyering  <meyering@lucent.com>
56908
56909         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
56910         too: getgrgid, getpwuid, getuid.
56911
56912 2000-07-23  Jim Meyering  <meyering@lucent.com>
56913
56914         * lib/basename.c (base_name): Add an assertion.
56915
56916 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
56917
56918         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
56919         shadow its mbsinit function.
56920
56921 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
56922
56923         * lib/mbswidth.h: New file.
56924         * lib/mbswidth.c: New file.
56925         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
56926         (noinst_HEADERS): Add mbswidth.h.
56927
56928 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
56929
56930         * lib/config.charset: Add support for FreeBSD. Improve support for
56931         HP-UX and IRIX 6.
56932
56933 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
56934
56935         * m4/mbswidth.m4: New file.
56936         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
56937
56938 2000-07-15  Jim Meyering  <meyering@lucent.com>
56939
56940         * lib/makepath.c: Include quote.h.
56941         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
56942         corresponding argument in a `quote (...)' call.
56943         Give better diagnostics.
56944
56945         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
56946         (noinst_HEADERS): Add quote.h.
56947
56948         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
56949         from tar's src/misc.c.
56950         * lib/quote.h: New file.  Prototypes for same.
56951
56952 2000-07-14  Paul Eggert  <eggert@twinsun.com>
56953
56954         From a suggestion by Bruno Haible.
56955         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
56956         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
56957         to decide whether to define the BeOS workaround macro;
56958         this adjusts to the change to AC_MBSTATE_T.
56959
56960 2000-07-14  Jim Meyering  <meyering@lucent.com>
56961
56962         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
56963         jm_AC_TYPE_UINTMAX_T.
56964
56965 2000-07-13  Paul Eggert  <eggert@twinsun.com>
56966
56967         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
56968
56969         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
56970         quotearg_buffer_restyled): Add support for
56971         clocale_quoting_style.  Undo previous change to
56972         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
56973         and "{RIGHT QUOTATION MARK}" msgids.
56974
56975 2000-07-10  Paul Eggert  <eggert@twinsun.com>
56976
56977         From a suggestion by Bruno Haible.
56978         * m4/mbstate_t.m4 (AC_MBSTATE_T):
56979         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
56980         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
56981         and mbstate_t, to a single-part test that simply defines mbstate_t.
56982         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
56983         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
56984
56985 2000-07-10  Jim Meyering  <meyering@lucent.com>
56986
56987         * m4/strerror_r.m4: Mirror the correction made in autoconf.
56988
56989         * m4/gnu-source.m4: Output to confdefs.h directly.
56990         Suggestion from Akim Demaille.
56991
56992 2000-07-09  Paul Eggert  <eggert@twinsun.com>
56993
56994         The old behavior of quoting `like this' doesn't look good with
56995         newer, ISO-style fonts.  See:
56996         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
56997
56998         Instead, quote "like this" by default.  Let the translator
56999         tailor the locale-specific quoting behavior by providing
57000         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
57001
57002         * lib/quotearg.c (N_): New macro.
57003         (gettext_default): New function.
57004         (quotearg_buffer_restyled): Use
57005         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
57006         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
57007
57008 2000-07-09  Jim Meyering  <meyering@lucent.com>
57009
57010         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
57011         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
57012
57013         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
57014         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
57015
57016 2000-07-09  Jim Meyering  <meyering@lucent.com>
57017
57018         * lib/Most files: Update copyright dates to include 2000.
57019
57020 2000-07-08  Jim Meyering  <meyering@lucent.com>
57021
57022         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
57023         if not defined.
57024         (xgethostname): Remove now-unnecessary #ifdef.
57025         Move declaration of `err' into loop where it's used.
57026
57027 2000-07-05  Paul Eggert  <eggert@twinsun.com>
57028         and Bruno Haible  <haible@clisp.cons.org>
57029
57030         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
57031         only if the test for an object-type mbstate_t fails.  This
57032         prevents us from mistakenly reporting that mbstate_t is a
57033         system object type after we "#define mbstate_t int" to work
57034         around its lack.
57035
57036 2000-07-05  Paul Eggert  <eggert@twinsun.com>
57037         and Bruno Haible  <haible@clisp.cons.org>
57038
57039         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
57040
57041 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
57042
57043         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
57044         to strerror_r.
57045         Include <ctype.h> for use of isalpha.
57046
57047 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
57048
57049         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
57050         by allocating a larger buffer. Test the gethostname return value for
57051         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
57052         returns an error and ENAMETOOLONG isn't defined.
57053
57054 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
57055
57056         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
57057         dimension.
57058
57059 2000-07-04  Jim Meyering  <meyering@lucent.com>
57060
57061         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
57062         of the deprecated AC_CHECKING.
57063
57064 2000-07-04  Jim Meyering  <meyering@lucent.com>
57065
57066         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
57067         Reported by Bruno Haible.
57068
57069 2000-07-04  Jim Meyering  <meyering@lucent.com>
57070
57071         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
57072         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
57073         lacks mbrtowc.
57074
57075 2000-07-03  Paul Eggert  <eggert@twinsun.com>
57076
57077         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
57078         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
57079
57080 2000-07-03  Paul Eggert  <eggert@twinsun.com>
57081         and Bruno Haible  <haible@clisp.cons.org>
57082
57083         * lib/quotearg.c (mbrtowc):
57084         Assign to *pwc, and return 1 only if result is nonzero.
57085         (iswprint): Use ISPRINT when substituting our own mbrtowc.
57086
57087 2000-07-03  Jim Meyering  <meyering@lucent.com>
57088
57089         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
57090
57091 2000-07-03  Jim Meyering  <meyering@lucent.com>
57092
57093         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
57094         This is necessary to get a definition of e.g., UTMP_FILE on
57095         HP-UX 10.20.
57096         From Bob Proulx.
57097
57098 2000-07-02  Jim Meyering  <meyering@lucent.com>
57099
57100         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
57101
57102         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
57103         AC_LIBOBJ(function_name).
57104         * m4/chown.m4: Likewise.
57105         * m4/fnmatch.m4: Likewise.
57106         * m4/ftruncate.m4: Likewise.
57107         * m4/getgroups.m4: Likewise.
57108         * m4/getline.m4: Likewise.
57109         * m4/group-member.m4: Likewise.
57110         * m4/jm-macros.m4: Likewise.
57111         * m4/lstat.m4: Likewise.
57112         * m4/malloc.m4: Likewise.
57113         * m4/memcmp.m4: Likewise.
57114         * m4/nanosleep.m4: Likewise.
57115         * m4/putenv.m4: Likewise.
57116         * m4/realloc.m4: Likewise.
57117         * m4/regex.m4: Likewise.
57118         * m4/stat.m4: Likewise.
57119         * m4/strftime.m4: Likewise.
57120
57121 2000-07-02  Jim Meyering  <meyering@lucent.com>
57122
57123         * lib/quotearg.c (mbstate_t): Don't define here.
57124
57125 2000-07-02  Jim Meyering  <meyering@lucent.com>
57126
57127         * lib/nanosleep.c (SIGCONT): Define if not already defined.
57128
57129 2000-07-01  Jim Meyering  <meyering@lucent.com>
57130
57131         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
57132
57133 2000-07-01  Jim Meyering  <meyering@lucent.com>
57134
57135         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
57136         problem.
57137
57138 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
57139
57140         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
57141         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
57142
57143 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
57144
57145         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
57146         per change in ../m4/ls-mntd-fs.m4.
57147         (read_filesystem_list): Ignore symbolic links.
57148
57149 2000-06-29  Jim Meyering  <meyering@lucent.com>
57150
57151         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
57152         for declaration of strcmp.
57153
57154         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
57155
57156         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
57157         Avoid warning by casting result to `char *' to remove `const'.
57158
57159 2000-06-28  Jim Meyering  <meyering@lucent.com>
57160
57161         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
57162         included by quotearg.c, for which we perform this test.  From
57163         Bruno Haible.
57164
57165 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
57166
57167         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
57168         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
57169         <utmpx.h> exists, put readutmp.o into LIBOBJS.
57170
57171 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
57172
57173         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
57174
57175 2000-06-26  Paul Eggert  <eggert@twinsun.com>
57176
57177         savedir now sets errno on failure and invokes xmalloc to get memory.
57178         Fix a couple of other minor bugs while we're at it.
57179
57180         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
57181         (NAMLEN): Remove macro.
57182         (malloc, realloc): Remove decls.
57183         (stpcpy): Likewise.
57184         ("xalloc.h"): Include.
57185         (NAME_SIZE_DEFAULT): New macro.
57186         (savedir): Use xmalloc / xrealloc to allocate memory.
57187         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
57188         Skip "" directory entries.
57189         Use strlen to calculate directory entry length, since the old method
57190         is rarely used these days and isn't worth supporting.
57191         Don't use a pointer after freeing it.
57192         Check for integer overflow when calculating allocation size.
57193         Use memcpy to copy entries, instead of stpcpy.
57194         Set errno properly when returning NULL.
57195         Check for readdir error.
57196
57197 2000-06-26  Jim Meyering  <meyering@lucent.com>
57198
57199         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
57200
57201 2000-06-25  Jim Meyering  <meyering@lucent.com>
57202
57203         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
57204         Linux header bug when _XOPEN_SOURCE is defined to 500.
57205
57206 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
57207
57208         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
57209         deficiency.
57210
57211 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
57212
57213         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
57214         Include xalloc.h.
57215         Don't include <stdlib.h>.  Don't declare malloc, realloc.
57216
57217 2000-06-24  Jim Meyering  <meyering@lucent.com>
57218
57219         * m4/strerror_r.m4: Revive this file -- to try out an experimental
57220         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
57221         for which strerror does return char*, but which lacks a conveniently
57222         accessible declaration of the function.  If the compile-test says
57223         strerror_r doesn't work, then resort to a `run'-test that works on
57224         BeOS and segfaults on DEC Unix.
57225
57226 2000-06-24  Jim Meyering  <meyering@lucent.com>
57227
57228         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
57229
57230 2000-06-23  Paul Eggert  <eggert@twinsun.com>
57231
57232         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
57233         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
57234
57235 2000-06-23  Paul Eggert  <eggert@twinsun.com>
57236
57237         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
57238         (mbrtowc, mbstate_t): Define substitutes if
57239         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
57240         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
57241         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
57242
57243 2000-06-23  Jim Meyering  <meyering@lucent.com>
57244
57245         * m4/afs.m4: Add missing AC_MSG_RESULT.
57246         Reported by Bruno Haible.
57247
57248         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
57249         Suggestion from Bruno Haible.
57250
57251 2000-06-23  Jim Meyering  <meyering@lucent.com>
57252
57253         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
57254
57255 2000-06-21  Jim Meyering  <meyering@lucent.com>
57256
57257         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
57258
57259 2000-06-21  Jim Meyering  <meyering@lucent.com>
57260
57261         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
57262         (noinst_HEADERS): Add getstr.h.
57263
57264         * lib/getline.c (getstr): Move into a separate file.
57265         * lib/getstr.c (getstr): New file, extracted from getline.c, with
57266         the following changes: new parameter, delim2; both delim[12]
57267         parameters have type `int', not `char'.  The latter would lose
57268         with 8-bit delimiters.
57269         * lib/getstr.h: New file.
57270
57271 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
57272
57273         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
57274         than 1024, return a memory chunk of least possible size, instead
57275         of size PATH_MAX + 2. In the loop, increment the size proportionally.
57276         Use free/xmalloc instead of xrealloc to avoid copying for very long
57277         paths.
57278
57279 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
57280
57281         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
57282         the empty string.
57283
57284 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
57285
57286         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
57287         address, not strdup.  Include <stdlib.h> and don't declare free().
57288
57289 2000-06-19  Jim Meyering  <meyering@lucent.com>
57290
57291         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
57292
57293 2000-06-18  Jim Meyering  <meyering@lucent.com>
57294
57295         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
57296
57297         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
57298         `checking whether...' message to be consistent with that of the
57299         lstat test.
57300
57301 2000-06-18  Jim Meyering  <meyering@lucent.com>
57302
57303         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
57304         Besides, these days every porting target provides a mkdir function.
57305
57306         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
57307         needed. (this snippet comes from src/system.h).
57308
57309 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
57310
57311         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
57312
57313 2000-06-15  Paul Eggert  <eggert@twinsun.com>
57314
57315         * lib/human.c (adjust_value): New function.
57316         (human_readable_inexact): Apply rounding style even when
57317         printing approximate values.
57318
57319 2000-06-14  Paul Eggert  <eggert@twinsun.com>
57320
57321         * lib/human.c (human_readable_inexact): Allow an input block
57322         size that is not a multiple of the output block size, and vice versa.
57323         Reported by Piergiorgio Sartor.
57324
57325 2000-06-14  Paul Eggert  <eggert@twinsun.com>
57326
57327         * lib/getdate.y (get_date): Apply relative times after time
57328         zone indicator, not before.  Reported by Todd A. Jacobs.
57329
57330 2000-06-13  Jim Meyering  <meyering@lucent.com>
57331
57332         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
57333
57334         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
57335
57336 2000-06-12  Paul Eggert  <eggert@twinsun.com>
57337
57338         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
57339
57340 2000-06-12  Jim Meyering  <meyering@lucent.com>
57341
57342         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
57343         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
57344         optional argument.
57345         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
57346         the optional argument, `lib'.
57347
57348 2000-06-08  Jim Meyering  <meyering@lucent.com>
57349
57350         * m4/largefile.m4: Remove file (now that it's part of autoconf).
57351
57352 2000-06-04  Paul Eggert  <eggert@twinsun.com>
57353
57354         Rewrite largefile configuration so that we don't need to run
57355         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
57356         AC_CANONICAL_HOST in configure.in -- jmm]
57357
57358         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
57359         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
57360         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
57361         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
57362         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
57363         All uses changed.
57364         Instead of inspecting the output of getconf, try to compile the
57365         test program without and with the macro definition.
57366         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
57367         for getconf.  Instead, check for the needed flags by compiling
57368         test programs.
57369
57370 2000-06-04  Paul Eggert  <eggert@twinsun.com>
57371
57372         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
57373
57374 2000-06-04  Jim Meyering  <meyering@lucent.com>
57375
57376         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
57377         SunOS 4.1.4 for which gid_t is an unsigned type.
57378
57379 2000-06-03  Jim Meyering  <meyering@lucent.com>
57380
57381         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
57382         now that autoconf requires that.
57383
57384         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
57385         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
57386         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
57387
57388 2000-06-03  Jim Meyering  <meyering@lucent.com>
57389
57390         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
57391
57392 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
57393
57394         * m4/glibc21.m4: New file.
57395         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
57396
57397 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
57398
57399         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
57400         newer, don't install charset.alias.
57401         * lib/config.charset: Change the Linux/glibc rules so they become empty
57402         on glibc-2.1 or newer.
57403
57404 2000-06-02  Jim Meyering  <meyering@lucent.com>
57405
57406         * lib/mountlist.c: Back out last change.  Instead, do this...
57407         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
57408         me_dummy member using the same `ignore'-testing code.
57409         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
57410         fs_type strings.
57411         From Mark D. Roth.
57412
57413 2000-05-29  Jim Meyering  <meyering@lucent.com>
57414
57415         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
57416         mounts with the `ignore' attribute.  Based on a patch from
57417         Mark D. Roth.
57418
57419 2000-05-28  Jim Meyering  <meyering@lucent.com>
57420
57421         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
57422         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
57423         * m4/stat.m4: Likewise.
57424         * m4/lstat.m4: Likewise.
57425         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
57426
57427         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
57428         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
57429
57430 2000-05-26  Jim Meyering  <meyering@lucent.com>
57431
57432         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
57433
57434 2000-05-24  Jim Meyering  <meyering@lucent.com>
57435
57436         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
57437         autoconf requires that.
57438         * m4/lib-check.m4: Likewise.
57439         * m4/jm-macros.m4: Likewise.
57440         * m4/strftime.m4: Likewise.
57441
57442         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
57443         AC_CHECK_DECLS, now that autoconf requires that.
57444
57445 2000-05-22  Jim Meyering  <meyering@lucent.com>
57446
57447         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
57448         * m4/lstat.m4: Likewise.
57449
57450 2000-05-22  Jim Meyering  <meyering@lucent.com>
57451
57452         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
57453
57454 2000-05-20  Jim Meyering  <meyering@lucent.com>
57455
57456         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
57457         (jm_PREREQ): Use it.
57458
57459 2000-05-18  Jim Meyering  <meyering@lucent.com>
57460
57461         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
57462         back, too, since it may have been modified by allocate_entry.
57463         (hash_delete): Rewrite to use neither the assignment operator
57464         nor the comma operator in an if-expression.
57465
57466 2000-05-15  Paul Eggert  <eggert@twinsun.com>
57467
57468         * lib/closeout.c:
57469         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
57470         Remove; no longer needed.
57471         "quotearg.h": Add include.
57472         (file_name): Do not bother to explicitly initialize to NULL; it's less
57473         efficient on some hosts.
57474         (close_stdout_status): Remove test as to whether stdout was already
57475         closed; it breaks for the case "echo x | sort >&-".
57476         Quote file name colons.
57477         Do not assume that _("write error") lacks format strings.
57478
57479 2000-05-15  Jim Meyering  <meyering@lucent.com>
57480
57481         * lib/version-etc.c (version_etc_copyright): Update the copyright
57482         string used in all --version output.
57483
57484 2000-05-14  Jim Meyering  <meyering@lucent.com>
57485
57486         * lib/closeout.c (close_stdout_set_file_name): New function.
57487         (close_stdout_status): Use new file-scoped global.
57488         Return right away if fstat says the stdout file descriptor is invalid.
57489         * lib/closeout.h (close_stdout_set_file_name): Declare.
57490
57491 2000-05-10  Jim Meyering  <meyering@lucent.com>
57492
57493         * lib/closeout.c [default_exit_status]: New file-scoped variable.
57494         (close_stdout_set_status): New function.
57495         * lib/closeout.h (close_stdout_set_status): Declare.
57496
57497 2000-05-09  Jim Meyering  <meyering@lucent.com>
57498
57499         * m4/gettext.m4: Rename this...
57500         * m4/libintl.m4: ...to this.
57501
57502 2000-05-08  Jim Meyering  <meyering@lucent.com>
57503
57504         * lib/long-options.c: Don't include closeout.h.
57505         (parse_long_options): Don't call close_stdout for --version.
57506
57507 2000-05-06  Paul Eggert  <eggert@twinsun.com>
57508
57509         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
57510         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
57511         2.1.3 bug.  This avoids a clash when files like regex.c define
57512         _GNU_SOURCE.
57513
57514 2000-05-06  Jim Meyering  <meyering@lucent.com>
57515
57516         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
57517         (AC_REPLACE_FUNCS): Add strnlen.
57518
57519         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
57520         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
57521
57522         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
57523         AC_SEARCH_LIBS call for nanosleep.
57524         (LIB_NANOSLEEP): Set and AC_SUBST.
57525
57526 2000-05-06  Jim Meyering  <meyering@lucent.com>
57527
57528         * lib/strnlen.c: Undefine __strnlen and strnlen.
57529         [!weak_alias]: Define __strnlen to strnlen.
57530
57531         * lib/atexit.c: New file, from libiberty.
57532
57533 2000-05-06  Jim Meyering  <meyering@lucent.com>
57534
57535         * lib/closeout.c (close_stdout_status): Also check for errors on the
57536         stderr stream.
57537
57538 2000-05-05  Jim Meyering  <meyering@lucent.com>
57539
57540         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
57541         AC_SEARCH_LIBS call for clock_gettime.
57542         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
57543
57544         * m4/search-libs.m4: Update from autoconf.
57545
57546         su doesn't work on Solaris 2.6.
57547         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
57548         <shadow.h>.  Reported by Dragos Harabor.
57549
57550 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
57551
57552         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
57553         memcpy instead of xmalloc, xrealloc, path_concat.
57554         (locale_charset): Treat empty environment variables as absent.
57555         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
57556
57557 2000-05-04  Jim Meyering  <meyering@lucent.com>
57558
57559         * lib/getopt.c: Update from glibc.
57560         * lib/obstack.c: Likewise.
57561         * lib/obstack.h: Likewise.
57562         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
57563         file
57564
57565         * lib/regex.h: Likewise.
57566         * lib/strndup.c: Likewise.
57567         * lib/strnlen.c: New file, from glibc.
57568
57569 2000-05-03  Jim Meyering  <meyering@lucent.com>
57570
57571         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
57572
57573 2000-05-02  Paul Eggert  <eggert@twinsun.com>
57574
57575         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
57576         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
57577         compile-time test, rather than inspecting host and OS, to
57578         decide whether to define _LARGEFILE_SOURCE.
57579
57580 2000-05-01  Jim Meyering  <meyering@lucent.com>
57581
57582         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
57583
57584         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
57585         Based on a patch from Bruno Haible.
57586
57587 2000-05-01  Jim Meyering  <meyering@lucent.com>
57588
57589         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
57590
57591 2000-04-29  Jim Meyering  <meyering@lucent.com>
57592
57593         * lib/path-concat.c: Declare strdup only if it's not defined.
57594         * lib/canon-host.c: Likewise.
57595
57596 2000-04-28  Jim Meyering  <meyering@lucent.com>
57597
57598         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
57599         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
57600         is included first, then limits.h is included by locale.h by libintl.h.
57601         From John David Anglin.
57602
57603 2000-04-25  Jim Meyering  <meyering@lucent.com>
57604
57605         * lib/makepath.c (S_IRWXUGO): Define.
57606         (make_path): Always perform explicit chmod if MODE specifies any
57607         of the `special' permission bits.  Prompted by a bug report against
57608         install from Mate Wierdl and Joost van Baal.
57609
57610 2000-04-18  Jim Meyering  <meyering@lucent.com>
57611
57612         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
57613         (jm_PREREQ): Use it.
57614
57615 2000-04-18  Jim Meyering  <meyering@lucent.com>
57616
57617         * lib/README: New file.
57618
57619         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
57620         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
57621
57622 2000-04-17  Jim Meyering  <meyering@lucent.com>
57623
57624         Get it right :-)
57625         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
57626         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
57627         Suggestion from Akim Demaille.
57628
57629 2000-04-17  Jim Meyering  <meyering@lucent.com>
57630
57631         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
57632         the definition of it to rpl_strftime also defined-away the system's
57633         declaration.
57634
57635 2000-04-15  Jim Meyering  <meyering@lucent.com>
57636
57637         Use `C' to denote so-called `contiguous' files, the same way
57638         that tar does.
57639         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
57640         (ftypelet): Use S_ISCTG.
57641         From Michael Deutschmann.
57642
57643 2000-04-14  Jim Meyering  <meyering@lucent.com>
57644
57645         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
57646         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
57647         clobbered.
57648
57649 2000-04-14  Jim Meyering  <meyering@lucent.com>
57650
57651         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
57652
57653 2000-04-13  Jim Meyering  <meyering@lucent.com>
57654
57655         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
57656         AH_VERBATIM to insert required #ifndef into config.h.in.
57657         Suggestion from Akim Demaille.
57658
57659 2000-04-12  Jim Meyering  <meyering@lucent.com>
57660
57661         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
57662         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
57663         Christian Krackowizer.
57664
57665         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
57666         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
57667         (AC_SYS_LARGEFILE): Require.
57668         (AM_C_PROTOTYPES): Require.
57669
57670 2000-04-08  Jim Meyering  <meyering@lucent.com>
57671
57672         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
57673         names don't conflict.  Reported by Eli Zaretskii.
57674
57675 2000-04-07  Jim Meyering  <meyering@lucent.com>
57676
57677         * lib/putenv.c: Move inclusion of errno.h so it follows that of
57678         sys/types.h, to work around system header problems on AIX 3.2.5.
57679         From Bruno Haible.
57680
57681 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
57682
57683         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
57684         bug.  Deal with the different error behavior of Irix iconv.
57685
57686 2000-04-05  Paul Eggert  <eggert@twinsun.com>
57687
57688         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
57689         IRIX if the installer said otherwise.
57690
57691 2000-04-05  Jim Meyering  <meyering@lucent.com>
57692
57693         Portability tweaks required for ultrix4.3.
57694         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
57695         (jm_CHECK_DECLS): Add getutent to the list of functions.
57696         (_jm_DECL_HEADERS): Add utmpx.h.
57697         From John David Anglin.
57698
57699         * m4/strftime.m4: Back out the 2000-04-02 change.
57700         Instead of that change, simply undefine putenv in the test program.
57701
57702 2000-04-05  Jim Meyering  <meyering@lucent.com>
57703
57704         Portability tweaks required for ultrix4.3.
57705         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
57706         getutent.
57707         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
57708         * lib/canon-host.c: Declare strdup.
57709         * lib/path-concat.c: Likewise.
57710         From John David Anglin.
57711
57712 2000-04-04  Jim Meyering  <meyering@lucent.com>
57713
57714         Be more DOS 8.3-friendly.
57715         * lib/ref-add.sin: Renamed from ref-add.sed.in.
57716         * lib/ref-del.sin: Renamed from ref-del.sed.in.
57717         * lib/Makefile.am: Reflect renaming.
57718         Reported by Eli Zaretskii.
57719
57720         Use a temporary file name that won't clash with `charset.alias'
57721         in the DOS 8.3 name space.
57722         * lib/Makefile.am (charset_tmp): Define.
57723         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
57724         (uninstall-local): Likewise.
57725         Reported by Eli Zaretskii.
57726
57727 2000-04-03  Jim Meyering  <meyering@lucent.com>
57728
57729         * m4/gettext.m4: Fix typo in comment.
57730
57731         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
57732         textutils/configure.in).  Suggestion from Paul Eggert.
57733         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
57734
57735 2000-04-02  Paul Eggert  <eggert@twinsun.com>
57736
57737         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
57738         variable in the shell rather than using putenv, which isn't
57739         portable.  This avoids the configure-time inter-test dependency
57740         on the potentially-renamed putenv function.
57741
57742 2000-03-30  Paul Eggert  <eggert@twinsun.com>
57743
57744         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
57745         before checking struct stat.st_blksize, so that
57746         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
57747
57748 2000-03-29  Paul Eggert  <eggert@twinsun.com>
57749
57750         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
57751         since strftime.c uses HAVE_STRFTIME to decide whether to use
57752         the underlying strftime.
57753
57754 2000-03-29  Paul Eggert  <eggert@twinsun.com>
57755
57756         * lib/time/strftime.c (my_strftime): Make sure we call the system
57757         strftime, not ourselves, when invoking the underlying strftime.
57758
57759 2000-03-24  Jim Meyering  <meyering@lucent.com>
57760
57761         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
57762         (charset_alias): Define.
57763         (install-exec-local): Factor out common code.
57764         (uninstall-local): Split lines longer than 80.
57765         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
57766         (SUFFIXES): Define.
57767         (.sed.in.sed): New rule.  Don't redirect directly to $@.
57768         (CLEANFILES): Add ref-add.sed and ref-del.sed.
57769
57770 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
57771
57772         * lib/config.charset: Output a line containing "Packages using this
57773         file".
57774         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
57775         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
57776         ref-del.sed): New rules.
57777
57778 2000-03-17  Jim Meyering  <meyering@lucent.com>
57779
57780         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
57781         Otherwise, include <strings.h>
57782
57783 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
57784
57785         * lib/unicodeio.c (utf8_wctomb): New function.
57786         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
57787         format instead of in UCS-4 with platform dependent endianness.
57788
57789 2000-03-10  Jim Meyering  <meyering@lucent.com>
57790
57791         * m4/lib-check.m4: Look for getspnam in -lgen, too.
57792         From Marco Franzen.
57793
57794 2000-03-07  Paul Eggert  <eggert@twinsun.com>
57795
57796         * lib/savedir.c (savedir): Work even if directory size is
57797         negative; this can happen with some screwy NFS configurations.
57798
57799 2000-03-06  Jim Meyering  <meyering@lucent.com>
57800
57801         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
57802         if it's NULL (because we ran out of memory).  From Bruno Haible.
57803
57804 2000-03-05  Jim Meyering  <meyering@lucent.com>
57805
57806         * lib/localcharset.c ("path-concat.h"): Include.
57807         (get_charset_aliases): Use path_concat instead of ANSI string
57808         concatenation.
57809
57810         * lib/unicodeio.h (PARAMS): Define.
57811         Use it to guard prototype.
57812
57813 2000-03-04  Jim Meyering  <meyering@lucent.com>
57814
57815         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
57816         for lib/localcharset.c.
57817
57818 2000-03-04  Jim Meyering  <meyering@lucent.com>
57819
57820         * lib/Makefile.am (install-exec-local): Create $(libdir) before
57821         installing into it.
57822         (uninstall-local): Uncomment this rule so `make distcheck' works
57823         once again.
57824
57825         * lib/unicodeio.c (<errno.h>): Include it.
57826         (errno): Declare if not defined.
57827
57828         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
57829
57830         * lib/config.charset: New version, incorporating remarks from a linux
57831         i18n mailing list.  From Bruno Haible.
57832
57833 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
57834
57835         * m4/codeset.m4: New file.
57836         * m4/iconv.m4: New file.
57837         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
57838
57839 2000-03-03  Jim Meyering  <meyering@lucent.com>
57840
57841         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
57842
57843 2000-03-02  Jim Meyering  <meyering@lucent.com>
57844
57845         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
57846         the messages come out on separate lines.
57847
57848         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
57849         rather than jm_CHECK_DECLARATIONS.
57850         * m4/decl.m4: Remove now-unused file.
57851
57852         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
57853         geteuid.
57854
57855 2000-03-02  Jim Meyering  <meyering@lucent.com>
57856
57857         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
57858
57859 2000-03-01  Jim Meyering  <meyering@lucent.com>
57860
57861         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
57862         * lib/unicodeio.c: Likewise.
57863
57864 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
57865
57866         * lib/config.charset: New file.
57867         * lib/localcharset.c: New file.
57868         * lib/unicodeio.h, lib/unicodeio.c: New files.
57869         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
57870         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
57871         (noinst_HEADERS): Add unicodeio.h.
57872         (all-local, install-exec-local, charset.alias): New targets.
57873
57874 2000-02-28  Paul Eggert  <eggert@twinsun.com>
57875
57876         * lib/quotearg.c (ALERT_CHAR): New macro.
57877         (quotearg_buffer_restyled): Use it.
57878
57879 2000-02-27  Jim Meyering  <meyering@lucent.com>
57880
57881         * m4/check-decl.m4: Add getenv to the list.
57882
57883 2000-02-27  Jim Meyering  <meyering@lucent.com>
57884
57885         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
57886         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
57887
57888         * lib/backupfile.c: Guard inclusion of stdlib.h with
57889         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
57890         Declare malloc if needed.
57891
57892         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
57893         `#ifndef HAVE_DECL..'
57894         now that autoconf always defines the HAVE_DECL_ symbols.
57895         * lib/human.c: Likewise.
57896         * lib/same.c: Likewise.
57897         * lib/strtoumax.c: Likewise.
57898
57899         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
57900         declaration check was not run.
57901         * lib/hash.c: Likewise.
57902         * lib/human.c: Likewise.
57903         * lib/same.c: Likewise.
57904         * lib/strtoumax.c: Likewise.
57905
57906         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
57907         `.', then first look up the entire `.'-containing string as a login
57908         name.
57909
57910 2000-02-23  Jim Meyering  <meyering@lucent.com>
57911
57912         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
57913         in place of my hack.
57914
57915 2000-02-18  Paul Eggert  <eggert@twinsun.com>
57916
57917         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
57918         (textint): New typedef.
57919         (parser_control): Member year changed from int to textint.
57920         All uses changed.
57921         (YYSTYPE): Removed; replaced by %union with int and textint members.
57922         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
57923         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
57924         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
57925         (tSNUMBER, tUNUMBER): Now of type <textintval>.
57926         (date, number, to_year): Use width of number in digits, not its value,
57927         to determine whether it's a 2-digit year, or a 2-digit time.
57928         (yylex): Store number of digits of numeric tokens.
57929         Reported by John Kendall.
57930
57931         (parser_control): Changed from struct parser_control to typedef (for
57932         consistency).  All uses changed.
57933
57934         (tID): Removed; not used.
57935         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
57936
57937 2000-02-14  Paul Eggert  <eggert@twinsun.com>
57938
57939         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
57940         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
57941
57942 2000-02-12  Jim Meyering  <meyering@lucent.com>
57943
57944         * lib/userspec.c (ISDIGIT): Define it.
57945         (isdigit): Remove definition.
57946         (is_number): Use ISDIGIT, not isdigit.
57947         <libintl.h>: Include.
57948         (_ and N_): Define.
57949         (parse_user_spec): Mark translatable strings.
57950
57951 2000-02-10  Jim Meyering  <meyering@lucent.com>
57952
57953         With these changes, nanosleep.[ch] are finally enough like the other
57954         lib/* replacement files to compile on a few more losing systems.
57955
57956         * lib/nanosleep.h: Don't include config.h.
57957         Remove prototype from declaration of nanosleep.
57958         (PARAMS): Remove now-unneeded definition.
57959         * lib/nanosleep.c: #undef nanosleep.
57960         (rpl_nanosleep): Rename from nanosleep.
57961
57962 2000-02-10  Jim Meyering  <meyering@lucent.com>
57963
57964         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
57965         gnu_nanosleep to rpl_nanosleep.
57966
57967 2000-02-09  Jim Meyering  <meyering@lucent.com>
57968
57969         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
57970         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
57971
57972 2000-02-08  Akim Demaille  <akim@epita.fr>
57973
57974         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
57975         `[' and `]' and remove uses of `changequote'.
57976         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
57977         (AC_SYS_LARGEFILE): Likewise.
57978         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
57979         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
57980         of changequote.
57981         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
57982         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
57983         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
57984         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
57985
57986 2000-02-05  Jim Meyering  <meyering@lucent.com>
57987
57988         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
57989         Remove explicit use of AC_HEADER_TIME.  It is required by
57990         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
57991         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
57992         in autoconf whereby the expansion of the latter ended up preceding
57993         the expansion of its prerequisite, AC_HEADER_TIME.
57994         Reported by Volker Borchert.
57995
57996 2000-02-03  Jim Meyering  <meyering@lucent.com>
57997
57998         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
57999
58000 2000-02-03  Jim Meyering  <meyering@lucent.com>
58001
58002         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
58003         rather than with `#if HAVE_UTMPNAME'.
58004
58005 2000-02-02  Jim Meyering  <meyering@lucent.com>
58006
58007         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
58008         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
58009         Reported by Eli Zaretskii.
58010
58011 2000-02-01  Jim Meyering  <meyering@lucent.com>
58012
58013         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
58014
58015 2000-01-31  Jim Meyering  <meyering@lucent.com>
58016
58017         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
58018         functions.  Add the time.h and sys/time.h headers along with the
58019         AC_REQUIRE'ment of AC_HEADER_TIME.
58020
58021 2000-01-31  Jim Meyering  <meyering@lucent.com>
58022
58023         * lib/nanosleep.h (nanosleep): Guard declaration with
58024         `#if ! HAVE_DECL_NANOSLEEP'.
58025         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
58026         the declaration in that vendor's sys/timers.h.
58027         Reported by Christian Krackowizer.
58028
58029         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
58030         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
58031         (ISPRINT): Likewise.
58032         Reported by Tom Tromey.
58033
58034 2000-01-30  Jim Meyering  <meyering@lucent.com>
58035
58036         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
58037
58038         * m4/prereq.m4 (utmp_includes): Define.
58039         Check for ut_user and ut_name members in both struct utmpx
58040         and struct utmp.
58041
58042 2000-01-30  Jim Meyering  <meyering@lucent.com>
58043
58044         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
58045         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
58046         header files where only utmpx.ut_user is declared.
58047
58048         * lib/readutmp.h (UT_USER): Define.
58049
58050 2000-01-29  Jim Meyering  <meyering@lucent.com>
58051
58052         * m4/lib-check.m4: New file containing library-related checks from
58053         fileutils and sh-utils (textutils had none).
58054
58055 2000-01-28  Jim Meyering  <meyering@lucent.com>
58056
58057         * m4/perl.m4: Change format of warning message to look more like that
58058         from the missing script.  Suggestion from François Pinard.
58059
58060 2000-01-25  Jim Meyering  <meyering@lucent.com>
58061
58062         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
58063         well as time.h in the compile check.
58064         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
58065         Fix typo in cross-compiling case: s/yes/no/.
58066
58067 2000-01-23  Jim Meyering  <meyering@lucent.com>
58068
58069         * m4/jm-macros.m4: Move df-related tests here from
58070         fileutils/configure.in
58071
58072         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
58073         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
58074
58075         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
58076         s/space/ac_fsusage_space/.
58077         (jm_FILE_SYSTEM_USAGE): Take two parameters.
58078
58079         * m4/ftruncate.m4: New file (derived from part of
58080         fileutils/configure.in).
58081         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
58082         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
58083
58084         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
58085         AC_SUBST these here, rather than just in sh-util/configure.in, so
58086         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
58087         all the same.
58088         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
58089         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
58090         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
58091         (AC_SUBST(POW_LIBM)): Likewise.
58092         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
58093
58094 2000-01-23  Jim Meyering  <meyering@lucent.com>
58095
58096         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
58097         obstack.c.
58098
58099 2000-01-22  Jim Meyering  <meyering@lucent.com>
58100
58101         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
58102
58103         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
58104
58105         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
58106         configure.in
58107         (AC_CHECK_HEADERS): Likewise for sh-utils.
58108         (AC_CHECK_HEADERS): Likewise for textutils.
58109         Merge the three lists of headers.
58110
58111         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
58112         from fileutils' configure.in.
58113
58114         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
58115         code. Moved tests into their own function (_jm_DECL_HEADERS) in
58116         check-decl.m4.
58117
58118         * m4/check-decl.m4: Use #if rather than #ifdef.
58119         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
58120         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
58121         (_jm_DECL_HEADERS): Define new function.
58122         (jm_CHECK_DECLARATIONS): Require it.
58123
58124 2000-01-22  Jim Meyering  <meyering@lucent.com>
58125
58126         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
58127         [! HAVE_DECL_STRTOULL]: Declare strtoull.
58128         Required for some AIX systems.  Reported by Christian Krackowizer.
58129         [TESTING] (main): New function.
58130
58131         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
58132         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
58133         letters.
58134
58135         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
58136         iswprint.
58137
58138         * lib/strverscmp.c (ISDIGIT): Define.
58139         (strverscmp): Use ISDIGIT, not isdigit.
58140
58141 2000-01-19  Jim Meyering  <meyering@lucent.com>
58142
58143         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
58144         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
58145         defines `struct timespec' in <sys/time.h>
58146
58147         * m4/c-bs-a.m4: Remove uses of changequote altogether.
58148         Thanks to Akim for explaining.
58149
58150 2000-01-17  Paul Eggert  <eggert@twinsun.com>
58151
58152         * lib/nanosleep.c (nanosleep):
58153         Don't use SA_INTERRUPT to decide whether to call sigaction, as
58154         POSIX.1 doesn't require SA_INTERRUPT and some systems
58155         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
58156         it's been part of POSIX.1 since day 1 (in 1988).
58157
58158 2000-01-17  Jim Meyering  <meyering@lucent.com>
58159
58160         * lib/interlock: Remove unused file.  Reported by François Pinard.
58161
58162 2000-01-16  Paul Eggert  <eggert@twinsun.com>
58163
58164         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
58165         alert, backslash, formfeed, and vertical tab unnecessarily in
58166         shell quoting style.
58167
58168 2000-01-16  Jim Meyering  <meyering@lucent.com>
58169
58170         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
58171         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
58172         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
58173         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
58174
58175 2000-01-16  Jim Meyering  <meyering@lucent.com>
58176
58177         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
58178         because the latter didn't work.
58179
58180 2000-01-15  Jim Meyering  <meyering@lucent.com>
58181
58182         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
58183         (AC_REPLACE_FUNCS): Add memcpy and memset.
58184         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
58185         Add strpbrk.
58186         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
58187
58188 2000-01-12  Jim Meyering  <meyering@lucent.com>
58189
58190         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
58191         (jm_PREREQ): Use it.
58192         (jm_PREREQ_READUTMP): New macro.
58193         (jm_PREREQ): Use it.
58194
58195 2000-01-11  Paul Eggert  <eggert@twinsun.com>
58196
58197         Quote multibyte characters correctly.
58198         * m4/c-bs-a.m4: New file.
58199         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
58200         (jm_PREREQ): Use it.
58201
58202 2000-01-11  Paul Eggert  <eggert@twinsun.com>
58203
58204         * m4/uintmax_t.m4: Port to autoconf 2.13.
58205
58206 2000-01-08  Jim Meyering  <meyering@ascend.com>
58207
58208         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
58209         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
58210
58211 2000-01-04  Jim Meyering  <meyering@ascend.com>
58212
58213         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
58214         jm_STRUCT_DIRENT_D_TYPE.
58215         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
58216         jm_STRUCT_DIRENT_D_INO.
58217         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
58218         jm_STRUCT_UTIMBUF.
58219         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
58220         renamings.
58221         * m4/utime.m4: Likewise.
58222
58223         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
58224         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
58225
58226 2000-01-03  Paul Eggert  <eggert@twinsun.com>
58227
58228         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
58229         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
58230
58231 2000-01-02  Jim Meyering  <meyering@ascend.com>
58232
58233         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
58234         remember if this is necessary.
58235
58236 1999-12-26  Jim Meyering  <meyering@ascend.com>
58237
58238         * m4/jm-macros.m4: Use it here.
58239         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
58240
58241 1999-12-23  Jim Meyering  <meyering@ascend.com>
58242
58243         * m4/jm-macros.m4: Check for clock_gettime (moved from
58244         fileutils/configure.in)
58245         Check for gettimeofday.
58246
58247 1999-12-20  Jim Meyering  <meyering@ascend.com>
58248
58249         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
58250         autoconf-2.14a-1999-12-20.
58251
58252 1999-12-19  Jim Meyering  <meyering@ascend.com>
58253
58254         * m4/lstat-slash.m4: New file.
58255         * m4/jm-macros.m4: Use the new macro:
58256         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
58257
58258 1999-12-07  Jim Meyering  <meyering@ascend.com>
58259
58260         * m4/perl.m4: Require that File::Compare be available, too.
58261         Too many systems seem to lack it.
58262
58263         * m4/strftime.m4: Add checks for most of the cpp macros tested in
58264         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
58265
58266 1999-11-18  Paul Eggert  <eggert@twinsun.com>
58267
58268         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
58269         problem with the QNX 4.25 shell, which doesn't propagate exit
58270         status of failed commands inside shell assignments.
58271
58272 1999-11-17  Jim Meyering  <meyering@ascend.com>
58273
58274         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
58275
58276 1999-11-07  Jim Meyering  <meyering@ascend.com>
58277
58278         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
58279
58280 1999-11-06  Jim Meyering  <meyering@ascend.com>
58281
58282         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
58283         * m4/jm-macros.m4 (jm_MACROS): Use it here.
58284
58285 1999-11-05  Jim Meyering  <meyering@ascend.com>
58286
58287         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
58288         configure.in of textutils, fileutils, and sh-utils into this one
58289         (shared between those packages) file.
58290         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
58291         AC_STRUCT_ST_BLKSIZE.
58292
58293 1999-11-03  Jim Meyering  <meyering@ascend.com>
58294
58295         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
58296         of AC_CHECK_TYPE checks includes unistd.h.
58297         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
58298         Suggestion from Akim Demaille.
58299
58300 1999-10-30  Jim Meyering  <meyering@ascend.com>
58301
58302         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
58303         m4-quoted string.
58304         * m4/ls-mntd-fs.m4: Likewise.
58305         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
58306         * m4/jm-winsz1.m4: Likewise.
58307
58308         * m4/const.m4: Remove file, since the fix made it into the experimental
58309         version of autoconf.
58310         * m4/mktime.m4: Likewise.
58311
58312         * m4/check-type.m4: Remove file, now that the latest version of
58313         AC_CHECK_TYPE takes a third arg to specify additional #includes.
58314
58315         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
58316         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
58317         AC_CHECK_TYPE.
58318
58319 1999-10-04  Jim Meyering  <meyering@ascend.com>
58320
58321         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
58322
58323 1999-09-22  Paul Eggert  <eggert@twinsun.com>
58324
58325         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
58326         2.95.1 bug with HP-UX 10.20.
58327
58328 1999-09-17  Jim Meyering  <meyering@ascend.com>
58329
58330         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
58331         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
58332         due to missing strdup (against sh-utils-2.0).
58333
58334 1999-08-29  Jim Meyering  <meyering@ascend.com>
58335
58336         * m4/jm-macros.m4: Require jm_BISON.
58337         * m4/bison.m4: New file.
58338
58339 1999-08-17  Paul Eggert  <eggert@twinsun.com>
58340
58341         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
58342         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
58343
58344 1999-08-05  Jim Meyering  <meyering@ascend.com>
58345
58346         * m4/getline.m4: Rename test file from conftestdata to conftest.data
58347         to avoid conflicts with `conftest' on 8+3 filesystems.
58348         Suggestion from Eli Zaretskii.
58349
58350 1999-08-04  Jim Meyering  <meyering@ascend.com>
58351
58352         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
58353         fileutils and sh-utils (textutils's getline test was inadequate).
58354         (AM_FUNC_GETLINE): Run this test.
58355         (AC_CHECK_FUNCS): Check for getdelim.
58356         Reported by Bob Proulx.
58357
58358 1999-08-02  Jim Meyering  <meyering@ascend.com>
58359
58360         * m4/jm-macros.m4: Add a comment.
58361
58362 1999-08-01  Paul Eggert  <eggert@twinsun.com>
58363
58364         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
58365         <inttypes.h> defines strtoumax as a macro (and not as a
58366         function).
58367
58368 1999-08-01  Paul Eggert  <eggert@twinsun.com>
58369
58370         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
58371         that we can shift, multiply and divide unsigned long long
58372         values; Ultrix cc can't do it.
58373
58374 1999-08-01  Paul Eggert  <eggert@twinsun.com>
58375
58376         * m4/mktime.m4: New file, which is a preview of what should appear
58377         in the next public autoconf release.
58378
58379 1999-08-01  Paul Eggert  <eggert@twinsun.com>
58380
58381         * m4/lfs.m4: Remove this file.
58382         * m4/largefile.m4: New file.  It contains the old contents of
58383         lfs.m4, except that all names with prefix AC_LFS have been
58384         changed to use the prefix AC_SYS_LARGEFILE instead, to be
58385         compatible with future autoconf versions.  Also, some minor m4
58386         quoting problems have been fixed.
58387
58388 1999-08-01  Paul Eggert  <eggert@twinsun.com>
58389
58390         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
58391         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
58392         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
58393         and simplify the shell code.
58394
58395 1999-08-01  Jim Meyering  <meyering@ascend.com>
58396
58397         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
58398         m4.
58399
58400 1999-07-20  Jim Meyering  <meyering@ascend.com>
58401
58402         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
58403
58404 1999-07-15  Jim Meyering  <meyering@ascend.com>
58405
58406         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
58407
58408 1999-05-22  Jim Meyering  <meyering@ascend.com>
58409
58410         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
58411
58412 1999-05-20  Jim Meyering  <meyering@ascend.com>
58413
58414         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
58415         Add a colon after each `then' in case $4 is empty.
58416
58417 1999-05-16  Jim Meyering  <meyering@ascend.com>
58418
58419         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
58420
58421 1999-05-10  Jim Meyering  <meyering@ascend.com>
58422
58423         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
58424
58425         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
58426         AC_FUNC_MKTIME.
58427
58428 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
58429
58430         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
58431
58432 1999-05-04  Paul Eggert  <eggert@twinsun.com>
58433
58434         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
58435         not CPPFLAGS, so that linking works correctly in IRIX.
58436
58437 1999-04-30  Paul Eggert  <eggert@twinsun.com>
58438
58439         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
58440
58441 1999-04-20  Paul Eggert  <eggert@twinsun.com>
58442
58443         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
58444         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
58445         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
58446         jm_AC_TYPE_UNSIGNED_LONG_LONG.
58447         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
58448
58449         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
58450
58451 1999-04-20  Jim Meyering  <meyering@ascend.com>
58452
58453         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
58454         AC_REPLACE xstroull if necessary.  From Paul Eggert.
58455         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
58456
58457 1999-04-18  Jim Meyering  <meyering@ascend.com>
58458
58459         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
58460         * m4/jm-macros.m4: Use it.
58461
58462 1999-04-06  Jim Meyering  <meyering@ascend.com>
58463
58464         * m4/strftime.m4: Remove test for %f.
58465
58466 1999-03-29  Jim Meyering  <meyering@ascend.com>
58467
58468         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
58469         superset of the AC_TYPE_* checks in the textutils, fileutils,
58470         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
58471         AC_TYPE_PID_T.
58472
58473 1999-03-28  Jim Meyering  <meyering@ascend.com>
58474
58475         * m4/jm-macros.m4: Define GNU_PACKAGE here.
58476         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
58477         replaced e.g., in the *.sh files of the sh-utils.
58478
58479 1999-03-20  Jim Meyering  <meyering@ascend.com>
58480
58481         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
58482         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
58483         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
58484
58485 1999-03-19  Jim Meyering  <meyering@ascend.com>
58486
58487         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
58488
58489 1999-03-12  Jim Meyering  <meyering@ascend.com>
58490
58491         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
58492
58493 1999-03-07  Jim Meyering  <meyering@ascend.com>
58494
58495         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
58496         declared.
58497
58498 1999-02-17  Jim Meyering  <meyering@ascend.com>
58499
58500         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
58501         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
58502
58503 1999-02-07  Jim Meyering  <meyering@ascend.com>
58504
58505         * m4/group-member.m4: New file -- extracted from sh-utils'
58506         configure.in.
58507
58508         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
58509         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
58510
58511 1999-02-06  Jim Meyering  <meyering@ascend.com>
58512
58513         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
58514         * m4/fnmatch.m4: Likewise.
58515         * m4/getgroups.m4: Likewise.
58516         * m4/lstat.m4: Likewise.
58517         * m4/malloc.m4: Likewise.
58518         * m4/putenv.m4: Likewise.
58519         * m4/realloc.m4: Likewise.
58520         * m4/regex.m4: Likewise.
58521         * m4/stat.m4: Likewise.
58522         * m4/strftime.m4: Likewise.
58523         Suggestion from Alain Magloire.
58524
58525         * m4/chown.m4: Use `.$ac_objext', not `.o'.
58526         * m4/fnmatch.m4: Likewise.
58527         * m4/getgroups.m4: Likewise.
58528         * m4/getline.m4: Likewise.
58529         * m4/lstat.m4: Likewise.
58530         * m4/malloc.m4: Likewise.
58531         * m4/memcmp.m4: Likewise.
58532         * m4/putenv.m4: Likewise.
58533         * m4/realloc.m4: Likewise.
58534         * m4/regex.m4: Likewise.
58535         * m4/stat.m4: Likewise.
58536         * m4/strftime.m4: Likewise.
58537         Suggestion from Alain Magloire.
58538
58539         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
58540         an argument.
58541
58542         * m4/regex.m4: Add a run-time Test for proper operation of
58543         re_compile_pattern.
58544
58545 1999-01-31  Jim Meyering  <meyering@ascend.com>
58546
58547         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
58548
58549 1999-01-30  Jim Meyering  <meyering@ascend.com>
58550
58551         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
58552
58553         * m4/jm-mktime.m4: Make this a wrapper around the official
58554         AM_FUNC_MKTIME rather than my private copy, now that the official one
58555         is up to date.
58556         * m4/mktime.m4: Remove file.
58557
58558         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
58559         * m4/uptime.m4: Likewise.
58560         * m4/uintmax_t.m4: Likewise.
58561
58562 1999-01-28  Jim Meyering  <meyering@ascend.com>
58563
58564         * m4/jm-macros.m4: Use jm_AFS.
58565         * m4/afs.m4: New file (from fileutils' configure.in).
58566
58567         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
58568         * m4/chown.m4: Likewise.
58569         * m4/d-ino.m4: Likewise.
58570         * m4/d-type.m4: Likewise.
58571         * m4/fnmatch.m4: Likewise.
58572         * m4/getgroups.m4: Likewise.
58573         * m4/gettext.m4: Likewise.
58574         * m4/jm-mktime.m4: Likewise.
58575         * m4/jm-winsz2.m4: Likewise.
58576         * m4/lcmessage.m4: Likewise.
58577         * m4/ls-mntd-fs.m4: Likewise.
58578         * m4/malloc.m4: Likewise.
58579         * m4/memcmp.m4: Likewise.
58580         * m4/putenv.m4: Likewise.
58581         * m4/realloc.m4: Likewise.
58582         * m4/st_mtim.m4: Likewise.
58583         * m4/strftime.m4: Likewise.
58584
58585 1999-01-16  Jim Meyering  <meyering@ascend.com>
58586
58587         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
58588         (ARGMATCH_DIE_DECL): Define.
58589
58590 1999-01-12  Jim Meyering  <meyering@ascend.com>
58591
58592         * m4/Makefile.am.in: Rewrite to avoid using fmt.
58593         Reported by Lars Hecking.
58594
58595 1999-01-10  Jim Meyering  <meyering@ascend.com>
58596
58597         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
58598         gross kludge.
58599         * m4/inttypes_h.m4: Likewise.
58600         * m4/lstat.m4: Likewise.
58601         * m4/malloc.m4: Likewise.
58602         * m4/readdir.m4: Likewise.
58603         * m4/realloc.m4: Likewise.
58604         * m4/st_dm_mode.m4: Likewise.
58605         * m4/stat.m4: Likewise.
58606         * m4/utimbuf.m4: Likewise.
58607         * m4/utimes.m4: Likewise.
58608
58609         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
58610         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
58611         comments in config.h.in are meaningful.
58612
58613         * m4/jm-macros.m4: Require autoconf-2.13 here.
58614
58615         * m4/regex.m4: By default, don't use the included regex.c on systems
58616         with glibc 2.  Suggestion from Uli Drepper.
58617
58618 1999-01-02  Jim Meyering  <meyering@ascend.com>
58619
58620         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
58621
58622 1998-12-18  Jim Meyering  <meyering@ascend.com>
58623
58624         * m4/Makefile.am.in (Makefile.am): Simplify rule.
58625         Based on a suggestion from Lars Hecking.
58626
58627 1998-11-16  Paul Eggert  <eggert@twinsun.com>
58628
58629         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
58630
58631 1998-11-16  Jim Meyering  <meyering@ascend.com>
58632
58633         * m4/lfs.m4: Double-quote the `uname...` expression.
58634
58635 1998-11-14  Jim Meyering  <meyering@ascend.com>
58636
58637         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
58638         * m4/stat.m4: Likewise.
58639
58640 1998-11-03  Jim Meyering  <meyering@ascend.com>
58641
58642         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
58643         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
58644
58645 1998-10-18  Jim Meyering  <meyering@ascend.com>
58646
58647         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
58648
58649 1998-10-17  Jim Meyering  <meyering@ascend.com>
58650
58651         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
58652         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
58653         calls for those previously hard-coded headers.  Instead, take a new
58654         parameter.
58655         (jm_CHECK_DECLARATIONS): Reflect interface change.
58656         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
58657         (jm_CHECK_DECL_LOCALTIME_R): New macro.
58658
58659         * m4/mktime.m4: Test for spring-forward gap before long-running test.
58660
58661 1998-10-14  Jim Meyering  <meyering@ascend.com>
58662
58663         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
58664         instead of "TZ=America/Vancouver".  From Paul Eggert.
58665
58666 1998-10-11  Jim Meyering  <meyering@ascend.com>
58667
58668         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
58669         This adds a test for a recently added compatibility fix for mktime.c.
58670         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
58671
58672 1998-09-27  Jim Meyering  <meyering@ascend.com>
58673
58674         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
58675
58676         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
58677         ../configure.in, including a change from Gordon Matzigkeit to allow
58678         cross-compiling for the Hurd.
58679
58680         * m4/glibc.m4: New file/macro to test for the GNU C Library
58681         versions 1 and 2.  From Gordon Matzigkeit.
58682         Indent.
58683
58684 1998-09-21  Jim Meyering  <meyering@ascend.com>
58685
58686         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
58687
58688 1998-08-18  Paul Eggert  <eggert@twinsun.com>
58689
58690         Port nanosecond-resolution times to UnixWare 2.1.2 and
58691         pedantic Solaris 2.6.
58692
58693         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
58694         AC_STRUCT_ST_MTIM.
58695         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
58696         Generate name of ns member, instead of just 1 or undef.
58697         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
58698
58699 1998-08-15  Jim Meyering  <meyering@ascend.com>
58700
58701         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
58702         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
58703         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
58704         instead of jm_TYPE_SSIZE_T.
58705
58706 1998-08-12  Jim Meyering  <meyering@ascend.com>
58707
58708         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
58709
58710 1998-08-02  Jim Meyering  <meyering@ascend.com>
58711
58712         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
58713         in acconfig.h manually.
58714
58715 1998-07-31  Paul Eggert  <eggert@twinsun.com>
58716
58717         * m4/st_mtim.m4: New file.
58718
58719 1998-07-28  Jim Meyering  <meyering@ascend.com>
58720
58721         * m4/utimes.m4: Undef stat.
58722
58723 1998-07-25  Jim Meyering  <meyering@ascend.com>
58724
58725         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
58726         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
58727
58728 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
58729
58730         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
58731         uid and gid actually remain unchanged.
58732
58733 1998-07-07  Jim Meyering  <meyering@ascend.com>
58734
58735         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
58736
58737 1998-07-04  Jim Meyering  <meyering@ascend.com>
58738
58739         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
58740         to prove that this macro can be used in packages without regex.c.
58741
58742 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
58743
58744         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
58745         is to be used.
58746
58747 1998-07-03  Jim Meyering  <meyering@ascend.com>
58748
58749         * m4/gettext.m4: Add -lintl if it's found to be necessary.
58750
58751         * m4/gettext.m4: New file -- from gettext-0.10.35.
58752         * m4/lcmessage.m4: Likewise.
58753         * m4/progtest.m4: Likewise.
58754
58755         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
58756         * m4/jm-macros.m4: Require the new macro.
58757
58758 1998-06-29  Jim Meyering  <meyering@ascend.com>
58759
58760         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
58761         for the definition of NGROUPS (used in a system header included
58762         by sys/mount.h).
58763
58764 1998-06-28  Jim Meyering  <meyering@ascend.com>
58765
58766         * m4/ls-mntd-fs.m4: New file.
58767         * m4/fstypename.m4: New file.
58768
58769         * m4/jm-macros.m4: Require the new macro.
58770         * m4/jm-glibc-io.m4: New file.
58771
58772 1998-05-19  Jim Meyering  <meyering@ascend.com>
58773
58774         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
58775         * m4/lchown.m4: New file.
58776
58777         * m4/Makefile.am.in: New file.
58778         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
58779
58780 1998-05-14  Jim Meyering  <meyering@ascend.com>
58781
58782         * m4/Makefile.am (EXTRA_DIST): Add them.
58783         * m4/jm-macros.m4: New file.
58784         * m4/utimbuf.m4: New file.
58785
58786 1998-05-12  Jim Meyering  <meyering@ascend.com>
58787
58788         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
58789
58790 1998-05-11  Jim Meyering  <meyering@ascend.com>
58791
58792         * m4/isc-posix.m4: New file.
58793
58794 1998-05-10  Jim Meyering  <meyering@ascend.com>
58795
58796         * m4/jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
58797
58798 1998-05-09  Jim Meyering  <meyering@ascend.com>
58799
58800         * m4/Makefile.am (EXTRA_DIST): Add ssize_t.m4.
58801         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
58802         with automake.
58803
58804         * m4/ssize_t.m4: New file.
58805         * m4/mktime.m4: Remove file -- the new automake has this now.
58806
58807 1998-04-26  Jim Meyering  <meyering@ascend.com>
58808
58809         * m4/assert.m4: New file.
58810         * m4/Makefile.am (EXTRA_DIST): Add assert.m4.
58811
58812 1998-04-05  Jim Meyering  <meyering@ascend.com>
58813
58814         * m4/prereq.m4 (jm_PREREQ_REGEX): New macro.
58815         (jm_PREREQ): Use it here.
58816
58817 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
58818
58819         * m4/inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
58820         in acconfig.h.
58821
58822 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
58823
58824         * m4/prereq.m4: New file.
58825         * m4/error.m4: New file.
58826         * m4/Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
58827
58828 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
58829
58830         * m4/getline.m4: Don't set am_cv_func_working_getline before the
58831         cache-check for the same variable -- that defeated the purpose of
58832         the test; the test program was never run.  This was a problem only
58833         on systems with losing getline functions -- HP-UX 10.20 is one.
58834         Reported by Bjorn Helgaas.
58835
58836 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
58837
58838         * m4/Makefile.am (EXTRA_DIST): Add perl.m4.
58839
58840 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
58841
58842         * m4/Makefile.am (EXTRA_DIST): Add const.m4.
58843
58844         * m4/const.m4: New file.  Use an initializer in this declaration
58845         typedef int charset[2]; const charset x;
58846         Reported by Bob Glickstein.
58847
58848 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
58849
58850         * m4/chown.m4: Fix reversed types on -1 args to chown.
58851         From Kaveh Ghazi.
58852
58853 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
58854
58855         * m4/check-decl.m4: s/DECLARATION_/DECL_/g.
58856         Add lseek and memchr.
58857
58858         * m4/decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
58859         T.E.Dickey <dickey@clark.net> said that some older preprocessors
58860         have a 20-character limit on names.
58861
58862 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
58863
58864         * m4/inttypes_h.m4: New file.
58865         * m4/uintmax_t.m4: New file.
58866         * m4/Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.
58867
58868
58869         -----
58870
58871         Local Variables:
58872         coding: utf-8
58873         End:
58874
58875         Copyright (C) 1997-2009 Free Software Foundation, Inc.
58876
58877         Copying and distribution of this file, with or without
58878         modification, are permitted provided the copyright notice
58879         and this notice are preserved.