diff options
author | Stijn Tintel <stijn@linux-ipv6.be> | 2018-10-07 13:20:11 +0300 |
---|---|---|
committer | Stijn Tintel <stijn@linux-ipv6.be> | 2018-10-07 13:21:51 +0300 |
commit | bf47fe3d2776119aa9c7ba823423238f063922ea (patch) | |
tree | f76a93bf005a93e0879cac9301f1a4cd7d51763f /libs/libpfring | |
parent | cab093b7daac86581b46f9464f7469313a0fe438 (diff) |
libpfring: disable libnl
When libnl is built, libpfring links against it. This causes the build
to fail due to a missing dependency. Disable libnl to avoid this.
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
Diffstat (limited to 'libs/libpfring')
-rw-r--r-- | libs/libpfring/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/libpfring/Makefile b/libs/libpfring/Makefile index 8c2f545ef..e7bedbddb 100644 --- a/libs/libpfring/Makefile +++ b/libs/libpfring/Makefile @@ -56,7 +56,8 @@ define Build/InstallDev endef CONFIGURE_VARS += \ - MACHINE="$(ARCH)" + MACHINE="$(ARCH)" \ + ac_cv_lib_nl_3_nl_socket_alloc=no define Package/libpfring/install $(INSTALL_DIR) $(1)/usr/lib/ |