summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2005-09-24(uninit-64): Remove this test. It wasn'tPaul Eggert
portable in theory (it doesn't work on hosts where 'int' is 64 bits, example) or in practice (Solaris 8 localtime returns garbage in tm_year for the specified date, but that's not coreutils's fault).
2005-09-24.Jim Meyering
2005-09-23*** empty log message ***Jim Meyering
2005-09-23(verify_type__): Use `unsigned int' as the bitfield typeJim Meyering
so we can once again use a positive bitfield width of 1 -- now we don't have to explain why we were using a bitfield width of 2.
2005-09-23*** empty log message ***Jim Meyering
2005-09-23*** empty log message ***Jim Meyering
2005-09-23Add lib/gai_strerror.c.Jim Meyering
2005-09-23Use 2, not 1, for bitfield size in verify.h.Paul Eggert
2005-09-23(verify_type__): Use 2, not 1, for bitfield size, to avoidPaul Eggert
a warning with Irix 6.5 cc.
2005-09-23Log recent changes.Paul Eggert
2005-09-23(gl_REGEX): If replacing, define regcomp to rpl_regcomp,Paul Eggert
and similarly for the other external symbols. Problem reported by James Gallager.
2005-09-23*** empty log message ***Jim Meyering
2005-09-23(install_file_in_file): Be more conservative about the previous patch:Paul Eggert
set time stamps on all non-regular files.
2005-09-23(change_timestamps): First arg is sourcePaul Eggert
struct stat, not file name. All uses changed. (install_file_in_file): Stat the source file if necessary. Don't try to change time stamps if copy_file did it.
2005-09-23(copy_reg): Preserve time stamps ifPaul Eggert
x->preserve_timestamps is set, using futimens so that we needn't resolve the path again. (copy_internal): Don't preserve time stamps if copy_reg did it already.
2005-09-23Don't include utime.h; not needed.Paul Eggert
(struct utimbuf) [!defined HAVE_STRUCT_UTIMBUF]: Remove; not needed.
2005-09-23(gl_MACROS): Don't require gl_CHECK_TYPE_STRUCT_UTIMBUF.Paul Eggert
(gl_CHECK_ALL_HEADERS): Don't check for utime.h.
2005-09-23Update copyright.Paul Eggert
2005-09-23(_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on LinuxPaul Eggert
bug reported by Jim Meyering.
2005-09-23.Jim Meyering
2005-09-23*** empty log message ***Jim Meyering
2005-09-23Use `verify' to ensure that our hard-codedJim Meyering
bytes_to_*_digits arrays are long enough. Of course, 17+-byte integral types aren't on the near horizon, but just in case... (MAX_INTEGRAL_TYPE_SIZE): Move definition to precede new first use. (bytes_to_oct_digits, bytes_to_signed_dec_digits): (bytes_to_unsigned_dec_digits, bytes_to_hex_digits): Change base type from `char' to the clearer `unsigned int'.
2005-09-23*** empty log message ***Jim Meyering
2005-09-23(gl_MACROS): AC_REQUIRE([gl_SOCKLEN_T]) here,Jim Meyering
now that it's no longer required by getaddrinfo.m4.
2005-09-23not needed, since socklen is a prerequisite module.Paul Eggert
2005-09-23* lib/utimens.c (futimens): Use futimesat if available.Paul Eggert
Prefer it to futimes since it doesn't have the futimes bug. * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
2005-09-23Fix typo in comment.Paul Eggert
2005-09-23(GL_CONCAT0, GL_CONCAT): Remove.Paul Eggert
(verify): Don't use the __LINE__ trick, as it doesn't work in general. Instead, declare a function that returns a pointer to an array, and use verify_type__ to declare the size of the array. Problem and germ of a solution reported by Bruno Haible.
2005-09-23*** empty log message ***Jim Meyering
2005-09-23*** empty log message ***Jim Meyering
2005-09-23from gnulibJim Meyering
2005-09-23(gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.Jim Meyering
2005-09-23*** empty log message ***Jim Meyering
2005-09-23Include <config.h>. Otherwise builds with strictJim Meyering
C89 (e.g., Sun's /opt/SUNWspro/bin/c89) would fail due to the use of `inline'.
2005-09-23(gl_PREREQ_GETADDRINFO): Check for netinet/in.h.Paul Eggert
2005-09-23* lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.Paul Eggert
Problem reported by Eric Blake. (getaddrinfo): Initialize se so that it's not garbage. Redo internal storage allocation so that it doesn't make unportable assumptions about alignment. Fix a memory leak.
2005-09-22.Jim Meyering
2005-09-22*** empty log message ***Jim Meyering
2005-09-22Regenerate.Paul Eggert
2005-09-22Sync from gnulib.Paul Eggert
2005-09-22Include canon-host.h rather than declaring canon_host ourselves.Paul Eggert
2005-09-22Include canon-host.h rather than declaringPaul Eggert
canon_host ourselves.
2005-09-22Include strcase.h.Paul Eggert
2005-09-22(gl_PREREQ): Require gl_FUNC_GETLINE rather thanPaul Eggert
AM_FUNC_GETLINE. Require gl_FUNC_GETPASS_GNU rather than gl_FUNC_GETPASS. Require gl_MBCHAR and gl_MBITER.
2005-09-22no longer needed.Paul Eggert
(gl_CHECK_ALL_HEADERS): Don't check for memory.h, mntent.h, mnttab.h, netdb.h, stdlib.h, stdint.h, string.h, sys/filsys.h, sys/fs/s5param.h, sys/fs_types.h, sys/fstyp.h, sys/mntent.h, sys/socket.h, sys/stafs.h, sys/timeb.h, unistd.h. No longer needed.
2005-09-22(_gl_DECL_HEADERS): Don't bother checking forPaul Eggert
standard C headers, or for headers we no longer use.
2005-09-22(libcoreutils_a_SOURCES): Add getaddrinfo.h,Paul Eggert
mbchar.c, mbchar.h, mbuiter.h, strcase.h, strlen1.c, strnlen1.h, strstr.h.
2005-09-22(EEXIST, ENOTEMPTY): Remove unused macros.Paul Eggert
2005-09-22Nontrivial sync from gnulib.Paul Eggert
2005-09-22Add getline.h, getpass.cPaul Eggert