diff options
author | Christian Marangi <ansuelsmth@gmail.com> | 2024-03-19 11:40:36 +0100 |
---|---|---|
committer | Christian Marangi <ansuelsmth@gmail.com> | 2024-03-19 11:40:36 +0100 |
commit | c3a50a9fac8f9d8665f8b012abd85bb9e461e865 (patch) | |
tree | 3ce7eb1045953cd3dab71bfc8e005b53cc58007a /libs/libpfring/Makefile | |
parent | 44e613bfc4054ec61c6b6e2d63f4839013388fd6 (diff) |
libpfring: backport patch fixing compilation error for sa_data
Backport patch fixing compilation error for sa_data not well defined.
This is triggered only on platform that makes use of fortify string and
cause compilation error due to the fact that sa_data is not well defined
and his size is arbitrary.
Patch has been accepted in the PF_RING project and this is just a
backport.
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
Diffstat (limited to 'libs/libpfring/Makefile')
-rw-r--r-- | libs/libpfring/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/libpfring/Makefile b/libs/libpfring/Makefile index 0ef774b79..1083d6ec7 100644 --- a/libs/libpfring/Makefile +++ b/libs/libpfring/Makefile @@ -10,7 +10,7 @@ include $(INCLUDE_DIR)/kernel.mk PKG_NAME:=libpfring PKG_VERSION:=8.4.0 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://codeload.github.com/ntop/PF_RING/tar.gz/$(PKG_VERSION)? |