Subject | Hash | Author | Date (UTC) |
---|---|---|---|
Fix build on Hurd. Closes: #716653 (Thanks, Pino Toscano) | 051b613dc1aaf34b435e47acdb24ae59be6d250c | Joey Hess | 2013-07-11 14:56:21 |
releasing version 0.49 | d3510311c1b0130b00912c1bbaec82fcd8f3b74e | Joey Hess | 2013-07-10 21:43:05 |
errno, isutf8: Fix zero-termination of option list, which could lead to getopt crash. Closes: #715867 (Thanks, Mayhem Team) | 8ba4087b31aef2225681da0f011002f8053be61c | Joey Hess | 2013-07-10 20:21:36 |
ts: Fix timezone used with -i | c18babad60373c4aada08074a0de62c0e44a80d9 | Joey Hess | 2013-05-05 15:23:12 |
releasing version 0.48 | 337a7415b11bb2b3a5f47a1aa96b571a40da8762 | Joey Hess | 2013-05-05 04:02:10 |
sponge: Check fclose to detect certian short reads. Closes: #704453 | 6684c636fd26eab49eec25d0538b2fc4b5542924 | Joey Hess | 2013-04-02 05:34:50 |
ts: Support single-digit day dates. Thanks, Peter Lunicks | 132b2771bbf29083ab51d8735de672cb530bc7af | Joey Hess | 2013-03-27 15:47:45 |
fix for syslog-style single-digit day dates, e.g. 'Feb 3' | 2f3cfb73023da1a57cdc397e86e10163ebe9cb38 | Peter Lunicks | 2013-03-26 22:50:17 |
ts: -i enables incremental timestamping. Thanks, Thomas Vander Stichele | d87032d88689177d6d1bae551fe21527d7df93f6 | Joey Hess | 2013-01-24 21:12:41 |
add support for incremental timestamping | ac2b4e3fbf63a6fcd3be8b01e431eaa05295d1ec | Thomas Vander Stichele | 2013-01-24 16:11:52 |
Typo. Closes: #697113 | 68d871805878cd2452778d7ddd92e6791a9bcf86 | Joey Hess | 2013-01-01 15:56:26 |
Allow overriding PREFIX and CFLAGS to make the build more flexible (Thanks, Ben Walton) | bc63fc28f8d5a2899e31acb6c7cbae1c042b1583 | Joey Hess | 2012-07-26 03:40:00 |
Allow overriding PREFIX and CFLAGS to make the build more flexible | 9aebcfaa8b9cf1715e346e219db5eae590f568f5 | Ben Walton | 2012-07-26 01:25:28 |
releasing version 0.47 | 80dd7ed5d66eebd6ae7b7e3aadfa99f37ceb419f | Joey Hess | 2012-06-25 20:34:42 |
Update errno manual page with new option | 64b23baae5f1d0c283b3c25ee1f46c6b9eef596f | Lars Wirzenius | 2012-06-05 20:45:00 |
Add errno --search-all-locale option | 99153f44efacda0ebc3cd2eb42db0a36ef2145ad | Lars Wirzenius | 2012-06-05 20:42:47 |
Change how errno values are printed, for portability | 65c141be411582e64baac599b2901741bcda5305 | Lars Wirzenius | 2012-06-05 17:09:29 |
Make errno obey locale | 67f22bd1b6c2acfa5d23fa1821a0c9e895d085eb | Lars Wirzenius | 2012-06-05 14:14:07 |
Fix errno manpage to include --search in synopsis | c373ee95a6670b73b3685c9792a4ae297f760527 | Lars Wirzenius | 2012-06-05 14:12:37 |
Add --search option to errno | b876a119c477530b556e491c1a923212c3b0a67c | Lars Wirzenius | 2012-06-05 14:11:37 |
File | Lines added | Lines deleted |
---|---|---|
debian/changelog | 7 | 0 |
ifdata.c | 4 | 0 |
parallel.c | 1 | 1 |
File debian/changelog changed (mode: 100644) (index 7559ffb..cec92a2) | |||
1 | moreutils (0.50) UNRELEASED; urgency=low | ||
2 | |||
3 | * Fix build on Hurd. Closes: #716653 | ||
4 | (Thanks, Pino Toscano) | ||
5 | |||
6 | -- Joey Hess <joeyh@debian.org> Thu, 11 Jul 2013 10:55:52 -0400 | ||
7 | |||
1 | 8 | moreutils (0.49) unstable; urgency=low | moreutils (0.49) unstable; urgency=low |
2 | 9 | ||
3 | 10 | * ts: Fix timezone used with -i | * ts: Fix timezone used with -i |
File ifdata.c changed (mode: 100644) (index 2de98a0..031bc19) | |||
14 | 14 | #include <net/if.h> | #include <net/if.h> |
15 | 15 | #endif | #endif |
16 | 16 | ||
17 | #if defined(__GNU__) | ||
18 | #include <net/if.h> | ||
19 | #endif | ||
20 | |||
17 | 21 | #include <netinet/in.h> | #include <netinet/in.h> |
18 | 22 | #include <errno.h> | #include <errno.h> |
19 | 23 | #include <fcntl.h> | #include <fcntl.h> |
File parallel.c changed (mode: 100644) (index d283b96..1bd796b) | |||
32 | 32 | #include <sys/wait.h> | #include <sys/wait.h> |
33 | 33 | #include <unistd.h> | #include <unistd.h> |
34 | 34 | ||
35 | #if defined(__FreeBSD_kernel__) | ||
35 | #if !defined(WEXITED) | ||
36 | 36 | #define WEXITED 0 | #define WEXITED 0 |
37 | 37 | #endif | #endif |
38 | 38 |