mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-05-07 17:19:23 +00:00
0d39d65c0e
Fix build on 32-bit with 64-bit time_t Fix build with C23 on For full details: https://github.com/systemd/systemd-netlogd/releases/tag/v1.4.5 Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
30 lines
1.0 KiB
BlitzBasic
30 lines
1.0 KiB
BlitzBasic
SUMMARY = "Forwards messages from the journal to other hosts over the network using the Syslog Protocol"
|
|
|
|
LICENSE = "LGPL-2.1-or-later"
|
|
LIC_FILES_CHKSUM = "file://LICENSE.LGPL2.1;md5=4fbd65380cdd255951079008b364516c"
|
|
|
|
SRC_URI = "git://github.com/systemd/systemd-netlogd.git;protocol=https;branch=main;tag=v${PV} \
|
|
file://0001-Fix-const-correctness-for-pointer-variables-to-refer.patch \
|
|
"
|
|
SRCREV = "20534091417686d1185acb3f29e93944d8663c4b"
|
|
|
|
inherit meson systemd pkgconfig useradd features_check
|
|
|
|
REQUIRED_DISTRO_FEATURES = "systemd"
|
|
COMPATIBLE_HOST:libc-musl = "null"
|
|
|
|
|
|
DEPENDS += "systemd"
|
|
DEPENDS += "openssl"
|
|
DEPENDS += "gperf-native"
|
|
DEPENDS += "python3-sphinx-native"
|
|
|
|
# systemd-netlogd uses prefix and sysconfdir in a weird way.
|
|
EXTRA_OEMESON += "--prefix ${libdir}/systemd --sysconfdir ${sysconfdir}/systemd"
|
|
|
|
FILES:${PN} += "${libdir}"
|
|
|
|
USERADD_PACKAGES = "${PN}"
|
|
GROUPADD_PARAM:${PN} = "-r systemd-journal"
|
|
USERADD_PARAM:${PN} = "--system -d / -M --shell /sbin/nologin -g systemd-journal systemd-journal-netlog"
|