summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2005-01-05*** empty log message ***Jim Meyering
2005-01-05Add a test for today's fix:Jim Meyering
(process_file): Evaluate exclusion rules against the entire file name, not just the last component.
2005-01-05*** empty log message ***Jim Meyering
2005-01-05(process_file): Evaluate exclusion rules againstJim Meyering
the entire file name, not just the last component.
2005-01-05*** empty log message ***Jim Meyering
2005-01-04*** empty log message ***Jim Meyering
2005-01-04* human.c (SIZE_MAX, UINTMAX_MAX): Move these conditionalPaul Eggert
definitions to be after all include files, to avoid collisions.
2005-01-04*** empty log message ***Jim Meyering
2005-01-04 * coreutils.texi (shred invocation): Clarify that shred works fineJim Meyering
with journaled file systems that are configured not to journal file system data. Also mention BFS and NTFS.
2005-01-04*** empty log message ***Jim Meyering
2005-01-04Change one-line summary to reflect that shred doesJim Meyering
not remove files by default.
2005-01-04*** empty log message ***Jim Meyering
2005-01-04.Jim Meyering
2005-01-04*** empty log message ***Jim Meyering
2005-01-04 * README: Request VERBOSE=yes output when reporting test failures.Jim Meyering
Other minor changes.
2005-01-04.Jim Meyering
2005-01-04(check-root): Update.Jim Meyering
2005-01-04(gl_FUNC_CHOWN): When cross-compiling, assume that chownJim Meyering
is sane and DOES follow symlinks. Besides, testing 20 different systems found no broken chown implementations.
2005-01-04(gl_FUNC_CHOWN): When cross-compiling, assume that chownJim Meyering
is sane and DOES follow symlinks. Besides, testing 20 different systems found no broken chown implementations.
2005-01-04remove FIXME commentsJim Meyering
2005-01-04remove FIXME commentsJim Meyering
2005-01-04*** empty log message ***Jim Meyering
2005-01-04[DEFAULT_ALIGNMENT]: Use an intermediate type to simplifyJim Meyering
offsetof() macro construct to avoid compile failure with native HP-UX 11.0 ANSI C compiler.
2005-01-03Regenerate.Paul Eggert
2005-01-03Update serial number and copyright date.Paul Eggert
2005-01-03* m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.Paul Eggert
* m4/ullong_max.m4: New file. * src/system.h: Undo previous change; we now use Autoconf.
2005-01-03*** empty log message ***Jim Meyering
2005-01-03Don't set rows or columns to zero, to avoidJim Meyering
a bug in the TIOCGWINSZ ioctl on at least Solaris5.9 systems. Setting either (or both) to zero would succeed, but subsequent `stty size' would say `no size information for this device' due to the ioctl failing with EINVAL.
2005-01-03* utimens.c (futimens): Robustify the previous patch.Paul Eggert
2005-01-03(futimens): Robustify the previous patch, by checkingPaul Eggert
for known valid error numbers rather than observed invalid ones.
2005-01-03*** empty log message ***Jim Meyering
2005-01-03(futimens): Account for the fact that futimesJim Meyering
can also fail with errno == ENOSYS in that case. Patch from Dmitry V. Levin.
2005-01-03*** empty log message ***Jim Meyering
2005-01-03If PRIdMAX, PRIoMAX, PRIuMAX, and PRIxMAX areJim Meyering
not all defined and either ULONG_MAX or ULLONG_MAX is not defined, then fail at compile-time rather than let tools like od produce invalid results at run time.
2005-01-03.Jim Meyering
2005-01-03*** empty log message ***Jim Meyering
2005-01-03Remove `.tmp' suffix; mkstemp requires that XXXXXX be a suffix.Jim Meyering
2005-01-03*** empty log message ***Jim Meyering
2005-01-03(gl_FUNC_MKSTEMP): Don't `cd' into the temporaryJim Meyering
subdirectory. That would make the subsequent AC_TRY_RUN macro fail, for lack of the ./confdefs.h file. Instead, use the temporary directory name as a prefix on the template string. Include <unistd.h> for the declaration of close.
2005-01-03* utimens.c (futimens) [HAVE_FUTIMES]: Fall back on utimes ifPaul Eggert
futimes fails with errno == ENOENT.
2005-01-03futimens) [HAVE_FUTIMES]: Fall back on utimes if futimes fails withPaul Eggert
errno == ENOENT.
2005-01-02*** empty log message ***Jim Meyering
2005-01-02(version_etc_copyright): Update copyright date.Jim Meyering
2004-12-31*** empty log message ***Jim Meyering
2004-12-31(rpl_openat): Correct comment.Jim Meyering
Call free_cwd, to avoid leaking a file descriptor.
2004-12-24* getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.Paul Eggert
2004-12-24(gl_GETDATE): Remove AC_FUNC_ALLOCA.Paul Eggert
2004-12-24Change getdate to not use alloca. Shrink initial stack.Paul Eggert
2004-12-24(YYSTACK_USE_ALLOCA): Define to 0, since there's noPaul Eggert
need to extend the stack. (YYINITDEPTH): New macro, so that the initial stack isn't overly large.
2004-12-21.Jim Meyering