summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2001-08-13*** empty log message ***Jim Meyering
2001-08-13*** empty log message ***Jim Meyering
2001-08-13(AUTHORS): Mark string for translation, since it contains the English word ↵Jim Meyering
`and'.
2001-08-13(author_mark_check): New rule.Jim Meyering
(local-check): Depend on it.
2001-08-13*** empty log message ***Jim Meyering
2001-08-13Change expected exit status to reflect the above.Jim Meyering
2001-08-13*** empty log message ***Jim Meyering
2001-08-13(cp_option_init): Adjust initialization of `interactive',Jim Meyering
and initialize new member, stdin_tty.
2001-08-13(cp_option_init): Adjust initialization of `interactive',Jim Meyering
and initialize new member, stdin_tty. (main): Adjust initialization(s) of `interactive',
2001-08-13(cp_option_init): Adjust initialization of `interactive',Jim Meyering
and initialize new member, stdin_tty. (main): Adjust initialization(s) of `interactive',
2001-08-13(enum Interactive): New type.Jim Meyering
(struct cp_options) [interactive]: Change type to Interactive. (struct cp_options) [stdin_tty]: New member.
2001-08-13(overwrite_prompt): New function.Jim Meyering
(copy_internal): Separate the mv-specific and non-move_mode code that determines whether to prompt the user. [move_mode]: Don't make mv fail (i.e. don't return 1) just because the user declined to remove one or more of the files.
2001-08-13*** empty log message ***Jim Meyering
2001-08-13(<errno.h>): Include.Jim Meyering
(errno): Declare if not defined. (addext): Work correctly when pathconf returns -1 and leaves errno alone because there is no limit. Also, work even if pathconf returns a value greater than SIZE_MAX.
2001-08-12*** empty log message ***Jim Meyering
2001-08-12(xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:Jim Meyering
Simply `return getcwd (NULL, 0);'. [! (defined __GLIBC__ && __GLIBC__ >= 2)]: Use 1300 as initial value for length, not PATH_MAX.
2001-08-12Clean up cpp syntax.Jim Meyering
2001-08-12*** empty log message ***Jim Meyering
2001-08-12Guard the above pathconf-using definitions with `#if HAVE_PATHCONF'Jim Meyering
rather than with `#ifdef _POSIX_VERSION'.
2001-08-12*** empty log message ***Jim Meyering
2001-08-12(PATH_MAX_FOR): Use pathconf via wrapper.Jim Meyering
(NAME_MAX_FOR): Likewise. (pathconf_wrapper): New function. (validate_path): Declare length variables to be `long', not `int'. Adjust corresponding printf-style specs to use %ld.
2001-08-12*** empty log message ***Jim Meyering
2001-08-12*** empty log message ***Jim Meyering
2001-08-12*** empty log message ***Jim Meyering
2001-08-12.Jim Meyering
2001-08-12.Jim Meyering
2001-08-12(main): Iterate over the sorted keys (rather than `while...each...'),Jim Meyering
so this script produces the same output regardless of which version of perl (e.g., perl5.6) is used.
2001-08-12*** empty log message ***Jim Meyering
2001-08-12($program_name): Define.Jim Meyering
(main): Use $program_name, rather than long-inaccurate `build-script'.
2001-08-12*** empty log message ***Jim Meyering
2001-08-12Quote the first argument in each use of AC_DEFUN.Jim Meyering
2001-08-12.Jim Meyering
2001-08-12update from libcJim Meyering
2001-08-12Include gtod.h -- should have been part of preceding deltaJim Meyering
2001-08-12update from libcJim Meyering
2001-08-12update from libcJim Meyering
2001-08-12.Jim Meyering
2001-08-12*** empty log message ***Jim Meyering
2001-08-12*** empty log message ***Jim Meyering
2001-08-12Include gtod.h.Jim Meyering
(main): `Call' GETTIMEOFDAY_INIT, just in case the code ever changes to make it necessary.
2001-08-12Work around non-compliant gettimeofday on Mac OS X 10.0.4,Jim Meyering
(aka Darwin 1.3.7) that caused the date of the first file listed in long output to be the current time rather than the file's mtime. The real work is in m4/gettimeofday.m4 and the wrapper function, lib/gettimeofday.c. Include gtod.h. (main): `Call' GETTIMEOFDAY_INIT. (print_long_format): Add a comment about gettimeofday.
2001-08-12*** empty log message ***Jim Meyering
2001-08-12(libfetish_a_SOURCES): Add gtod.h.Jim Meyering
2001-08-12*** empty log message ***Jim Meyering
2001-08-12*** empty log message ***Jim Meyering
2001-08-12remove unused cruftJim Meyering
2001-08-12yes/no were reversedJim Meyering
2001-08-10*** empty log message ***Jim Meyering
2001-08-10*** empty log message ***Jim Meyering
2001-08-10(print_long_format): Simplify previous patch forJim Meyering
listing negative sizes, by adding OFF_T_MAX - OFF_T_MIN + 1 instead of doing a fancy conditional shift. This is simpler and it avoids GCC's bogus compile-time warning about shift counts. (As a bonus, it is portable to hosts that do not use twos-complement arithmetic. :-)