Skip to content

Commit d772588

Browse files
fix libpcap build to omit external libs (#172)
1 parent 3111e6f commit d772588

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

build_libicsneo.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,17 @@ def _build_libpcap():
7878
subprocess.check_output([
7979
f"{LIBPCAP_SOURCE}/configure",
8080
"--disable-shared",
81+
"--disable-usb",
82+
"--disable-netmap",
83+
"--disable-bluetooth",
84+
"--disable-dbus",
85+
"--disable-rdma",
86+
"--without-dag",
87+
"--without-septel",
88+
"--without-snf",
89+
"--without-turbocap",
90+
"--without-dpdk",
91+
"--without-libnl",
8192
f"--prefix={LIBPCAP_INSTALL}",
8293
], cwd=LIBPCAP_BUILD, env=env)
8394

0 commit comments

Comments
 (0)