tcpreplay: Fix builds - musl compatibility
authorTed Hess <redacted>
Sun, 7 Aug 2016 20:14:09 +0000 (16:14 -0400)
committerTed Hess <redacted>
Sun, 7 Aug 2016 20:14:09 +0000 (16:14 -0400)
Signed-off-by: Ted Hess <redacted>
net/tcpreplay/Makefile
net/tcpreplay/patches/010-musl_compatibility.patch [new file with mode: 0644]

index a0c9710e363648260da71eae16b538c9003a067e..627abc5fd24ca0451d7f2cef0a48798fabbe6d1b 100644 (file)
@@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
 
 PKG_NAME:=tcpreplay
 PKG_VERSION:=4.1.1
-PKG_RELEASE:=1
+PKG_RELEASE:=2
 
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
 PKG_SOURCE_URL:=https://github.com/appneta/tcpreplay/releases/download/v$(PKG_VERSION)
diff --git a/net/tcpreplay/patches/010-musl_compatibility.patch b/net/tcpreplay/patches/010-musl_compatibility.patch
new file mode 100644 (file)
index 0000000..5b2735e
--- /dev/null
@@ -0,0 +1,31 @@
+--- a/src/common/fakepoll.h
++++ b/src/common/fakepoll.h
+@@ -40,11 +40,11 @@
+ #define POLL_NO_WARN 
+ #define SYS_POLL_NO_WARN
+-#ifdef HAVE_SYS_POLL_H
+-#include <sys/poll.h>
+-#define  __FAKEPOLL_H
+-#elif HAVE_POLL_H
++#ifdef HAVE_POLL_H
+ #include <poll.h>
++#define  __FAKEPOLL_H
++#elif HAVE_SYS_POLL_H
++#include <sys/poll.h>
+ #define __FAKEPOLL_H
+ #endif
+--- a/src/common/sendpacket.c
++++ b/src/common/sendpacket.c
+@@ -148,10 +148,6 @@
+ #include "txring.h"
+ #endif
+-#ifndef __GLIBC__
+-typedef int socklen_t;
+-#endif
+-
+ static sendpacket_t *sendpacket_open_pf(const char *, char *);
+ static struct tcpr_ether_addr *sendpacket_get_hwaddr_pf(sendpacket_t *);
+ static int get_iface_index(int fd, const char *device, char *);
git clone https://git.99rst.org/PROJECT