utimens merge from coreutils to support "touch -"

2005-09-24 Thread Paul Eggert
I installed this to merge from coreutils the support for "touch -": 2005-09-24 Paul Eggert <[EMAIL PROTECTED]> * utimens.c (ENOSYS): Define if not already defined. (futimens): Support having a null PATH if the file descriptor is nonnegative. Index: utimens.c ===

Re: regex workaround for gcc 2.95.3 core dump

2005-09-24 Thread Paul Eggert
Derek Price <[EMAIL PROTECTED]> writes: > . Thanks for mentioning that. Can you believe that I had forgotten all about our earlier fix? Anyway, I installed that patch in both coreutils and gnulib, with this changelog entry: 2

Re: regex workaround for gcc 2.95.3 core dump

2005-09-24 Thread Derek Price
Paul, This is the same problem I ran into a few days ago on several platforms, and you helped me come up with this patch: . The patch in that message also removes a little cruft and handles a similar problem in a later GCC with a

regex workaround for gcc 2.95.3 core dump

2005-09-24 Thread Paul Eggert
I installed the following to work around a build failure of coreutils CVS on OpenBSD 3.4. (For now I have resisted the temptation to enable __attribute__ only for GCC 4.0 and later. :-) 2005-09-24 Paul Eggert <[EMAIL PROTECTED]> * regex_internal.h (__attribute): Define to nothing for

problem with mbchar module on OpenBSD

2005-09-24 Thread Paul Eggert
With coreutils CVS on OpenBSD 3.4, I ran into the same problem with the mbchar module that Yoann Vandoorselaere first reported with OpenBSD 3.7 in . I installed the following patch into coreutils, which is about the same as Derek

gethostbyname on Solaris 5.7

2005-09-24 Thread Jim Meyering
Here's a log of a failed Solaris 5.7 build cc -I/usr/local/include -R/usr/local/lib -L/usr/local/lib -o pinky pinky.o ../lib/libcoreutils.a /usr/local/lib/libintl.so /usr/local/lib/libiconv.so -lc -R/usr/local/lib ../lib/libcoreutils.a Undefined first referenced s

Re: getaddrinfo needs socklen, sync from coreutils

2005-09-24 Thread Simon Josefsson
Jim Meyering <[EMAIL PROTECTED]> writes: > Simon Josefsson <[EMAIL PROTECTED]> wrote: > >> Jim Meyering <[EMAIL PROTECTED]> writes: >> >>> I've just discovered/fixed a build problem with the getaddrinfo module. >>> It didn't depend on the socklen module (for the declaration of socklen_t). >>> So I

Re: getaddrinfo needs socklen, sync from coreutils

2005-09-24 Thread Jim Meyering
Simon Josefsson <[EMAIL PROTECTED]> wrote: > Jim Meyering <[EMAIL PROTECTED]> writes: > >> I've just discovered/fixed a build problem with the getaddrinfo module. >> It didn't depend on the socklen module (for the declaration of socklen_t). >> So I've merged these changes from coreutils: > > Hm. s

Re: getaddrinfo needs socklen, sync from coreutils

2005-09-24 Thread Simon Josefsson
Jim Meyering <[EMAIL PROTECTED]> writes: > I've just discovered/fixed a build problem with the getaddrinfo module. > It didn't depend on the socklen module (for the declaration of socklen_t). > So I've merged these changes from coreutils: Hm. socklen_t is POSIX. Shouldn't getaddrinfo assume a PO