From 469f091d4d034d75850c13cce74daf53dfef0c08 Mon Sep 17 00:00:00 2001 From: dmiller Date: Mon, 12 Sep 2016 19:13:30 +0000 Subject: [PATCH] Protect inclusion of nmap_config.h, which is not present on Windows --- nse_utility.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nse_utility.h b/nse_utility.h index 13e33505c..f8a7c7a61 100644 --- a/nse_utility.h +++ b/nse_utility.h @@ -4,7 +4,10 @@ class Port; class Target; +#ifdef HAVE_CONFIG_H #include "nmap_config.h" +#endif + #if HAVE_STDINT_H #include #endif