From 3d6440cf2a02325d906d1c8f271497ea4aa3c80d Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Mon, 2 Mar 2015 23:18:44 +0100 Subject: [PATCH] src: fix --without-ssl build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 PR-URL: https://github.com/iojs/io.js/pull/1027 Reviewed-By: Johan Bergström --- src/stream_base.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/src/stream_base.cc b/src/stream_base.cc index fb6f5322f6dafc..bd963bc3433b93 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"