diff options
author | Khem Raj <raj.khem@gmail.com> | 2017-07-14 18:55:36 -0700 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2017-07-24 18:57:36 +0200 |
commit | 92d9eabbf6b0f866f2402be5cdedddb25a55163a (patch) | |
tree | 3017eceb503e6f01a5de24c69587ca40d771f440 | |
parent | 222db35a89fa12badfc3e3339eae0ab6d47459e9 (diff) | |
download | meta-openembedded-92d9eabbf6b0f866f2402be5cdedddb25a55163a.tar.gz |
nmon: Upgrade to 16g
Fix build with musl while here.
link with libm for ceilf API
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | meta-oe/recipes-support/nmon/nmon/0001-lmon16g.c-Adjust-system-headers.patch | 46 | ||||
-rw-r--r-- | meta-oe/recipes-support/nmon/nmon_16g.bb (renamed from meta-oe/recipes-support/nmon/nmon_13g.bb) | 16 |
2 files changed, 55 insertions, 7 deletions
diff --git a/meta-oe/recipes-support/nmon/nmon/0001-lmon16g.c-Adjust-system-headers.patch b/meta-oe/recipes-support/nmon/nmon/0001-lmon16g.c-Adjust-system-headers.patch new file mode 100644 index 000000000..e8debe56a --- /dev/null +++ b/meta-oe/recipes-support/nmon/nmon/0001-lmon16g.c-Adjust-system-headers.patch | |||
@@ -0,0 +1,46 @@ | |||
1 | From d977b5170027926eb97ab9742ddc51d2a5555a34 Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Fri, 14 Jul 2017 10:06:49 -0700 | ||
4 | Subject: [PATCH] lmon16g.c: Adjust system headers | ||
5 | |||
6 | fstab.h is unused | ||
7 | errno.h is in /usr/include | ||
8 | defines from sys/cdefs.h is used | ||
9 | |||
10 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
11 | --- | ||
12 | lmon16g.c | 4 ++-- | ||
13 | 1 file changed, 2 insertions(+), 2 deletions(-) | ||
14 | |||
15 | diff --git a/lmon16g.c b/lmon16g.c | ||
16 | index cb27e09..d2a11c5 100644 | ||
17 | --- a/lmon16g.c | ||
18 | +++ b/lmon16g.c | ||
19 | @@ -63,7 +63,7 @@ static char *SccsId = "nmon " VERSION; | ||
20 | #include <fcntl.h> | ||
21 | #include <math.h> | ||
22 | #include <time.h> | ||
23 | -#include <sys/errno.h> | ||
24 | +#include <errno.h> | ||
25 | #include <sys/types.h> | ||
26 | #include <sys/stat.h> | ||
27 | #include <sys/ioctl.h> | ||
28 | @@ -71,6 +71,7 @@ static char *SccsId = "nmon " VERSION; | ||
29 | #include <sys/time.h> | ||
30 | #include <sys/socket.h> | ||
31 | #include <sys/wait.h> | ||
32 | +#include <sys/cdefs.h> | ||
33 | |||
34 | /* Windows moved here so they can be cleared when the screen mode changes */ | ||
35 | WINDOW *padwelcome = NULL; | ||
36 | @@ -576,7 +577,6 @@ struct procsinfo { | ||
37 | int isroot = 0; | ||
38 | |||
39 | #include <mntent.h> | ||
40 | -#include <fstab.h> | ||
41 | #include <sys/stat.h> | ||
42 | #include <sys/statfs.h> | ||
43 | #include <net/if.h> | ||
44 | -- | ||
45 | 2.13.3 | ||
46 | |||
diff --git a/meta-oe/recipes-support/nmon/nmon_13g.bb b/meta-oe/recipes-support/nmon/nmon_16g.bb index 1f7518972..e77faa30a 100644 --- a/meta-oe/recipes-support/nmon/nmon_13g.bb +++ b/meta-oe/recipes-support/nmon/nmon_16g.bb | |||
@@ -4,23 +4,25 @@ SECTION = "console/utils" | |||
4 | LICENSE = "GPLv3" | 4 | LICENSE = "GPLv3" |
5 | LIC_FILES_CHKSUM = "file://${WORKDIR}/Documentation.txt;md5=dbb13658cf55d687c4f2ff771a696d4a" | 5 | LIC_FILES_CHKSUM = "file://${WORKDIR}/Documentation.txt;md5=dbb13658cf55d687c4f2ff771a696d4a" |
6 | DEPENDS = "ncurses" | 6 | DEPENDS = "ncurses" |
7 | PR = "r2" | 7 | DEPENDS_append_libc-musl = " bsd-headers" |
8 | 8 | ||
9 | SRC_URI = "${SOURCEFORGE_MIRROR}/nmon/lmon13g.c;name=lmon \ | 9 | SRC_URI = "${SOURCEFORGE_MIRROR}/nmon/lmon${PV}.c;name=lmon \ |
10 | ${SOURCEFORGE_MIRROR}/nmon/Documentation.txt;name=doc \ | 10 | ${SOURCEFORGE_MIRROR}/nmon/Documentation.txt;name=doc \ |
11 | file://0001-lmon16g.c-Adjust-system-headers.patch \ | ||
11 | " | 12 | " |
12 | 13 | SRC_URI[lmon.md5sum] = "246ccfc74d5af55d992601fc4d3d4a72" | |
13 | SRC_URI[lmon.md5sum] = "b1b8e6c0123ad232394991f2d4f40494" | 14 | SRC_URI[lmon.sha256sum] = "da82dd693b503b062854dfe7dbb5d36b347872ab44a4aa05b97e9d577747f688" |
14 | SRC_URI[lmon.sha256sum] = "456ab2a342b31d1a352d0d940af5962fa65a12ae8757ff73e6e73210832ae8b5" | ||
15 | SRC_URI[doc.md5sum] = "dbb13658cf55d687c4f2ff771a696d4a" | 15 | SRC_URI[doc.md5sum] = "dbb13658cf55d687c4f2ff771a696d4a" |
16 | SRC_URI[doc.sha256sum] = "1f7f83afe62a7210be5e83cd24157adb854c14599efe0b377a7ecca933869278" | 16 | SRC_URI[doc.sha256sum] = "1f7f83afe62a7210be5e83cd24157adb854c14599efe0b377a7ecca933869278" |
17 | 17 | ||
18 | CFLAGS += "-D JFS -D GETUSER -Wall -D LARGEMEM" | 18 | CFLAGS += "-D JFS -D GETUSER -Wall -D LARGEMEM" |
19 | LDFLAGS += "-ltinfo -lncursesw" | 19 | LDFLAGS += "-ltinfo -lncursesw -lm" |
20 | ASNEEDED_pn-nmon = "" | 20 | ASNEEDED_pn-nmon = "" |
21 | 21 | ||
22 | S = "${WORKDIR}" | ||
23 | |||
22 | do_compile() { | 24 | do_compile() { |
23 | ${CC} ${CFLAGS} ${LDFLAGS} ${WORKDIR}/lmon13g.c -o nmon | 25 | ${CC} ${CFLAGS} ${LDFLAGS} lmon${PV}.c -o nmon |
24 | } | 26 | } |
25 | 27 | ||
26 | do_install() { | 28 | do_install() { |