From: TeleostNaCl Dai Date: Sun, 16 Nov 2025 04:05:11 +0000 (+0800) Subject: tcpreplay: add libbpf dependency X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=821f3f071c349f3dc55058ec18f86218439815c8;p=openwrt-packages.git 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 --- diff --git a/net/tcpreplay/Makefile b/net/tcpreplay/Makefile index 415365ae9..b394769a0 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