Subject | Hash | Author | Date (UTC) |
---|---|---|---|
Fix ifdata, ifne, parallel to build on illumos. Thanks, Gabriele Giacone Closes: #733736 | cd3722aabdefd293f0200c56579616092a15e5a4 | Joey Hess | 2013-12-31 17:36:33 |
Make vipe manpage a little clearer | 63d717ea18eea93f89ef9654b1626bef500b6e36 | Marian Sigler | 2013-11-18 02:34:31 |
changelog | 58b6500f1144793cb70932e5b58b39e9b95c482a | Joey Hess | 2013-11-06 02:36:42 |
Use docbook-xsl to build man pages | a4ae7cb030f54132756fd2dc74bbdf47bdbdc134 | Peter Eisentraut | 2013-11-02 21:44:03 |
Run xmllint as part of DocBook build | f0fb1db1f524d51503ebc757828c7d2f3874cebf | Peter Eisentraut | 2013-11-02 21:04:58 |
Use pattern rule for building man pages from DocBook | aba6afa8e508f78c02ed50691d01eb8837046592 | Peter Eisentraut | 2013-11-02 21:04:22 |
Fix invalid DocBook markup | aa6bbfff0bc300dc096bb324f011b90f428e213e | Peter Eisentraut | 2013-11-02 21:02:03 |
Use http system identifiers | 75383286c0bb03da8b97283fe8fc7acdbfac414e | Peter Eisentraut | 2013-11-02 20:24:37 |
Fix ifdata to build on OS X. Thanks, Peter Eisentraut Closes: #575294 | 052a77f216ce5980851b74068e29ab2e78b30f7c | Joey Hess | 2013-11-04 16:28:29 |
releasing version 0.50 | 323e2f7a120823806156c6afe9d4158904802b0e | Joey Hess | 2013-08-26 17:05:00 |
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 |
moreutils (0.49) unstable; urgency=low | 48ca6c6dab953dc0915cda78ac6c3c5bd4bd95ca | Joey Hess | 2013-07-10 20:21:41 |
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 |
File | Lines added | Lines deleted |
---|---|---|
debian/changelog | 2 | 0 |
ifdata.c | 6 | 0 |
ifne.c | 4 | 0 |
parallel.c | 4 | 0 |
File debian/changelog changed (mode: 100644) (index b3eba9f..1e94875) | |||
... | ... | moreutils (0.51) UNRELEASED; urgency=low | |
5 | 5 | * use docbook-xsl for building man pages. Thanks, Peter Eisentraut | * use docbook-xsl for building man pages. Thanks, Peter Eisentraut |
6 | 6 | for extensive patch set! | for extensive patch set! |
7 | 7 | Closes: #728831 | Closes: #728831 |
8 | * Fix ifdata, ifne, parallel to build on illumos. Thanks, Gabriele Giacone | ||
9 | Closes: #733736 | ||
8 | 10 | ||
9 | 11 | -- Joey Hess <joeyh@debian.org> Mon, 04 Nov 2013 12:28:04 -0400 | -- Joey Hess <joeyh@debian.org> Mon, 04 Nov 2013 12:28:04 -0400 |
10 | 12 |
File ifdata.c changed (mode: 100644) (index 6d7ed6f..adf9f87) | |||
23 | 23 | #include <net/if.h> | #include <net/if.h> |
24 | 24 | #endif | #endif |
25 | 25 | ||
26 | #if defined(__sun) | ||
27 | #define s6_addr16 _S6_un._S6_u8 | ||
28 | #include <net/if.h> | ||
29 | #include <sys/sockio.h> | ||
30 | #endif | ||
31 | |||
26 | 32 | #include <netinet/in.h> | #include <netinet/in.h> |
27 | 33 | #include <errno.h> | #include <errno.h> |
28 | 34 | #include <fcntl.h> | #include <fcntl.h> |
File ifne.c changed (mode: 100644) (index d8ecea9..e8bc100) | |||
23 | 23 | #include <sys/wait.h> | #include <sys/wait.h> |
24 | 24 | #include <sys/types.h> | #include <sys/types.h> |
25 | 25 | #include <string.h> | #include <string.h> |
26 | #ifdef __sun | ||
27 | #include <signal.h> /* raise() */ | ||
28 | #endif | ||
29 | |||
26 | 30 | #define streq(a, b) (!strcmp((a), (b))) | #define streq(a, b) (!strcmp((a), (b))) |
27 | 31 | ||
28 | 32 | static void stdin_to_stream(char *buf, ssize_t r, FILE *outf) { | static void stdin_to_stream(char *buf, ssize_t r, FILE *outf) { |
File parallel.c changed (mode: 100644) (index 1bd796b..b9d7ab2) | |||
32 | 32 | #include <sys/wait.h> | #include <sys/wait.h> |
33 | 33 | #include <unistd.h> | #include <unistd.h> |
34 | 34 | ||
35 | #ifdef __sun | ||
36 | # include <sys/loadavg.h> /* getloadavg() */ | ||
37 | #endif | ||
38 | |||
35 | 39 | #if !defined(WEXITED) | #if !defined(WEXITED) |
36 | 40 | #define WEXITED 0 | #define WEXITED 0 |
37 | 41 | #endif | #endif |