From d87ae24dfe148e8bd524c57cfd2c9fe0d3dfce93 Mon Sep 17 00:00:00 2001 From: Fedor Indutny Date: Tue, 23 Sep 2014 16:49:14 +0400 Subject: [PATCH] hdr: always define NODE_WANT_INTERNALS Otherwise the warning could be printed on some systems. fix #8419 --- src/node.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node.h b/src/node.h index 199aadfacaf..7b18512531d 100644 --- a/src/node.h +++ b/src/node.h @@ -66,7 +66,7 @@ #include "node_object_wrap.h" -#if NODE_WANT_INTERNALS +#if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS # include "node_internals.h" #endif