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

build: fix --without-ssl compile time error #3825

Closed
wants to merge 1 commit into from

Commits on Nov 14, 2015

  1. build: fix --without-ssl compile time error

    Fix the following build error by putting #if guards around the
    variables:
    
        ../src/node.cc: In function 'void node::ParseArgs(int*,
        const char**, int*, const char***, int*, const char***)':
        ../src/node.cc:3037:7: error: 'SSL2_ENABLE' was not declared
        in this scope
               SSL2_ENABLE = true;
               ^
        ../src/node.cc:3039:7: error: 'SSL3_ENABLE' was not declared
        in this scope
               SSL3_ENABLE = true;
    
    Fixes: nodejs/node-v0.x-archive#8645
    bnoordhuis committed Nov 14, 2015
    Configuration menu
    Copy the full SHA
    d283f60 View commit details
    Browse the repository at this point in the history