Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-03-01 | . | Jim Meyering | |
2005-03-01 | (nanosec_libs): Remove $(LIB_XANOSLEEP); no longer needed. | Paul Eggert | |
2005-03-01 | (copy_internal): Change test of source type from !S_ISREG to S_ISLNK. | Jim Meyering | |
Reported by Paul Eggert in http://lists.gnu.org/archive/html/bug-coreutils/2004-10/msg00050.html. | |||
2005-02-26 | Regenerate. | Paul Eggert | |
2005-02-22 | Regenerate. | Paul Eggert | |
2005-02-22 | (dd_LDADD, shred_LDADD): Add $(LIB_GETHRXTIME). | Paul Eggert | |
(nanosec_libs): Add $(LIB_XNANOSLEEP). Needed for newer GNU/Linux hosts with clock_gettime. | |||
2005-02-21 | Regenerate. | Paul Eggert | |
2005-02-21 | (time): Remove obsolete decl. | Paul Eggert | |
(main): Gettime now returns void. | |||
2005-02-21 | Include gethrxtime.h. | Paul Eggert | |
(isaac_seed): Use gethrxtime rather than a mishmash. | |||
2005-02-21 | (time): Remove obsolete decl. | Paul Eggert | |
(get_current_time): gettimeofday always returns 0, so don't check its result. | |||
2005-02-21 | Include gethrxtime.h, xtime.h. | Paul Eggert | |
(start_time): Now of type xtime_t, not struct timespec. (print_stats, main): Use gethrxtime rather than gettime. | |||
2005-02-21 | (main): gettime now returns void. | Paul Eggert | |
2005-02-21 | (dd_LDADD, shred_LDADD, nanosec_libs): | Paul Eggert | |
Remove $(LIB_CLOCK_GETTIME). These functions now use gethrxtime instead. | |||
2005-02-21 | (enum RCH_status): Remove trailing comma, | Paul Eggert | |
as it's not valid in standard C89. | |||
2005-02-17 | . | Jim Meyering | |
2005-02-15 | regenerate | Jim Meyering | |
2005-02-15 | (human_fstype): Add case/definition for S_MAGIC_JFS | Jim Meyering | |
so that file systems of type `jfs' are recognized as such. | |||
2005-02-15 | regen for XFS | Jim Meyering | |
2005-02-15 | (human_fstype): Add case/definition for S_MAGIC_XFS | Jim Meyering | |
so that file systems of type `xfs' are recognized as such. | |||
2005-02-15 | (NZERO) [NZERO == 0]: Undefine and define to 20, | Jim Meyering | |
to work around the invalid definition from Darwin 7.7.0. | |||
2005-02-14 | (mergefps): Use binary search rather than linear one | Paul Eggert | |
when comparing new line to lines already in main memory. | |||
2005-02-13 | . | Jim Meyering | |
2005-02-09 | . | Jim Meyering | |
2005-02-09 | * src/copy.c (valid_options): Add an assertion that | Jim Meyering | |
not both hard_link and symbolic_link are set. | |||
2005-02-08 | (STATFS_FRSIZE): New macro. | Paul Eggert | |
(print_statfs): Use it to implement %S. (do_statfs): Change default formats to include %S. (usage): Document %S (versus %s). | |||
2005-02-08 | (usage): Normalize terminology, capitalization, and sort order to | Paul Eggert | |
match manual. Say that %s is the "Fundamental block size", since that is what POSIX says. | |||
2005-02-03 | Include "memrchr.h". | Paul Eggert | |
(memrchr) [!HAVE_DECL_MEMRCHR]: Remove decl. | |||
2005-01-30 | (elide_tail_bytes_pipe): Correct wording in diagnostic. | Jim Meyering | |
2005-01-30 | Remove unnecessary parentheses in #if directives. | Jim Meyering | |
2005-01-30 | [VSWTCH]: Some systems, like Cygwin, use VSWTC | Jim Meyering | |
instead of VSWTCH, for use with CSWTCH. | |||
2005-01-29 | . | Jim Meyering | |
2005-01-29 | . | Jim Meyering | |
2005-01-25 | Regenerate. | Paul Eggert | |
2005-01-25 | (usage): Add comma after "-P" to fix typo in previous patch. | Paul Eggert | |
2005-01-24 | Use S_BLKSIZE value for ST_NBLOCKSIZE where available. | Jim Meyering | |
2005-01-24 | (all_programs.list): Strip $(EXEEXT) and remove duplicates. | Jim Meyering | |
2005-01-24 | (usage): Merge the descriptions of --no-dereference and -P. | Jim Meyering | |
2005-01-20 | . | Jim Meyering | |
2005-01-15 | . | Jim Meyering | |
2005-01-15 | (isaac_seed) [HAVE_GETHRTIME]: #if-0 this block, | Jim Meyering | |
because just calling gethrtime evokes an `illegal instruction' failure when compiled with Sun's c89 on Solaris 8 and 9. | |||
2005-01-15 | (isaac_seed) [HAVE_GETHRTIME]: Don't call ISAAC_SEED | Jim Meyering | |
twice with the same value of `t'. Replace nested #if-#else blocks with #if-#elif-#elif chain. | |||
2005-01-14 | The test, tests/tail/f-1, failed on powerpc-apple-darwin7.7.0. | Jim Meyering | |
(IS_TAILABLE_FILE_TYPE): Adjust definition also to include sockets, since that's what you get when reading from a command-line- supplied pipe on Darwin 7.7. (IS_PIPE_LIKE_FILE_TYPE): Define. (main): Use new IS_PIPE_LIKE_FILE_TYPE rather than simply S_ISFIFO. This same change is also required on NetBSD/sparc-1.5. Reported by Adrian Bunk. | |||
2005-01-14 | (toarith): Rewrite to detect/diagnose integer overflow, | Jim Meyering | |
rather than suffering silently. Before, expr would silently overflow and wrap around: $ expr 9223372036854775808 = 0 # $(echo 2^63|bc) 1 Now it detects the problem and exits nonzero: $ ./expr $(echo 2^63|bc) = 0 ./expr: 9223372036854775808: integer is too large | |||
2005-01-13 | (is_int): Don't overflow when evaluating integer constants. | Jim Meyering | |
Before, ./test $(echo 2^64|bc) -eq 0 && echo FAIL would print `FAIL'. | |||
2005-01-11 | . | Jim Meyering | |
2005-01-11 | (main): Check for overflow in tabstop values | Jim Meyering | |
specified via the obsolete form. E.g., now this command fails: _POSIX2_VERSION=1 ./expand -$(echo '2^64+1'|bc) Before it would act like `_POSIX2_VERSION=1 ./expand -1'. | |||
2005-01-11 | (main): Check for overflow in tabstop values | Jim Meyering | |
specified via the obsolete form. E.g., now this command fails: _POSIX2_VERSION=1 ./unexpand -$(echo '2^64+1'|bc) Before it would act like `_POSIX2_VERSION=1 ./unexpand -1'. | |||
2005-01-11 | (add_tab_stop): Properly diagnose a tabstop list with decreasing values. | Jim Meyering | |
2005-01-11 | (check-README, check-AUTHORS): Account for $(EXEEXT). | Jim Meyering | |
2005-01-10 | Update copyright date. | Paul Eggert | |