Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2016-05-24 10:54:05 +0300
committerBen Noordhuis <info@bnoordhuis.nl>2016-05-25 10:54:24 +0300
commiteff96d32dc3dce00f6dc60461d43328965cb214f (patch)
tree4d1dd69ddd7eb502d1a8f2f3216b2a3a4546f936 /src/node_root_certs.h
parent54785f59e16179dc66f00f97e13dce40661447bd (diff)
src: add include guards to internal headers
For consistency with the newly added src/base64.h header, check that NODE_WANT_INTERNALS is defined and set in internal headers. PR-URL: https://github.com/nodejs/node/pull/6948 Refs: https://github.com/nodejs/node/pull/6910 Reviewed-By: Fedor Indutny <fedor.indutny@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Trevor Norris <trev.norris@gmail.com>
Diffstat (limited to 'src/node_root_certs.h')
-rw-r--r--src/node_root_certs.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/node_root_certs.h b/src/node_root_certs.h
index 866f75fd36b..f00de758b8f 100644
--- a/src/node_root_certs.h
+++ b/src/node_root_certs.h
@@ -1,3 +1,4 @@
+#if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
/* GlobalSign Root CA */
"-----BEGIN CERTIFICATE-----\n"
@@ -3881,3 +3882,5 @@
"1T2wdKyUpOgOPQB0TKGXa/kNUTyh2Tv0Daupn75OcsqF1NnstTJFGG+rrQIwfcf3aWMvoeGY\n"
"7xMQ0Xk/0f7qO3/eVvSQsRUR2LIiFdAvwyYua/GRspBl9JrmkO5K\n"
"-----END CERTIFICATE-----\n",
+
+#endif // defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS