diff options
author | Rosen Penev <rosenp@gmail.com> | 2020-08-15 15:32:39 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-15 15:32:39 -0700 |
commit | d47ac3eb4075a126c630b415fb3dc6a999e2b213 (patch) | |
tree | 2e3b635ac3fb34e06b5aa7b9d4882cd043500e81 /net | |
parent | cae992699bdd9b890d19d6fdab1e9d8418a93682 (diff) | |
parent | 42c5bc9f9ac737044cf875e9365303ca39ce3f79 (diff) |
Merge pull request #13108 from neheb/nets
netsniff-ng: add missing header
Diffstat (limited to 'net')
-rw-r--r-- | net/netsniff-ng/Makefile | 2 | ||||
-rw-r--r-- | net/netsniff-ng/patches/010-uclibc.patch | 10 |
2 files changed, 11 insertions, 1 deletions
diff --git a/net/netsniff-ng/Makefile b/net/netsniff-ng/Makefile index 0a7a6543b..46eb0fdb3 100644 --- a/net/netsniff-ng/Makefile +++ b/net/netsniff-ng/Makefile @@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=netsniff-ng PKG_VERSION:=0.6.7 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://codeload.github.com/netsniff-ng/netsniff-ng/tar.gz/v$(PKG_VERSION)? diff --git a/net/netsniff-ng/patches/010-uclibc.patch b/net/netsniff-ng/patches/010-uclibc.patch new file mode 100644 index 000000000..89cdef5ab --- /dev/null +++ b/net/netsniff-ng/patches/010-uclibc.patch @@ -0,0 +1,10 @@ +--- a/cookie.c ++++ b/cookie.c +@@ -2,6 +2,7 @@ + #include <stdio.h> + #include <string.h> + #include <syslog.h> ++#include <sys/types.h> + + #include "cookie.h" + |