From 821f3f071c349f3dc55058ec18f86218439815c8 Mon Sep 17 00:00:00 2001 From: TeleostNaCl Dai Date: Sun, 16 Nov 2025 12:05:11 +0800 Subject: [PATCH] tcpreplay: add libbpf dependency Since compiling tcpbridge requires linking libbpf.so.1, compiling tcpbridge first may result in compilation failure, like: Package tcpbridge is missing dependencies for the following libraries: libbpf.so.1 The simplest way to solve it is to add libbpf dependency in Makefile Signed-off-by: TeleostNaCl Dai --- net/tcpreplay/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net/tcpreplay/Makefile b/net/tcpreplay/Makefile index 415365ae92..b394769a0c 100644 --- a/net/tcpreplay/Makefile +++ b/net/tcpreplay/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=tcpreplay PKG_VERSION:=4.5.2 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=https://github.com/appneta/tcpreplay/releases/download/v$(PKG_VERSION) @@ -35,7 +35,7 @@ define Package/tcpreplay/default CATEGORY:=Network URL:=http://tcpreplay.appneta.com/ MAINTAINER:=Alexandru Ardelean - DEPENDS:=+librt +libpcap +libdnet +USE_MUSL:musl-fts + DEPENDS:=+librt +libpcap +libdnet +libbpf +USE_MUSL:musl-fts endef define Package/tcpbridge