mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
Update declarations to allow building with gcc-15 with C23 std being default now. Fixes: error: conflicting types for 'xdr_opaque_auth (From OE-Core rev: 65036ab0a519c14338fb26ac8162d159d965da2b) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
36 lines
1.4 KiB
BlitzBasic
36 lines
1.4 KiB
BlitzBasic
SUMMARY = "Transport-Independent RPC library"
|
|
DESCRIPTION = "Libtirpc is a port of Suns Transport-Independent RPC library to Linux"
|
|
SECTION = "libs/network"
|
|
HOMEPAGE = "http://sourceforge.net/projects/libtirpc/"
|
|
BUGTRACKER = "http://sourceforge.net/tracker/?group_id=183075&atid=903784"
|
|
LICENSE = "BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=f835cce8852481e4b2bbbdd23b5e47f3 \
|
|
file://src/netname.c;beginline=1;endline=27;md5=f8a8cd2cb25ac5aa16767364fb0e3c24"
|
|
|
|
PROVIDES = "virtual/librpc"
|
|
|
|
SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BP}.tar.bz2 \
|
|
file://ipv6.patch \
|
|
file://0001-Update-declarations-to-allow-compile-with-gcc-15.patch \
|
|
file://0002-update-signal-and-key_call-declarations-to-allow-com.patch \
|
|
"
|
|
UPSTREAM_CHECK_URI = "https://sourceforge.net/projects/libtirpc/files/libtirpc/"
|
|
UPSTREAM_CHECK_REGEX = "(?P<pver>\d+(\.\d+)+)/"
|
|
SRC_URI[sha256sum] = "1e0b0c7231c5fa122e06c0609a76723664d068b0dba3b8219b63e6340b347860"
|
|
|
|
CVE_STATUS[CVE-2021-46828] = "fixed-version: fixed in 1.3.3rc1 so not present in 1.3.3"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
PACKAGECONFIG ??= "\
|
|
${@bb.utils.filter('DISTRO_FEATURES', 'ipv6', d)} \
|
|
"
|
|
PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6"
|
|
PACKAGECONFIG[gssapi] = "--enable-gssapi,--disable-gssapi,krb5"
|
|
|
|
do_install:append() {
|
|
test -e ${D}${sysconfdir}/netconfig && chown root:root ${D}${sysconfdir}/netconfig
|
|
}
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|