diff options
author | Stijn Tintel <stijn@linux-ipv6.be> | 2021-08-14 22:45:21 +0300 |
---|---|---|
committer | Stijn Tintel <stijn@linux-ipv6.be> | 2021-08-14 22:50:25 +0300 |
commit | e4b8fec79cd7d2ed092c51aa83683fa5b151ae2a (patch) | |
tree | ebdb4805f6185ae883ee3bcde01952e24a2abde1 /net/tcpreplay | |
parent | 6c784dff2be0ab5d9dafec3973f4c77cc5d4cbf1 (diff) |
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>
Diffstat (limited to 'net/tcpreplay')
-rw-r--r-- | net/tcpreplay/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/tcpreplay/Makefile b/net/tcpreplay/Makefile index 9726af2f1..525c700f6 100644 --- a/net/tcpreplay/Makefile +++ b/net/tcpreplay/Makefile @@ -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 \ |