From e51216d722ca43b2db7f79c0c23e917f5b85bd3d Mon Sep 17 00:00:00 2001 From: Gibson Fahnestock Date: Thu, 2 Nov 2017 17:55:43 +0000 Subject: [PATCH] src: add NODE_VERSION_IS_LTS to node_version.h This is defined in LTS releases, but should really be defined in master too. PR-URL: https://github.com/nodejs/node/pull/16697 Reviewed-By: Colin Ihrig --- src/node_version.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/node_version.h b/src/node_version.h index 6f0f642aa41..608d0a33b10 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -26,6 +26,9 @@ #define NODE_MINOR_VERSION 0 #define NODE_PATCH_VERSION 0 +#define NODE_VERSION_IS_LTS 0 +#define NODE_VERSION_LTS_CODENAME "" + #define NODE_VERSION_IS_RELEASE 0 #ifndef NODE_STRINGIFY