irda-utils: Fix header inclusions

Helps compile with musl

(From OE-Core rev: b16f41b43f1955331baf95ea17965332fe4556a2)

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Khem Raj 2016-01-08 08:56:23 +00:00 committed by Richard Purdie
parent a3f9721399
commit c0976fc725
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,29 @@
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

View File

@ -13,6 +13,7 @@ LIC_FILES_CHKSUM = "file://irdadump/COPYING;md5=94d55d512a9ba36caa9b7df079bae19f
SRC_URI = "${SOURCEFORGE_MIRROR}/irda/irda-utils-${PV}.tar.gz \
file://ldflags.patch \
file://musl.patch \
file://init"
SRC_URI[md5sum] = "84dc12aa4c3f61fccb8d8919bf4079bb"