From: Dmitry Kozlyuk Date: Mon, 28 Sep 2020 21:50:52 +0000 (+0300) Subject: examples/cmdline: build on Windows X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=4fa3a084beb664103ba02eb22fd4ae68607d6ce2;p=dpdk.git examples/cmdline: build on Windows Enable cmdline sample application as all dependencies are met. Signed-off-by: Dmitry Kozlyuk Acked-by: Olivier Matz --- diff --git a/examples/cmdline/commands.c b/examples/cmdline/commands.c index 0e2232f034..f43eacfbad 100644 --- a/examples/cmdline/commands.c +++ b/examples/cmdline/commands.c @@ -11,7 +11,6 @@ #include #include #include -#include #ifdef RTE_EXEC_ENV_FREEBSD #include #endif diff --git a/examples/cmdline/main.c b/examples/cmdline/main.c index f2f2e5a2f4..bb79542452 100644 --- a/examples/cmdline/main.c +++ b/examples/cmdline/main.c @@ -8,7 +8,6 @@ #include #include #include -#include #include #include diff --git a/examples/meson.build b/examples/meson.build index 245d985756..414ec55cc9 100644 --- a/examples/meson.build +++ b/examples/meson.build @@ -81,9 +81,6 @@ foreach example: examples ext_deps = [execinfo] includes = [include_directories(example)] deps = ['eal', 'mempool', 'net', 'mbuf', 'ethdev', 'cmdline'] - if is_windows - deps = ['eal'] # only supported lib on Windows currently - endif subdir(example) if build