Files
tqma6-yocto-mirror/sources/meta-openembedded/meta-oe/recipes-bsp/irda-utils/irda-utils-0.9.18/musl.patch
Siggi (OpenClaw Agent) 16accb6b24 Complete Yocto mirror with license table for TQMa6UL (2038-compliance)
- 264 license table entries with exact download URLs (224/264 resolved)
- Complete sources/ directory with all BitBake recipes
- Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl)
- Full traceability for Softwarefreigabeantrag
- GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4
- License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
2026-03-01 21:14:11 +00:00

30 lines
1012 B
Diff

Replace use of <net/if_packet.h> with <linux/if_packet.h>.
kernel headers <linux/if_packet.h> already provides the
needed definitions, moreover not all libc implementations
provide if_packet.h e.g. musl
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Upstream-Status: Pending
Index: irda-utils-0.9.18/irdaping/irdaping.c
===================================================================
--- irda-utils-0.9.18.orig/irdaping/irdaping.c
+++ irda-utils-0.9.18/irdaping/irdaping.c
@@ -33,7 +33,6 @@
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <net/if.h> /* For struct ifreq */
-#include <net/if_packet.h> /* For struct sockaddr_pkt */
#include <net/if_arp.h> /* For ARPHRD_IRDA */
#include <netinet/if_ether.h> /* For ETH_P_ALL */
#include <netinet/in.h> /* For htons */
@@ -46,6 +45,7 @@
#include <asm/byteorder.h> /* __cpu_to_le32 and co. */
#include <linux/types.h> /* For __u8 and co. */
+#include <linux/if_packet.h> /* For struct sockaddr_pkt */
#include <irda.h>
#ifndef AF_IRDA