Skip to content

Commit

Permalink
src: fix --without-ssl build
Browse files Browse the repository at this point in the history
Don't include tls_wrap.h in stream_base.cc.  It's not used and it breaks
the build when --without-ssl is passed to configure.

Fixes the following build error:

    In file included from ../src/tls_wrap.h:5:0,
                     from ../src/stream_base.cc:10:
    ../src/node_crypto.h:20:25: fatal error: openssl/ssl.h:
    No such file or directory
     #include <openssl/ssl.h>

PR-URL: #1027
Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
  • Loading branch information
bnoordhuis committed Mar 2, 2015
1 parent 08e89b1 commit 3d6440c
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/stream_base.cc
Expand Up @@ -7,7 +7,6 @@
#include "env-inl.h"
#include "js_stream.h"
#include "string_bytes.h"
#include "tls_wrap.h"
#include "util.h"
#include "util-inl.h"
#include "v8.h"
Expand Down

0 comments on commit 3d6440c

Please sign in to comment.