diff options
| author | Jörg Sommer <joerg.sommer@navimatix.de> | 2026-06-14 11:51:19 +0200 |
|---|---|---|
| committer | Khem Raj <khem.raj@oss.qualcomm.com> | 2026-06-14 23:13:33 -0700 |
| commit | 59fbd30bd923b5d6d48bdb380b75d9225f4597c4 (patch) | |
| tree | 7e1475e8d81da2b753f355f9e8924d662f0edb46 | |
| parent | 97372b7fe7810c7b110ffe199dae1d78fc343725 (diff) | |
| download | meta-openembedded-59fbd30bd923b5d6d48bdb380b75d9225f4597c4.tar.gz | |
multitail: New "tail for multiple files in parallel" v7.1.5
The build fails with
../sources/multitail-7.1.5/mt.c: In function 'do_color_print':
../sources/multitail-7.1.5/mt.c:712:25: warning: implicit declaration of function 'waddnwstr'; did you mean 'waddnstr'? [-Wimplicit-function-declarat
712 | waddnwstr(win -> win, &wcur, 1);
| ^~~~~~~~~
| waddnstr
I suspect it's due to gcc-16, because in a build environment with gcc-15 it
compiles. Upstream has already set a todo at this code line.
Signed-off-by: Jörg Sommer <joerg.sommer@navimatix.de>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
| -rw-r--r-- | meta-oe/recipes-extended/multitail/multitail_7.1.5.bb | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/meta-oe/recipes-extended/multitail/multitail_7.1.5.bb b/meta-oe/recipes-extended/multitail/multitail_7.1.5.bb new file mode 100644 index 0000000000..0f441c6930 --- /dev/null +++ b/meta-oe/recipes-extended/multitail/multitail_7.1.5.bb | |||
| @@ -0,0 +1,37 @@ | |||
| 1 | SUMMARY = "tail for multiple files in parallel" | ||
| 2 | DESCRIPTION = "\ | ||
| 3 | MultiTail allows you to monitor logfiles and command output in multiple \ | ||
| 4 | windows in a terminal, colorize, filter and merge \ | ||
| 5 | " | ||
| 6 | HOMEPAGE = "https://vanheusden.com/multitail/screenshots.html" | ||
| 7 | BUGTRACKER = "https://github.com/folkertvanheusden/multitail/issues" | ||
| 8 | SECTION = "console/utils" | ||
| 9 | |||
| 10 | LICENSE = "MIT" | ||
| 11 | LIC_FILES_CHKSUM = "file://LICENSE;md5=e4d13123d158ecd203b5b9ffe50a0c76" | ||
| 12 | |||
| 13 | SRC_URI = "git://github.com/folkertvanheusden/multitail.git;protocol=https;branch=master;tag=${PV}" | ||
| 14 | SRCREV = "247e7ff727d9a8bed410f1bbf86f247c059546d9" | ||
| 15 | |||
| 16 | DEPENDS = "ncurses" | ||
| 17 | |||
| 18 | inherit cmake | ||
| 19 | |||
| 20 | # Work around the implicit declaration of function 'waddnwstr' in mt.c:712 | ||
| 21 | CFLAGS += "-Wno-error=implicit-function-declaration" | ||
| 22 | |||
| 23 | EXTRA_OECMAKE += "\ | ||
| 24 | -DCOMPILER_WARNINGS_ARE_ERRORS=OFF \ | ||
| 25 | -DUSE_CPPCHECK=OFF \ | ||
| 26 | " | ||
| 27 | |||
| 28 | PACKAGECONFIG ?= "utf8" | ||
| 29 | |||
| 30 | PACKAGECONFIG[utf8] = "-DUTF8_SUPPORT=ON,-DUTF8_SUPPORT=OFF" | ||
| 31 | |||
| 32 | do_install:append() { | ||
| 33 | mv -v ${D}${prefix}/etc ${D}${sysconfdir} | ||
| 34 | mv -v ${D}${sysconfdir}/multitail.conf.new ${D}${sysconfdir}/multitail.conf | ||
| 35 | # These are example files to illustrate input conversion | ||
| 36 | mv -v ${D}${sysconfdir}/multitail/conversion-scripts ${D}${docdir}/multitail-${PV} | ||
| 37 | } | ||
