Browse Source

tcpreplay: avoid host lib leakage

On hosts that have pcapnav-config installed, there is host lib leakage.
From config.log:

LNAVLIB='-L/usr/lib64 -lpcapnav -lpcap'
LNAV_CFLAGS='-I/usr/include'

Fix this by disabling pcapnav-config, which isn't available anyway.

Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
lilik-openwrt-22.03
Stijn Tintel 3 years ago
parent
commit
e4b8fec79c
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      net/tcpreplay/Makefile

+ 2
- 1
net/tcpreplay/Makefile View File

@ -131,7 +131,8 @@ CONFIGURE_VARS += \
ac_cv_lib_nl_nl_cache_alloc=no \
ac_cv_lib_nl_genl_3_genl_connect=no \
ac_cv_lib_nl_3_nl_cache_alloc=no \
ac_cv_lib_dbus_1_dbus_malloc=no
ac_cv_lib_dbus_1_dbus_malloc=no \
ac_cv_path_pcncfg=no
CONFIGURE_ARGS += \
--enable-force-pf \


Loading…
Cancel
Save