The inclusion of config.h is, I believe, not meant to search the system include path. This (nbd-debug.h) is how config.h gets included into nbd-server.c.
Signed-off-by: Alex Bligh <[email protected]> --- nbd-debug.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nbd-debug.h b/nbd-debug.h index ec8dfd2..f2b1af5 100644 --- a/nbd-debug.h +++ b/nbd-debug.h @@ -1,6 +1,6 @@ #ifndef NBD_DEBUG_H #define NBD_DEBUG_H -#include <config.h> +#include "config.h" /* Debugging macros */ #ifdef DODBG #define DEBUG(...) printf(__VA_ARGS__) -- 1.9.1 ------------------------------------------------------------------------------ Find and fix application performance issues faster with Applications Manager Applications Manager provides deep performance insights into multiple tiers of your business applications. It resolves application problems quickly and reduces your MTTR. Get your free trial! http://pubads.g.doubleclick.net/ gampad/clk?id=1444514301&iu=/ca-pub-7940484522588532 _______________________________________________ Nbd-general mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/nbd-general
