diff --git a/userspace/falco/app/actions/print_support.cpp b/userspace/falco/app/actions/print_support.cpp index 0f18d716a78..d31e6189eba 100644 --- a/userspace/falco/app/actions/print_support.cpp +++ b/userspace/falco/app/actions/print_support.cpp @@ -15,7 +15,9 @@ See the License for the specific language governing permissions and limitations under the License. */ +#ifndef _WIN32 #include +#endif #include "actions.h" #include "../../versions_info.h" @@ -34,6 +36,7 @@ static std::string read_file(const std::string &filename) falco::app::run_result falco::app::actions::print_support(falco::app::state& s) { +#ifndef _WIN32 if(s.options.print_support) { nlohmann::json support; @@ -70,6 +73,7 @@ falco::app::run_result falco::app::actions::print_support(falco::app::state& s) return run_result::exit(); } +#endif return run_result::ok(); }