gc support for SHA-256/384/512

2007-02-05 Thread Simon Josefsson
Installed. Index: ChangeLog === RCS file: /sources/gnulib/gnulib/ChangeLog,v retrieving revision 1.1135 diff -u -p -r1.1135 ChangeLog --- ChangeLog 5 Feb 2007 05:44:11 - 1.1135 +++ ChangeLog 5 Feb 2007 11:16:59 - @@

[Fwd: [PATCH] Fix regex REG_NEWLINE/RE_HAT_LISTS_NOT_NEWLINE (BZ #3957)]

2007-02-05 Thread Paolo Bonzini
I'm applying this patch to the gnulib CVS. Paolo --- Begin Message --- Hi! RE_HAT_LISTS_NOT_NEWLINE should add \n to [^...] lists, not \0. For build_charclass_op (i.e. \s, \S, \w, \W) only \W might make a difference, but I checked the pre-2002 regex code and \W matched there '\n' no matter wheth

ACL module fails on MacOS X

2007-02-05 Thread Paolo Bonzini
The sys/acl.h file on MacOS X needs sys/types.h included before it. This patch would fix it, ok to apply? Paolo 2007-02-05 Paolo Bonzini <[EMAIL PROTECTED]> * lib/acl.h: Include sys/types.h before sys/acl.h. Index: acl.h ==

Re: gl_STDARG_H on AIX 5.3 with IBM v8 C compiler

2007-02-05 Thread Matthew Woehlke
Paul Eggert wrote: Albert Chin <[EMAIL PROTECTED]> writes: It looks like the only way to get the builtin va_copy() to work on AIX 5.3 is to add -qlanglvl=extc99 to CFLAGS? For what it's worth, we should be encouraging that anyway. AC_PROG_CC_STDC should add -qlanglvl=extc99 to CC, and if this

Re: ACL module fails on MacOS X

2007-02-05 Thread Paul Eggert
Paolo Bonzini <[EMAIL PROTECTED]> writes: > * lib/acl.h: Include sys/types.h before sys/acl.h. Thanks, and please apply.

Re: gl_STDARG_H on AIX 5.3 with IBM v8 C compiler

2007-02-05 Thread Albert Chin
On Mon, Feb 05, 2007 at 10:49:52AM -0600, Matthew Woehlke wrote: > Paul Eggert wrote: > >Albert Chin <[EMAIL PROTECTED]> writes: > >>It looks like the only way > >>to get the builtin va_copy() to work on AIX 5.3 is to add > >>-qlanglvl=extc99 to CFLAGS? > > > >For what it's worth, we should be enco

Re: gl_STDARG_H on AIX 5.3 with IBM v8 C compiler

2007-02-05 Thread Matthew Woehlke
Albert Chin wrote: On Mon, Feb 05, 2007 at 10:49:52AM -0600, Matthew Woehlke wrote: Paul Eggert wrote: For what it's worth, we should be encouraging that anyway. AC_PROG_CC_STDC should add -qlanglvl=extc99 to CC, and if this isn't working then we should fix AC_PROG_CC_STDC. I don't think it is

strsep bug

2007-02-05 Thread Bruno Haible
Hi Yoann, The strsep replacement has a bug: when passed an empty set of delimiters, according to the Linux and BSD manual page the token should be set to the entire string, and *stringp should be set to NULL (so indicating there are no more tokens). The implementation in gnulib sets *stringp to th

new module 'mbssep'

2007-02-05 Thread Bruno Haible
The function mbssep() is like strsep(), except that it also works with multibyte strings. Although strsep() is not in POSIX, we have a replacement for it in gnulib, therefore IMO we also need to offer an internationalized variant of it. 2007-02-05 Bruno Haible <[EMAIL PROTECTED]> New mo

Re: [Fwd: [PATCH] Fix regex REG_NEWLINE/RE_HAT_LISTS_NOT_NEWLINE (BZ #3957)]

2007-02-05 Thread Paul Eggert
Paolo Bonzini <[EMAIL PROTECTED]> writes: > I'm applying this patch to the gnulib CVS. Thanks. I also installed this, so that 'configure' detects the glibc bug. 2007-02-05 Paul Eggert <[EMAIL PROTECTED]> * m4/regex.m4 (gl_REGEX): Check for glibc bug #3957. Prefer returning fr