summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2003-04-09*** empty log message ***Jim Meyering
2003-04-09(bytes_split): Use size_t temporary (rather thanJim Meyering
uintmax_t original) in remaining computations. From Paul Eggert.
2003-04-09Handle command line option arguments larger than 2^31.Jim Meyering
This allows e.g., splitting into files of size 2GB and larger, and running split --lines=N with N=2^31 or more. But for --line-bytes=N, the restriction that N <= SIZE_MAX remains (for now), due to the way it is implemented. Include "inttostr.h". (bytes_split, lines_split, line_bytes_split, main): Use uintmax_t, not size_t, for file sizes. (main): Give a better diagnostic for option arguments == 0. Use umaxtostr to print file sizes.
2003-04-09tweak white-space to make backslashes line upJim Meyering
2003-04-09(lines_split): Rename local, nlines -> n_lines.Jim Meyering
2003-04-09also check obsolete option -0Jim Meyering
2003-04-08*** empty log message ***Jim Meyering
2003-04-08(usage): Mention that --directory (-d) works only on some systems.Jim Meyering
2003-04-08*** empty log message ***Jim Meyering
2003-04-08*** empty log message ***Jim Meyering
2003-04-08(main): Use STDIN_FILENO, not literal `0'.Jim Meyering
2003-04-08*** empty log message ***Jim Meyering
2003-04-08(TESTS): Add split-fail.Jim Meyering
2003-04-08*** empty log message ***Jim Meyering
2003-04-08Run $PERL to see if it is available, rather than testing its value.Jim Meyering
2003-04-08.Jim Meyering
2003-04-08*** empty log message ***Jim Meyering
2003-04-08*** empty log message ***Jim Meyering
2003-04-08*** empty log message ***Jim Meyering
2003-04-08(main): Rename local variable: s/accum/n_units/.Jim Meyering
2003-04-08also change NCHARS, in comments, to N_BYTESJim Meyering
2003-04-08Rename local variables: nchars -> n_bytes.Jim Meyering
2003-04-08Remove note about Ultrix compilation failure.Jim Meyering
2003-04-07*** empty log message ***Jim Meyering
2003-04-07(jm_PREREQ_STAT): Add prerequisites and #includes for Ultrix 4.4.Jim Meyering
2003-04-07*** empty log message ***Jim Meyering
2003-04-07Add #include directives for Ultrix 4.4.Jim Meyering
Based on a suggested change from Bert Deknuydt.
2003-04-07*** empty log message ***Jim Meyering
2003-04-06*** empty log message ***Jim Meyering
2003-04-06(makefile-check): New rule.Jim Meyering
(local-check): Add it.
2003-04-05.Jim Meyering
2003-04-05*** empty log message ***Jim Meyering
2003-04-05Use $(VAR) rather than @VAR@, now that we can rely on automake toJim Meyering
emit a definition for each substituted variable.
2003-04-05*** empty log message ***Jim Meyering
2003-04-05(DEFS): Use += notation rather than `DEFS = ... @DEFS@'.Jim Meyering
Use $(VAR) rather than @VAR@, now that we can rely on automake to emit a definition for each substituted variable.
2003-04-05*** empty log message ***Jim Meyering
2003-04-05Add a comment explaining why this test fails when using Tru64's broken sed.Jim Meyering
2003-04-05Add a comment explaining why this test fails when using Tru64's broken sed.Jim Meyering
2003-04-05*** empty log message ***Jim Meyering
2003-04-05*** empty log message ***Jim Meyering
2003-04-05*** empty log message ***Jim Meyering
2003-04-05Make `kill -t' output signal descriptions (not `?') on Tru64.Jim Meyering
(sys_siglist): Also check for __sys_siglist.
2003-04-05*** empty log message ***Jim Meyering
2003-04-05Also check for declaration of __sys_siglist.Jim Meyering
Required for Tru64 4.0D, 4.0F, and 5.1.
2003-04-05bump to 5.0.1Jim Meyering
2003-04-04fixed Ed Avis' mv bugJim Meyering
2003-04-04*** empty log message ***Jim Meyering
2003-04-04(PERL): Remove unnecessary definition.Jim Meyering
2003-04-04Because of inappropriate (but POSIX-mandated) behavior of rename,Jim Meyering
`mv a b' would not remove `a' in some unusual cases. Work around this by unlinking `a' when necessary. (same_file_ok): Add an output parameter. Set it in the offending case. (copy_internal): When necessary, unlink SRC_PATH and inform caller.
2003-04-04*** empty log message ***Jim Meyering