diff options
| author | Robert Joslyn <robert.joslyn@redrectangle.org> | 2018-04-08 11:25:06 -0700 |
|---|---|---|
| committer | Armin Kuster <akuster808@gmail.com> | 2018-05-01 18:12:49 -0700 |
| commit | 5818f54160016088c79030217fe80f2688714546 (patch) | |
| tree | da486cc25358cad414bb337a50c9abe07bf3b23e /meta-oe/recipes-support/htop/files | |
| parent | 9c96e14e5e16b9d70ee5716f00fb5b0972b1239d (diff) | |
| download | meta-openembedded-5818f54160016088c79030217fe80f2688714546.tar.gz | |
htop: Update to 2.1.0
Add PACKAGECONFIG options and update formatting to better conform to the
style guide.
Signed-off-by: Robert Joslyn <robert.joslyn@redrectangle.org>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/htop/files')
| -rw-r--r-- | meta-oe/recipes-support/htop/files/0001-Use-pkg-config.patch | 35 |
1 files changed, 14 insertions, 21 deletions
diff --git a/meta-oe/recipes-support/htop/files/0001-Use-pkg-config.patch b/meta-oe/recipes-support/htop/files/0001-Use-pkg-config.patch index ff5cd49237..fc0d86e335 100644 --- a/meta-oe/recipes-support/htop/files/0001-Use-pkg-config.patch +++ b/meta-oe/recipes-support/htop/files/0001-Use-pkg-config.patch | |||
| @@ -1,36 +1,32 @@ | |||
| 1 | From 7ebcbf17ad9483c7109e4a83b66966bc02f09bd4 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Paul Barker <pbarker@toganlabs.com> | ||
| 3 | Date: Sun, 5 Nov 2017 20:10:10 +0000 | ||
| 4 | Subject: [PATCH] Use pkg-config | ||
| 5 | |||
| 6 | We need to use pkg-config to find the ncurses library instead of the | 1 | We need to use pkg-config to find the ncurses library instead of the |
| 7 | ncurses*-config applications. | 2 | ncurses*-config applications. |
| 8 | 3 | ||
| 9 | Signed-off-by: Paul Barker <pbarker@toganlabs.com> | 4 | Signed-off-by: Paul Barker <pbarker@toganlabs.com> |
| 5 | Signed-off-by: Robert Joslyn <robert.joslyn@redrectangle.org> | ||
| 6 | |||
| 10 | Upstream-status: Inappropriate | 7 | Upstream-status: Inappropriate |
| 11 | (`ncurses*-config` can be used outside of OpenEmbedded) | 8 | (`ncurses*-config` can be used outside of OpenEmbedded) |
| 12 | --- | ||
| 13 | configure.ac | 10 +++++----- | ||
| 14 | 1 file changed, 5 insertions(+), 5 deletions(-) | ||
| 15 | 9 | ||
| 16 | diff --git a/configure.ac b/configure.ac | 10 | diff --git a/configure.ac b/configure.ac |
| 17 | index 7e0edd1..c5a8365 100644 | 11 | index 559dc4d..77aea22 100644 |
| 18 | --- a/configure.ac | 12 | --- a/configure.ac |
| 19 | +++ b/configure.ac | 13 | +++ b/configure.ac |
| 20 | @@ -185,9 +185,9 @@ m4_define([HTOP_CHECK_LIB], | 14 | @@ -185,10 +185,10 @@ m4_define([HTOP_CHECK_LIB], |
| 21 | 15 | ||
| 22 | AC_ARG_ENABLE(unicode, [AS_HELP_STRING([--enable-unicode], [enable Unicode support])], ,enable_unicode="yes") | 16 | AC_ARG_ENABLE(unicode, [AS_HELP_STRING([--enable-unicode], [enable Unicode support])], ,enable_unicode="yes") |
| 23 | if test "x$enable_unicode" = xyes; then | 17 | if test "x$enable_unicode" = xyes; then |
| 24 | - HTOP_CHECK_SCRIPT([ncursesw6], [addnwstr], [HAVE_LIBNCURSESW], "ncursesw6-config", | 18 | - HTOP_CHECK_SCRIPT([ncursesw6], [addnwstr], [HAVE_LIBNCURSESW], "ncursesw6-config", |
| 25 | - HTOP_CHECK_SCRIPT([ncursesw], [addnwstr], [HAVE_LIBNCURSESW], "ncursesw5-config", | 19 | - HTOP_CHECK_SCRIPT([ncursesw], [addnwstr], [HAVE_LIBNCURSESW], "ncursesw6-config", |
| 26 | - HTOP_CHECK_SCRIPT([ncurses], [addnwstr], [HAVE_LIBNCURSESW], "ncurses5-config", | 20 | - HTOP_CHECK_SCRIPT([ncursesw], [addnwstr], [HAVE_LIBNCURSESW], "ncursesw5-config", |
| 21 | - HTOP_CHECK_SCRIPT([ncurses], [addnwstr], [HAVE_LIBNCURSESW], "ncurses5-config", | ||
| 27 | + HTOP_CHECK_SCRIPT([ncursesw6], [addnwstr], [HAVE_LIBNCURSESW], "pkg-config ncursesw6", | 22 | + HTOP_CHECK_SCRIPT([ncursesw6], [addnwstr], [HAVE_LIBNCURSESW], "pkg-config ncursesw6", |
| 28 | + HTOP_CHECK_SCRIPT([ncursesw], [addnwstr], [HAVE_LIBNCURSESW], "pkg-config ncursesw5", | 23 | + HTOP_CHECK_SCRIPT([ncursesw], [addnwstr], [HAVE_LIBNCURSESW], "pkg-config ncursesw6", |
| 29 | + HTOP_CHECK_SCRIPT([ncurses], [addnwstr], [HAVE_LIBNCURSESW], "pkg-config ncurses5", | 24 | + HTOP_CHECK_SCRIPT([ncursesw], [addnwstr], [HAVE_LIBNCURSESW], "pkg-config ncursesw5", |
| 30 | HTOP_CHECK_LIB([ncursesw6], [addnwstr], [HAVE_LIBNCURSESW], | 25 | + HTOP_CHECK_SCRIPT([ncurses], [addnwstr], [HAVE_LIBNCURSESW], "pkg-config ncurses5", |
| 31 | HTOP_CHECK_LIB([ncursesw], [addnwstr], [HAVE_LIBNCURSESW], | 26 | HTOP_CHECK_LIB([ncursesw6], [addnwstr], [HAVE_LIBNCURSESW], |
| 32 | HTOP_CHECK_LIB([ncurses], [addnwstr], [HAVE_LIBNCURSESW], | 27 | HTOP_CHECK_LIB([ncursesw], [addnwstr], [HAVE_LIBNCURSESW], |
| 33 | @@ -200,8 +200,8 @@ if test "x$enable_unicode" = xyes; then | 28 | HTOP_CHECK_LIB([ncurses], [addnwstr], [HAVE_LIBNCURSESW], |
| 29 | @@ -201,8 +201,8 @@ if test "x$enable_unicode" = xyes; then | ||
| 34 | [AC_CHECK_HEADERS([ncurses/curses.h],[:], | 30 | [AC_CHECK_HEADERS([ncurses/curses.h],[:], |
| 35 | [AC_CHECK_HEADERS([ncurses.h],[:],[missing_headers="$missing_headers $ac_header"])])])]) | 31 | [AC_CHECK_HEADERS([ncurses.h],[:],[missing_headers="$missing_headers $ac_header"])])])]) |
| 36 | else | 32 | else |
| @@ -41,6 +37,3 @@ index 7e0edd1..c5a8365 100644 | |||
| 41 | HTOP_CHECK_LIB([ncurses6], [refresh], [HAVE_LIBNCURSES], | 37 | HTOP_CHECK_LIB([ncurses6], [refresh], [HAVE_LIBNCURSES], |
| 42 | HTOP_CHECK_LIB([ncurses], [refresh], [HAVE_LIBNCURSES], | 38 | HTOP_CHECK_LIB([ncurses], [refresh], [HAVE_LIBNCURSES], |
| 43 | missing_libraries="$missing_libraries libncurses" | 39 | missing_libraries="$missing_libraries libncurses" |
| 44 | -- | ||
| 45 | 2.7.4 | ||
| 46 | |||
