summaryrefslogtreecommitdiff
path: root/src/stream_base.cc
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2015-03-02 23:18:44 +0100
committerBen Noordhuis <info@bnoordhuis.nl>2015-03-03 00:17:27 +0100
commit3d6440cf2a02325d906d1c8f271497ea4aa3c80d (patch)
tree412a773d58967c19a8523dba0065d489882dcf49 /src/stream_base.cc
parent08e89b1880447db52e04a8873a92bc29454fcc34 (diff)
downloadandroid-node-v8-3d6440cf2a02325d906d1c8f271497ea4aa3c80d.tar.gz
android-node-v8-3d6440cf2a02325d906d1c8f271497ea4aa3c80d.tar.bz2
android-node-v8-3d6440cf2a02325d906d1c8f271497ea4aa3c80d.zip
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>
Diffstat (limited to 'src/stream_base.cc')
-rw-r--r--src/stream_base.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/stream_base.cc b/src/stream_base.cc
index fb6f5322f6..bd963bc343 100644
--- a/src/stream_base.cc
+++ b/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"