ktls-utils: Fix build with musl

CMSG_NXTHDR results in different signed-ness for cmsghdr
on musl.

Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
Khem Raj 2025-12-09 15:45:45 -08:00
parent d198cdc0d4
commit 07e4d9797b
No known key found for this signature in database
GPG Key ID: BB053355919D3314

View File

@ -19,3 +19,5 @@ PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'systemd',
PACKAGECONFIG[systemd] = "--with-systemd,,systemd"
SYSTEMD_SERVICE:${PN} = "tlshd.service"
# ../../../sources/ktls-utils-1.3.0/src/tlshd/quic.c:515:58: error: comparison of integers of different signs: 'unsigned long' and 'long' [-Werror,-Wsign-compare]
CFLAGS:append:libc-musl:toolchain-clang = " -Wno-error=sign-compare"