Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

src: include node_internals.h in node_metadata.cc #24933

Closed
wants to merge 1 commit into from

Commits on Dec 10, 2018

  1. src: include node_internals.h in node_metadata.cc

    Currently, if configured --without-ssl the following compiler error will
    be generated:
    ../src/node_metadata.cc:29:12:
    error: use of undeclared identifier 'llhttp_version'
      llhttp = llhttp_version;
               ^
    ../src/node_metadata.cc:30:17:
    error: use of undeclared identifier 'http_parser_version'
      http_parser = http_parser_version;
    
    This commit includes the node_internals.h header so that
    llhttp_version and http_parser_versions are always available.
    danbev committed Dec 10, 2018
    Configuration menu
    Copy the full SHA
    d80b7f6 View commit details
    Browse the repository at this point in the history