Paul Eggert [Sun, 2 Jul 2006 06:49:07 +0000 (06:49 +0000)]
Simplification rewrite for stdint module.
* modules/inttypes (Depends-on): No longer depends on stdint.
* modules/stdint (Description): Say more about assumptions.
Say that the fast types might differ. Say macros are used.
(Files): Remove m4/size_max.m4, m4/wchar_t.m4. Add m4/longlong.m4.
(Makefile.am): Revise list of substituted symbols to match
new stdint.m4.
* modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
(configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
* tests/test-stdint.c (verify_same_types)
[! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
the code conforms to C99/C89.
Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
* lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
possible collision with system files.
(<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
__STDC_CONSTANT_MACROS)]: Do not include, since we don't need
WCHAR_MIN and WCHAR_MAX in this case.
(<stddef.h>): Do not include; no longer needed.
(<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
(defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
(<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
!@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
&& (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
(__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
__c99]: Define, to work around IRIX <stdint.h> incompatibility.
(@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
!defined(__c99))]: Include in this case too, since it's harmless
now.
(<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
dangerous to do so.
(@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
@HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
(_STDINT_MIN, _STDINT_MAX): New macros.
(int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
(uint64_t, int_least8_t, uint_least8_t, int_least16_t):
(uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
(uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
(uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
(uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
macros, not typedefs; this simplifies things quite a bit.
Use long int for all types narrower than int64_t.
(intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
Define in terms of long long int or int64_t or long int,
not int64_t or int32_t. This saves some compile-time testing.
(INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
(INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
(UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
(INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
(INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
(INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
(INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
(UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
(INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
(INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
(PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
(SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
undef any previous version and define our own version, for
simplicity and consistency with the new macros for types.
(PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
(SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
Simplify definitions by using _STDINT_MIN and _STDINT_MAX
where appropriate. Rely on new symbols @PTRDIFF_T_SUFFIX@,
@SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
@WINT_T_SUFFIX@ to keep things simple here.
(UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
Simplify by assuming typical 8/16/32/64 host, since we're
already doing that elsewhere anyway.
Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
and assume long long int is 64 bits if available. This
speeds up 'configure'.
* m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
but fix a bug, by requiring at least 64 bits.
* m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
* m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
AC_TYPE_LONG_LONG_INT. This macro is obsolete and will go soon.
* m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
* m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
changes. Make 2.59 a prerequisite. Check and substitute for
HAVE_LONG_LONG_INT. Rely on Autoconf to check for stdint.h and
inttypes.h. Do not use special include files; just use the
defaults. Check for sys/inttypes.h and sys/bitypes.h in the usual
way now. Remove no-longer-needed tests for HAVE_LONG_64BIT,
HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
WINT_MAX. Check for C99 conformance more strictly, by detecting
bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9. On the other hand do
not check for things that C99 does not require, e.g., int8_t. If
a test isn't needed unless <stdint.h> isn't working, and is
unlikely to be needed for any other reason, then don't do it
unless <stdint.h> isn't working. Do not check for ptrdiff_t or
size_t, since we assume C89 freestanding at least. Do not check
for sig_atomic_t, wchar_t, or wint_t, since the code now does
the right thing even if the types are not defined. Instead use:
(gl_STDINT_TYPE_PROPERTIES): New macro.
(gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove. Don't bother
testing whether <sys/types.h> clashes, as Autoconf does this for
us now. All uses removed.
(gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
(gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
(gl_CHECK_TYPE_SAME):
Remove; no longer needed.
(gl_STDINT_BITSIZEOF): Don't bother to check whether the type
exists, since we'll return 0 anyway in that case.
(gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
Eric Blake [Sat, 1 Jul 2006 21:38:47 +0000 (21:38 +0000)]
* stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
Eric Blake [Sat, 1 Jul 2006 20:46:11 +0000 (20:46 +0000)]
* stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
Reported by Andreas Buening.
Karl Berry [Sat, 1 Jul 2006 07:59:06 +0000 (07:59 +0000)]
.
Simon Josefsson [Sat, 1 Jul 2006 06:47:16 +0000 (06:47 +0000)]
Fix typo, from Jim Hyslop <jhyslop@dreampossible.ca>.
Eric Blake [Fri, 30 Jun 2006 04:20:00 +0000 (04:20 +0000)]
* stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
unused static function.
Eric Blake [Fri, 30 Jun 2006 04:19:13 +0000 (04:19 +0000)]
* sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
Eric Blake [Thu, 29 Jun 2006 22:21:39 +0000 (22:21 +0000)]
* MODULES.html.sh: Add sys_stat.
* modules/sys_stat: New module.
* modules/mkstemp (Depends-on): Add sys_stat.
Eric Blake [Thu, 29 Jun 2006 22:18:26 +0000 (22:18 +0000)]
* sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
Eric Blake [Thu, 29 Jun 2006 22:17:41 +0000 (22:17 +0000)]
* stat_.h: New file.
Eric Blake [Thu, 29 Jun 2006 22:15:49 +0000 (22:15 +0000)]
* functions.texi (Function Portability): Document missing lstat
on mingw.
Jim Meyering [Thu, 29 Jun 2006 21:16:36 +0000 (21:16 +0000)]
*** empty log message ***
Jim Meyering [Thu, 29 Jun 2006 21:15:00 +0000 (21:15 +0000)]
(Maintainer): Add my name, since with the
FPRINTFTIME changes strftime.c has forked from glibc.
Jim Meyering [Thu, 29 Jun 2006 21:11:49 +0000 (21:11 +0000)]
From Derek R. Price:
* lib/strftime.c: Assume strftime() exists.
* m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
Bruno Haible [Thu, 29 Jun 2006 15:16:56 +0000 (15:16 +0000)]
Various small tweaks.
Bruno Haible [Thu, 29 Jun 2006 12:24:29 +0000 (12:24 +0000)]
Fix a few Changelog entries.
Bruno Haible [Thu, 29 Jun 2006 11:50:52 +0000 (11:50 +0000)]
Change wcwidth license to LGPL.
Derek R. Price [Thu, 29 Jun 2006 10:59:42 +0000 (10:59 +0000)]
* MODULES.html.sh: Remove c-bs-a.
Derek R. Price [Thu, 29 Jun 2006 10:56:35 +0000 (10:56 +0000)]
* modules/c-bs-a: Removed - \a is C89.
* m4/c-bs-a.m4: Removed.
Karl Berry [Thu, 29 Jun 2006 07:57:47 +0000 (07:57 +0000)]
.
Paul Eggert [Wed, 28 Jun 2006 22:25:49 +0000 (22:25 +0000)]
* lib/savedir.c (CLOSEDIR): Remove. All uses changed to closedir.
* m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
Paul Eggert [Wed, 28 Jun 2006 22:03:42 +0000 (22:03 +0000)]
Fix attribution for last patch.
Paul Eggert [Wed, 28 Jun 2006 22:00:55 +0000 (22:00 +0000)]
* fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
it's obsolete.
* strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
Bruno Haible [Wed, 28 Jun 2006 18:06:12 +0000 (18:06 +0000)]
Fix brought over from gettext.
Bruno Haible [Wed, 28 Jun 2006 17:03:53 +0000 (17:03 +0000)]
Fixes after wcwidth module creation.
Simon Josefsson [Wed, 28 Jun 2006 16:28:02 +0000 (16:28 +0000)]
Fix.
Bruno Haible [Wed, 28 Jun 2006 16:22:49 +0000 (16:22 +0000)]
Fix the comment fix.
Eric Blake [Wed, 28 Jun 2006 14:00:22 +0000 (14:00 +0000)]
* xvasprintf.h: Fix comments.
Eric Blake [Wed, 28 Jun 2006 13:11:32 +0000 (13:11 +0000)]
* modules/wcwidth: New file.
* modules/mbchar (Depends-on): Add wcwidth.
* modules/mbswidth (Depends-on): Add wcwidth.
* MODULES.html.sh: Add wcwidth.
Eric Blake [Wed, 28 Jun 2006 13:11:03 +0000 (13:11 +0000)]
* mbchar.h (wcwidth): Include wcwidth.h.
* mbswidth.c (wcwidth): Move from here...
* wcwidth.h: ...to this new file.
Eric Blake [Wed, 28 Jun 2006 13:10:12 +0000 (13:10 +0000)]
* mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
* wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
Simon Josefsson [Wed, 28 Jun 2006 11:08:34 +0000 (11:08 +0000)]
Native win32 support for getaddrinfo. Add getnameinfo function.
Simon Josefsson [Tue, 27 Jun 2006 21:21:13 +0000 (21:21 +0000)]
Add sys_select module.
Bruno Haible [Tue, 27 Jun 2006 15:47:13 +0000 (15:47 +0000)]
Avoid generating C code that some compilers don't accept.
Bruno Haible [Tue, 27 Jun 2006 13:15:26 +0000 (13:15 +0000)]
Resolve clash between stdint.m4 and uintmax_t.m4.
Paul Eggert [Mon, 26 Jun 2006 21:30:03 +0000 (21:30 +0000)]
* base64.c (B64): Use _ as the formal parameter, not x, to avoid
bug in IBM C V6 for AIX.
Bruno Haible [Mon, 26 Jun 2006 19:49:51 +0000 (19:49 +0000)]
Make comment more precise.
Bruno Haible [Mon, 26 Jun 2006 18:03:25 +0000 (18:03 +0000)]
Correct comments.
Bruno Haible [Mon, 26 Jun 2006 17:49:53 +0000 (17:49 +0000)]
Fix typo.
Bruno Haible [Mon, 26 Jun 2006 17:27:53 +0000 (17:27 +0000)]
Try harder to get WCHAR_MIN and WCHAR_MAX.
Bruno Haible [Mon, 26 Jun 2006 17:03:57 +0000 (17:03 +0000)]
Tweak for SGI cc.
Bruno Haible [Mon, 26 Jun 2006 13:06:51 +0000 (13:06 +0000)]
Portability to BSD/OS 4.2.
Simon Josefsson [Mon, 26 Jun 2006 08:54:42 +0000 (08:54 +0000)]
2006-06-26 Simon Josefsson <jas@extundo.com>
* inet_ntop.m4: Don't check for sys/types.h, we assume it is
present.
Bruno Haible [Fri, 23 Jun 2006 20:52:39 +0000 (20:52 +0000)]
stdint module: treat IRIX like OpenBSD.
Bruno Haible [Fri, 23 Jun 2006 19:27:17 +0000 (19:27 +0000)]
Invent MOSTLYCLEANDIRS.
Bruno Haible [Fri, 23 Jun 2006 14:58:59 +0000 (14:58 +0000)]
Take into account ISO C 99 TC1.
Paul Eggert [Thu, 22 Jun 2006 23:40:20 +0000 (23:40 +0000)]
* glob.c (collated_compare): Remove 'const' uses that weren't needed.
Simon Josefsson [Thu, 22 Jun 2006 13:08:43 +0000 (13:08 +0000)]
2006-06-22 Simon Josefsson <jas@extundo.com>
* sockpfaf.m4: Include winsock2.h too, to make it work under
MinGW.
Karl Berry [Thu, 22 Jun 2006 07:39:52 +0000 (07:39 +0000)]
.
Simon Josefsson [Wed, 21 Jun 2006 21:21:42 +0000 (21:21 +0000)]
Typos.
Simon Josefsson [Wed, 21 Jun 2006 17:53:49 +0000 (17:53 +0000)]
Typo.
Simon Josefsson [Wed, 21 Jun 2006 17:38:51 +0000 (17:38 +0000)]
*** empty log message ***
Simon Josefsson [Wed, 21 Jun 2006 17:37:00 +0000 (17:37 +0000)]
Add.
Simon Josefsson [Wed, 21 Jun 2006 17:36:26 +0000 (17:36 +0000)]
2006-06-21 Simon Josefsson <jas@extundo.com>
* socket_.h: Don't define WINVER.
Simon Josefsson [Wed, 21 Jun 2006 17:22:32 +0000 (17:22 +0000)]
Fix getaddrinfo on Windows 2000.
Simon Josefsson [Wed, 21 Jun 2006 10:00:31 +0000 (10:00 +0000)]
Add.
Simon Josefsson [Wed, 21 Jun 2006 10:00:08 +0000 (10:00 +0000)]
Add inet_pton.
Simon Josefsson [Wed, 21 Jun 2006 09:59:49 +0000 (09:59 +0000)]
Add inet_pton module.
Simon Josefsson [Wed, 21 Jun 2006 08:02:40 +0000 (08:02 +0000)]
2006-06-19 Paul Eggert <eggert@cs.ucla.edu>
* read-file.c (fread_file): Start with buffer allocation of
0 bytes rather than 1 byte; this simplifies the code.
Don't invoke feof; it's not needed. Refactor to avoid duplicate
code to free buffer and save/restore errno.
(internal_read_file): Remove unused local.
Paul Eggert [Tue, 20 Jun 2006 19:21:44 +0000 (19:21 +0000)]
Update copyright date.
Paul Eggert [Tue, 20 Jun 2006 19:19:25 +0000 (19:19 +0000)]
Fix misspelling.
Paul Eggert [Tue, 20 Jun 2006 19:15:50 +0000 (19:15 +0000)]
* openat.c (openat): Use ?:, not if, to work around GCC bug 4210
<http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
Problem reported by Denis Excoffier in
<http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
Karl Berry [Tue, 20 Jun 2006 07:39:57 +0000 (07:39 +0000)]
.
Karl Berry [Mon, 19 Jun 2006 22:55:42 +0000 (22:55 +0000)]
update from texinfo
Karl Berry [Mon, 19 Jun 2006 20:40:26 +0000 (20:40 +0000)]
mention that Gnulib takes over LIBOBJS
Simon Josefsson [Mon, 19 Jun 2006 12:28:18 +0000 (12:28 +0000)]
Revert slightly, from Bruno.
Bruno Haible [Mon, 19 Jun 2006 11:27:00 +0000 (11:27 +0000)]
Fix the value of FULL_...
Simon Josefsson [Mon, 19 Jun 2006 11:18:39 +0000 (11:18 +0000)]
2006-06-19 Yoann Vandoorselaere <yoann.v@prelude-ids.com>
* modules/sys_socket, modules/socklen: Include sys/types since
FreeBSD 4.x's sys/socket.h needs it.
Simon Josefsson [Mon, 19 Jun 2006 10:47:30 +0000 (10:47 +0000)]
2006-06-19 Simon Josefsson <jas@extundo.com>
* inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
Paul Eggert [Mon, 19 Jun 2006 09:39:50 +0000 (09:39 +0000)]
* alloca_.h (alloca) [defined alloca]: Don't define or declare.
Bruno Haible [Sat, 17 Jun 2006 20:02:16 +0000 (20:02 +0000)]
Tweak for FreeBSD.
Bruno Haible [Sat, 17 Jun 2006 19:33:36 +0000 (19:33 +0000)]
Tweak for Solaris 2.5.1.
Eric Blake [Sat, 17 Jun 2006 19:29:36 +0000 (19:29 +0000)]
* strtod.c [!defined errno]: Assume errno.h declares errno.
Eric Blake [Sat, 17 Jun 2006 19:26:19 +0000 (19:26 +0000)]
* rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
errno.
Bruno Haible [Sat, 17 Jun 2006 16:10:06 +0000 (16:10 +0000)]
Assume errno.h declares errno.
Bruno Haible [Sat, 17 Jun 2006 16:09:19 +0000 (16:09 +0000)]
From Eric Blake: Assume errno.h declares errno.
Karl Berry [Sat, 17 Jun 2006 07:37:20 +0000 (07:37 +0000)]
.
Simon Josefsson [Fri, 16 Jun 2006 19:40:12 +0000 (19:40 +0000)]
Add read-file module.
Bruno Haible [Fri, 16 Jun 2006 17:34:33 +0000 (17:34 +0000)]
Comments from 2006-04-27.
Karl Berry [Fri, 16 Jun 2006 13:42:08 +0000 (13:42 +0000)]
autoupdate
Bruno Haible [Fri, 16 Jun 2006 13:29:51 +0000 (13:29 +0000)]
Rewrite module 'stdint' to be fully autoconfiguring.
Bruno Haible [Fri, 16 Jun 2006 13:29:04 +0000 (13:29 +0000)]
New module 'stdint-tests'.
Bruno Haible [Fri, 16 Jun 2006 13:15:45 +0000 (13:15 +0000)]
Make it work when cross-compiling.
Bruno Haible [Fri, 16 Jun 2006 11:49:02 +0000 (11:49 +0000)]
Will be in gettext-0.15.
Eric Blake [Thu, 15 Jun 2006 12:01:17 +0000 (12:01 +0000)]
* m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
Eric Blake [Thu, 15 Jun 2006 12:00:11 +0000 (12:00 +0000)]
* srclist.txt (ssize_t.m4): Lose sync.
Karl Berry [Wed, 14 Jun 2006 13:20:43 +0000 (13:20 +0000)]
autoupdate
Paul Eggert [Sun, 11 Jun 2006 07:12:27 +0000 (07:12 +0000)]
* getdate.y (__attribute__): Don't define if already defined.
Problem reported by Larry Jones.
* utimens.c (__attribute__): Likewise.
Karl Berry [Tue, 6 Jun 2006 13:47:53 +0000 (13:47 +0000)]
autoupdate
Karl Berry [Mon, 5 Jun 2006 13:01:10 +0000 (13:01 +0000)]
autoupdate
Paul Eggert [Mon, 5 Jun 2006 05:21:20 +0000 (05:21 +0000)]
* regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
reported by Andreas Schwab.
Karl Berry [Fri, 2 Jun 2006 13:48:45 +0000 (13:48 +0000)]
update from texinfo
Karl Berry [Tue, 30 May 2006 23:56:35 +0000 (23:56 +0000)]
doc
Bruno Haible [Tue, 30 May 2006 20:28:36 +0000 (20:28 +0000)]
Tweak comment.
Bruno Haible [Tue, 30 May 2006 19:14:05 +0000 (19:14 +0000)]
Work around broken AIX 5.1 strndup function.
Karl Berry [Mon, 29 May 2006 00:13:14 +0000 (00:13 +0000)]
update from texinfo
Karl Berry [Sun, 28 May 2006 13:07:45 +0000 (13:07 +0000)]
*** empty log message ***
Karl Berry [Sun, 28 May 2006 13:07:39 +0000 (13:07 +0000)]
(printf-args.c): lose sync.
Paul Eggert [Sun, 28 May 2006 09:17:17 +0000 (09:17 +0000)]
* c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
compile test, for Tru64 4.0D.
Simon Josefsson [Fri, 26 May 2006 10:13:59 +0000 (10:13 +0000)]
2006-05-26 Martin Lambers <marlam@marlam.de>
* getpass.c: Updates the test for the native W32 API, and adds
missing includes, thus fixing compilation warnings.