[v12,01/12] lib: pdump is not supported on Windows

Message ID 20211001162705.442298-2-stephen@networkplumber.org (mailing list archive)
State Superseded, archived
Delegated to: Thomas Monjalon
Headers
Series Packet capture framework update |

Checks

Context Check Description
ci/checkpatch success coding style OK

Commit Message

Stephen Hemminger Oct. 1, 2021, 4:26 p.m. UTC
  The current version of the pdump library was building on
Windows, but it was useless since the pdump utility was not being
built and Windows does not have multi-process support.

The new version of pdump with filtering now has dependency
on bpf. But bpf library is not available on Windows.

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
Acked-by: Dmitry Kozlyuk <dmitry.kozliuk@gmail.com>

Cc: Dmitry Kozlyuk <dmitry.kozliuk@gmail.com>
Cc: Narcisa Ana Maria Vasile <navasile@linux.microsoft.com>
Cc: Dmitry Malloy <dmitrym@microsoft.com>
Cc: Pallavi Kadam <pallavi.kadam@intel.com>
---
 lib/meson.build | 1 -
 1 file changed, 1 deletion(-)
  

Patch

diff --git a/lib/meson.build b/lib/meson.build
index 9c4841fe404b..708f4a133cdc 100644
--- a/lib/meson.build
+++ b/lib/meson.build
@@ -84,7 +84,6 @@  if is_windows
             'gro',
             'gso',
             'latencystats',
-            'pdump',
             'stack',
     ] # only supported libraries for windows
 endif