diff options
author | Yann E. MORIN <yann.morin.1998@free.fr> | 2014-06-02 22:27:22 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-06-02 22:32:37 +0200 |
commit | 5cd1c4feb5403bb1208a6dfcc6fbf6df352d6a40 (patch) | |
tree | ed44694f259e959d0cc5a435f68ff712960f439d /package/procps/procps-wchar.patch | |
parent | 7de0d049b226bd532062973358d211ac9b993277 (diff) | |
download | buildroot-5cd1c4feb5403bb1208a6dfcc6fbf6df352d6a40.tar.gz buildroot-5cd1c4feb5403bb1208a6dfcc6fbf6df352d6a40.zip |
package/procps: bump version and rename to procps-ng
procps is getting replaced by procps-ng, and there are
new versions available!
procps-ng is now an autotools package, so get rid of our
custom build/install rules.
Remove most patches, except for one that still half-applies,
so update and rename it.
procps is dead, long live procps-ng!
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/procps/procps-wchar.patch')
-rw-r--r-- | package/procps/procps-wchar.patch | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/package/procps/procps-wchar.patch b/package/procps/procps-wchar.patch deleted file mode 100644 index 7915229946..0000000000 --- a/package/procps/procps-wchar.patch +++ /dev/null @@ -1,29 +0,0 @@ ---- procps-3.2.7/proc/escape.c 2005-01-06 07:50:26.000000000 +1100 -+++ procps-3.2.7.fixed/proc/escape.c 2008-09-09 11:55:57.000000000 +1000 -@@ -15,7 +15,7 @@ - #include "escape.h" - #include "readproc.h" - --#if (__GNU_LIBRARY__ >= 6) -+#if (__GNU_LIBRARY__ >= 6) && (!defined(__UCLIBC__) || defined(__UCLIBC_HAS_WCHAR__)) - # include <wchar.h> - # include <wctype.h> - # include <stdlib.h> /* MB_CUR_MAX */ -@@ -23,7 +23,7 @@ - # include <langinfo.h> - #endif - --#if (__GNU_LIBRARY__ >= 6) -+#if (__GNU_LIBRARY__ >= 6) && (!defined(__UCLIBC__) || defined(__UCLIBC_HAS_WCHAR__)) - static int escape_str_utf8(char *restrict dst, const char *restrict src, int bufsize, int *maxcells){ - int my_cells = 0; - int my_bytes = 0; -@@ -123,7 +123,7 @@ - "********************************" - "********************************"; - --#if (__GNU_LIBRARY__ >= 6) -+#if (__GNU_LIBRARY__ >= 6) && (!defined(__UCLIBC__) || defined(__UCLIBC_HAS_WCHAR__)) - static int utf_init=0; - - if(utf_init==0){ |