mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
work arounds for: oe-core/meta/recipes-bsp/lrzsz/lrzsz_0.12.20.bb:do_compile oe-core/meta/recipes-connectivity/connman/connman-gnome_0.7.bb:do_compile oe-core/meta/recipes-support/libfm/libfm_1.3.2.bb:do_compile http://errors.yoctoproject.org/Errors/Build/183127/ More fixes on ML (especially for -native with gcc-14 on host) cdrtools: https://lists.openembedded.org/g/openembedded-core/message/198899 syslinux: https://lists.openembedded.org/g/openembedded-core/message/198901 (From OE-Core rev: 924dc9bd3b1b21a60ebb117b0abf81d2650aedd0) Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 856ffc7d0893c1dc549baf401899947f70d31896) Signed-off-by: Steve Sakoman <steve@sakoman.com>
55 lines
2.2 KiB
BlitzBasic
55 lines
2.2 KiB
BlitzBasic
SUMMARY = "Tools for zmodem/xmodem/ymodem file transfer"
|
|
DESCRIPTION = "Lrzsz is a cosmetically modified zmodem/ymodem/xmodem package built from \
|
|
the public-domain version of Chuck Forsberg's rzsz package. \
|
|
These programs use error correcting protocols ({z,x,y}modem) to send (sz, sx, sb) and \
|
|
receive (rz, rx, rb) files over a dial-in serial port from a variety of programs \
|
|
running under various operating systems. "
|
|
HOMEPAGE = "http://www.ohse.de/uwe/software/lrzsz.html"
|
|
LICENSE = "GPL-2.0-or-later"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3 \
|
|
file://src/lrz.c;beginline=1;endline=10;md5=5276956373ff7d8758837f6399a1045f"
|
|
SECTION = "console/network"
|
|
DEPENDS = ""
|
|
|
|
SRC_URI = "http://www.ohse.de/uwe/releases/lrzsz-${PV}.tar.gz \
|
|
file://autotools-update.patch \
|
|
file://autotools.patch \
|
|
file://makefile.patch \
|
|
file://lrzsz-check-locale.h.patch \
|
|
file://cve-2018-10195.patch \
|
|
file://include.patch \
|
|
file://0001-Fix-cross-compilation-using-autoconf-detected-AR.patch \
|
|
"
|
|
|
|
SRC_URI[md5sum] = "b5ce6a74abc9b9eb2af94dffdfd372a4"
|
|
SRC_URI[sha256sum] = "c28b36b14bddb014d9e9c97c52459852f97bd405f89113f30bee45ed92728ff1"
|
|
|
|
UPSTREAM_CHECK_URI = "http://ohse.de/uwe/software/lrzsz.html"
|
|
|
|
inherit autotools gettext
|
|
|
|
do_install() {
|
|
install -d ${D}${bindir}/
|
|
install -m 0755 src/lrz src/lsz ${D}${bindir}/
|
|
}
|
|
|
|
inherit update-alternatives
|
|
|
|
ALTERNATIVE_PRIORITY = "100"
|
|
|
|
ALTERNATIVE:${PN} = "rz rx rb sz sx sb"
|
|
|
|
ALTERNATIVE_TARGET[rz] = "${bindir}/lrz"
|
|
ALTERNATIVE_TARGET[rx] = "${bindir}/lrz"
|
|
ALTERNATIVE_TARGET[rb] = "${bindir}/lrz"
|
|
|
|
ALTERNATIVE_TARGET[sz] = "${bindir}/lsz"
|
|
ALTERNATIVE_TARGET[sx] = "${bindir}/lsz"
|
|
ALTERNATIVE_TARGET[sb] = "${bindir}/lsz"
|
|
|
|
# http://errors.yoctoproject.org/Errors/Details/766929/
|
|
# lrzsz-0.12.20/src/tcp.c:75:56: error: passing argument 3 of 'getsockname' from incompatible pointer type [-Wincompatible-pointer-types]
|
|
# lrzsz-0.12.20/src/tcp.c:83:52: error: passing argument 3 of 'getsockname' from incompatible pointer type [-Wincompatible-pointer-types]
|
|
# lrzsz-0.12.20/src/tcp.c:103:51: error: passing argument 3 of 'accept' from incompatible pointer type [-Wincompatible-pointer-types]
|
|
CFLAGS += "-Wno-error=incompatible-pointer-types"
|