Browse Source

src: fix --without-ssl build

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: https://github.com/iojs/io.js/pull/1027
Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
v1.8.0-commit
Ben Noordhuis 10 years ago
parent
commit
3d6440cf2a
  1. 1
      src/stream_base.cc

1
src/stream_base.cc

@ -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"

Loading…
Cancel
Save