summaryrefslogtreecommitdiff
path: root/src/node_metadata.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/node_metadata.h')
-rw-r--r--src/node_metadata.h11
1 files changed, 3 insertions, 8 deletions
diff --git a/src/node_metadata.h b/src/node_metadata.h
index 0f32fcf21d..9f383be5f8 100644
--- a/src/node_metadata.h
+++ b/src/node_metadata.h
@@ -15,13 +15,9 @@ namespace node {
V(ares) \
V(modules) \
V(nghttp2) \
- V(napi)
-
-#ifdef NODE_EXPERIMENTAL_HTTP
-#define NODE_VERSIONS_KEY_HTTP(V) V(llhttp)
-#else /* !NODE_EXPERIMENTAL_HTTP */
-#define NODE_VERSIONS_KEY_HTTP(V) V(http_parser)
-#endif /* NODE_EXPERIMENTAL_HTTP */
+ V(napi) \
+ V(llhttp) \
+ V(http_parser) \
#if HAVE_OPENSSL
#define NODE_VERSIONS_KEY_CRYPTO(V) V(openssl)
@@ -31,7 +27,6 @@ namespace node {
#define NODE_VERSIONS_KEYS(V) \
NODE_VERSIONS_KEYS_BASE(V) \
- NODE_VERSIONS_KEY_HTTP(V) \
NODE_VERSIONS_KEY_CRYPTO(V)
class Metadata {