From cec3e0fd96650a133c6b0d60eb2b52d1aa7cd742 Mon Sep 17 00:00:00 2001 From: Aviv Daum Date: Mon, 23 Mar 2026 23:37:22 +1300 Subject: [PATCH] lldpd: fix xml PACKAGECONFIG dependency The xml PACKAGECONFIG entry uses libxm2, which is a typo and not a valid dependency in OE. Replace it with libxml2 so enabling PACKAGECONFIG:xml pulls in the correct provider. Signed-off-by: Aviv Daum Signed-off-by: Ankur Tyagi Signed-off-by: Khem Raj --- meta-networking/recipes-daemons/lldpd/lldpd_1.0.20.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-networking/recipes-daemons/lldpd/lldpd_1.0.20.bb b/meta-networking/recipes-daemons/lldpd/lldpd_1.0.20.bb index 044f1e0745..b7224d0f3d 100644 --- a/meta-networking/recipes-daemons/lldpd/lldpd_1.0.20.bb +++ b/meta-networking/recipes-daemons/lldpd/lldpd_1.0.20.bb @@ -29,7 +29,7 @@ EXTRA_OECONF += "--without-embedded-libevent \ " PACKAGECONFIG ??= "cdp fdp edp sonmp lldpmed dot1 dot3" -PACKAGECONFIG[xml] = "--with-xml,--without-xml,libxm2" +PACKAGECONFIG[xml] = "--with-xml,--without-xml,libxml2" PACKAGECONFIG[snmp] = "--with-snmp,--without-snmp,net-snmp" PACKAGECONFIG[readline] = "--with-readline,--without-readline,readline" PACKAGECONFIG[seccomp] = "--with-seccomp,--without-seccomp,libseccomp"