mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-13 07:25:16 +00:00
* A strict error handling for function parameters in gcc-15 causes errors.
output.c:9:6: error: conflicting types for 'initcolors'; have 'void(tOutput *)' {aka 'void(struct _tOutput *)'}
9 | void initcolors(tOutput* output)
| ^~~~~~~~~~
In file included from output.c:7:
output.h:10:6: note: previous declaration of 'initcolors' with type 'void(void)'
10 | void initcolors();
| ^~~~~~~~~~
Signed-off-by: mark.yang <mark.yang@lge.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
28 lines
732 B
BlitzBasic
28 lines
732 B
BlitzBasic
SUMMARY = "dhex is a hex editor that includes a diff mode"
|
|
SECTION = "console/utils"
|
|
HOMEPAGE = "http://www.dettus.net/dhex/"
|
|
|
|
DEPENDS = "ncurses"
|
|
|
|
LICENSE = "GPL-2.0-or-later"
|
|
LIC_FILES_CHKSUM = "file://README.txt;beginline=229;endline=241;md5=6f252a421b65bcecf624382ba3c899da"
|
|
|
|
SRC_URI = " \
|
|
http://www.dettus.net/dhex/dhex_0.69.tar.gz \
|
|
file://0001-Fix-function-declaration-conflict-error-with-empty-p.patch \
|
|
"
|
|
SRC_URI[sha256sum] = "52730bcd1cf16bd4dae0de42531be9a4057535ec61ca38c0804eb8246ea6c41b"
|
|
|
|
S = "${WORKDIR}/dhex_${PV}"
|
|
|
|
EXTRA_OEMAKE += "'CC=${CC}' 'LDFLAGS=${LDFLAGS}' 'CPPFLAGS=${CPPFLAGS}'"
|
|
|
|
do_compile() {
|
|
oe_runmake
|
|
}
|
|
|
|
do_install() {
|
|
install -m 0755 -d ${D}${bindir}
|
|
install -m 0755 ${S}/dhex ${D}${bindir}/
|
|
}
|