I try to install node-v0.1.94 on Ubuntu 9.10 x86_64. also I have been
install openssl.but still catch this message. why?
(node.js not compiled with openssl crypto support)
http://gist.github.com/393619
-- You received this message because you are subscribed to the Google Groups "nodejs" group.
To post to this group, send email to nodejs@googlegroups.com.
To unsubscribe from this group, send email to nodejs+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/nodejs?hl=en.
> I try to install node-v0.1.94 on Ubuntu 9.10 x86_64. also I have been
> install openssl.but still catch this message. why?
> (node.js not compiled with openssl crypto support)
> http://gist.github.com/393619
Checking for openssl : not found Checking for function SSL_library_init : not found Checking for header openssl/crypto.h : not found
you're missing
libssl-dev (>= 0.9.8)
-- You received this message because you are subscribed to the Google Groups "nodejs" group.
To post to this group, send email to nodejs@googlegroups.com.
To unsubscribe from this group, send email to nodejs+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/nodejs?hl=en.
Just as an FYI on that. I noticed the exact same issue at first... and
installed libssl-dev. Even after installing it, you still get the "not
found" messages during ./configure on the openssl and SSL_library_init
lines, but the header crypto.h is now found, and compiling via make, and
then running 'make test' will (should) result in no test failures.
On Fri, May 7, 2010 at 10:51 AM, Jérémy Lal <holi...@gmail.com> wrote:
> On 07/05/2010 17:47, nnn wrote:
> > I try to install node-v0.1.94 on Ubuntu 9.10 x86_64. also I have been
> > install openssl.but still catch this message. why?
> > (node.js not compiled with openssl crypto support)
> > http://gist.github.com/393619
> Checking for openssl : not found
> Checking for function SSL_library_init : not found
> Checking for header openssl/crypto.h : not found
> you're missing
> libssl-dev (>= 0.9.8)
> --
> You received this message because you are subscribed to the Google Groups
> "nodejs" group.
> To post to this group, send email to nodejs@googlegroups.com.
> To unsubscribe from this group, send email to
> nodejs+unsubscribe@googlegroups.com<nodejs%2Bunsubscribe@googlegroups.com>
> .
> For more options, visit this group at
> http://groups.google.com/group/nodejs?hl=en.
-- You received this message because you are subscribed to the Google Groups "nodejs" group.
To post to this group, send email to nodejs@googlegroups.com.
To unsubscribe from this group, send email to nodejs+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/nodejs?hl=en.
Checking for header port.h : not found
Checking for header sys/event.h : not found
Checking for function kqueue : not found
Checking for library execinfo : not found
yes, after install libssl-dev, make test has not failure. but ./
configure still show above code. does it matter?
On May 8, 6:14 am, Ryan Gahl <ryan.g...@gmail.com> wrote:
> Just as an FYI on that. I noticed the exact same issue at first... and
> installed libssl-dev. Even after installing it, you still get the "not
> found" messages during ./configure on the openssl and SSL_library_init
> lines, but the header crypto.h is now found, and compiling via make, and
> then running 'make test' will (should) result in no test failures.
> On Fri, May 7, 2010 at 10:51 AM, Jérémy Lal <holi...@gmail.com> wrote:
> > On 07/05/2010 17:47, nnn wrote:
> > > I try to install node-v0.1.94 on Ubuntu 9.10 x86_64. also I have been
> > > install openssl.but still catch this message. why?
> > > (node.js not compiled with openssl crypto support)
> > >http://gist.github.com/393619
> > Checking for openssl : not found
> > Checking for function SSL_library_init : not found
> > Checking for header openssl/crypto.h : not found
> > you're missing
> > libssl-dev (>= 0.9.8)
> > --
> > You received this message because you are subscribed to the Google Groups
> > "nodejs" group.
> > To post to this group, send email to nodejs@googlegroups.com.
> > To unsubscribe from this group, send email to
> > nodejs+unsubscribe@googlegroups.com<nodejs%2Bunsubscribe@googlegroups.com>
> > .
> > For more options, visit this group at
> >http://groups.google.com/group/nodejs?hl=en.
> --
> You received this message because you are subscribed to the Google Groups "nodejs" group.
> To post to this group, send email to nodejs@googlegroups.com.
> To unsubscribe from this group, send email to nodejs+unsubscribe@googlegroups.com.
> For more options, visit this group athttp://groups.google.com/group/nodejs?hl=en.
-- You received this message because you are subscribed to the Google Groups "nodejs" group.
To post to this group, send email to nodejs@googlegroups.com.
To unsubscribe from this group, send email to nodejs+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/nodejs?hl=en.
On Sat, May 8, 2010 at 01:14, nnn <g.zhen.n...@gmail.com> wrote:
> Checking for header port.h : not found
> Checking for header sys/event.h : not found
> Checking for function kqueue : not found
> Checking for library execinfo : not found
> yes, after install libssl-dev, make test has not failure. but ./
> configure still show above code. does it matter?
> On May 8, 6:14 am, Ryan Gahl <ryan.g...@gmail.com> wrote:
>> Just as an FYI on that. I noticed the exact same issue at first... and
>> installed libssl-dev. Even after installing it, you still get the "not
>> found" messages during ./configure on the openssl and SSL_library_init
>> lines, but the header crypto.h is now found, and compiling via make, and
>> then running 'make test' will (should) result in no test failures.
>> On Fri, May 7, 2010 at 10:51 AM, Jérémy Lal <holi...@gmail.com> wrote:
>> > On 07/05/2010 17:47, nnn wrote:
>> > > I try to install node-v0.1.94 on Ubuntu 9.10 x86_64. also I have been
>> > > install openssl.but still catch this message. why?
>> > > (node.js not compiled with openssl crypto support)
>> > >http://gist.github.com/393619
>> > Checking for openssl : not found
>> > Checking for function SSL_library_init : not found
>> > Checking for header openssl/crypto.h : not found
>> > you're missing
>> > libssl-dev (>= 0.9.8)
>> > --
>> > You received this message because you are subscribed to the Google Groups
>> > "nodejs" group.
>> > To post to this group, send email to nodejs@googlegroups.com.
>> > To unsubscribe from this group, send email to
>> > nodejs+unsubscribe@googlegroups.com<nodejs%2Bunsubscribe@googlegroups.com>
>> > .
>> > For more options, visit this group at
>> >http://groups.google.com/group/nodejs?hl=en.
>> --
>> You received this message because you are subscribed to the Google Groups "nodejs" group.
>> To post to this group, send email to nodejs@googlegroups.com.
>> To unsubscribe from this group, send email to nodejs+unsubscribe@googlegroups.com.
>> For more options, visit this group athttp://groups.google.com/group/nodejs?hl=en.
> --
> You received this message because you are subscribed to the Google Groups "nodejs" group.
> To post to this group, send email to nodejs@googlegroups.com.
> To unsubscribe from this group, send email to nodejs+unsubscribe@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/nodejs?hl=en.
-- You received this message because you are subscribed to the Google Groups "nodejs" group.
To post to this group, send email to nodejs@googlegroups.com.
To unsubscribe from this group, send email to nodejs+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/nodejs?hl=en.
what I mean matter is these libraries not found matter.
Checking for header port.h : not found
Checking for header sys/event.h : not found
Checking for function kqueue : not found
Checking for library execinfo : not found
On May 8, 4:47 pm, Isaac Schlueter <i...@izs.me> wrote:
> If you don't have openssl installed, then make test skips over the ssl tests.
> It only matters if you want to do https with node. I recommend
> installing openssl. Crypto is cool :)
> --i
> On Sat, May 8, 2010 at 01:14, nnn <g.zhen.n...@gmail.com> wrote:
> > Checking for header port.h : not found
> > Checking for header sys/event.h : not found
> > Checking for function kqueue : not found
> > Checking for library execinfo : not found
> > yes, after install libssl-dev, make test has not failure. but ./
> > configure still show above code. does it matter?
> > On May 8, 6:14 am, Ryan Gahl <ryan.g...@gmail.com> wrote:
> >> Just as an FYI on that. I noticed the exact same issue at first... and
> >> installed libssl-dev. Even after installing it, you still get the "not
> >> found" messages during ./configure on the openssl and SSL_library_init
> >> lines, but the header crypto.h is now found, and compiling via make, and
> >> then running 'make test' will (should) result in no test failures.
> >> On Fri, May 7, 2010 at 10:51 AM, Jérémy Lal <holi...@gmail.com> wrote:
> >> > On 07/05/2010 17:47, nnn wrote:
> >> > > I try to install node-v0.1.94 on Ubuntu 9.10 x86_64. also I have been
> >> > > install openssl.but still catch this message. why?
> >> > > (node.js not compiled with openssl crypto support)
> >> > >http://gist.github.com/393619
> >> > Checking for openssl : not found
> >> > Checking for function SSL_library_init : not found
> >> > Checking for header openssl/crypto.h : not found
> >> > --
> >> > You received this message because you are subscribed to the Google Groups
> >> > "nodejs" group.
> >> > To post to this group, send email to nodejs@googlegroups.com.
> >> > To unsubscribe from this group, send email to
> >> > nodejs+unsubscribe@googlegroups.com<nodejs%2Bunsubscribe@googlegroups.com>
> >> > .
> >> > For more options, visit this group at
> >> >http://groups.google.com/group/nodejs?hl=en.
> >> --
> >> You received this message because you are subscribed to the Google Groups "nodejs" group.
> >> To post to this group, send email to nodejs@googlegroups.com.
> >> To unsubscribe from this group, send email to nodejs+unsubscribe@googlegroups.com.
> >> For more options, visit this group athttp://groups.google.com/group/nodejs?hl=en.
> > --
> > You received this message because you are subscribed to the Google Groups "nodejs" group.
> > To post to this group, send email to nodejs@googlegroups.com.
> > To unsubscribe from this group, send email to nodejs+unsubscribe@googlegroups.com.
> > For more options, visit this group athttp://groups.google.com/group/nodejs?hl=en.
> --
> You received this message because you are subscribed to the Google Groups "nodejs" group.
> To post to this group, send email to nodejs@googlegroups.com.
> To unsubscribe from this group, send email to nodejs+unsubscribe@googlegroups.com.
> For more options, visit this group athttp://groups.google.com/group/nodejs?hl=en.
-- You received this message because you are subscribed to the Google Groups "nodejs" group.
To post to this group, send email to nodejs@googlegroups.com.
To unsubscribe from this group, send email to nodejs+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/nodejs?hl=en.
On May 8, 5:43 am, nnn <g.zhen.n...@gmail.com> wrote:
> what I mean matter is these libraries not found matter.
> Checking for header port.h : not found
> Checking for header sys/event.h : not found
> Checking for function kqueue : not found
> Checking for library execinfo : not found
I wouldn't worry about those errors. Some libraries and libev backends
are not available on certain platforms. My Ubuntu machine shows the
same errors. It just means node will use one of the libev backends it
_did_ find instead.
-- You received this message because you are subscribed to the Google Groups "nodejs" group.
To post to this group, send email to nodejs@googlegroups.com.
To unsubscribe from this group, send email to nodejs+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/nodejs?hl=en.
On Sat, May 8, 2010 at 3:47 AM, Isaac Schlueter <i...@izs.me> wrote:
> If you don't have openssl installed, then make test skips over the ssl
> tests
That was not true in my case. All tests were attempted and the crypto based
ones failed, which is what I'd expect from the test suite. I then installed
libssl-dev, and as the OP pointed out ./configure still results in several
"not found" errors, but now the crypto.h header was found ok, and all the
tests passed after recompilation. I don't know why with both openssl and
libssl-dev installed, ./configure still fails to find [openssl, kqueue,
execinfo] (Ubuntu 10.04 server)... but it didn't seem to matter as far as
the test suite was concerned.
-- You received this message because you are subscribed to the Google Groups "nodejs" group.
To post to this group, send email to nodejs@googlegroups.com.
To unsubscribe from this group, send email to nodejs+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/nodejs?hl=en.
after installing libssl-dev. However the problem is that pkg-config
is being used to check for openssl and if pkg-config is not installed
it fails and inproperly reports as openssl not found. I discovered
this by looking at config.log:
81 ----------------------------------------
82 Checking for openssl
83 pkg-config --errors-to-stdout --print-errors --cflags --libs
openssl
84 /bin/sh: pkg-config: not found
85 not found
86
87 ----------------------------------------
after sudo apt-get install pkg-config
Checking for openssl : yes
yahtzee!!
On May 7, 3:14 pm, Ryan Gahl <ryan.g...@gmail.com> wrote:
> Just as an FYI on that. I noticed the exact same issue at first... and
> installed libssl-dev. Even after installing it, you still get the "not
> found" messages during ./configure on the openssl and SSL_library_init
> lines, but the header crypto.h is now found, and compiling via make, and
> then running 'make test' will (should) result in no test failures.
> On Fri, May 7, 2010 at 10:51 AM, Jérémy Lal <holi...@gmail.com> wrote:
> > On 07/05/2010 17:47, nnn wrote:
> > > I try to install node-v0.1.94 on Ubuntu 9.10 x86_64. also I have been
> > > install openssl.but still catch this message. why?
> > > (node.js not compiled with openssl crypto support)
> > >http://gist.github.com/393619
> > Checking for openssl : not found
> > Checking for function SSL_library_init : not found
> > Checking for header openssl/crypto.h : not found
> > you're missing
> > libssl-dev (>= 0.9.8)
> > --
> > You received this message because you are subscribed to the Google Groups
> > "nodejs" group.
> > To post to this group, send email to nodejs@googlegroups.com.
> > To unsubscribe from this group, send email to
> > nodejs+unsubscribe@googlegroups.com<nodejs%2Bunsubscribe@googlegroups.com>
> > .
> > For more options, visit this group at
> >http://groups.google.com/group/nodejs?hl=en.
> --
> You received this message because you are subscribed to the Google Groups "nodejs" group.
> To post to this group, send email to nodejs@googlegroups.com.
> To unsubscribe from this group, send email to nodejs+unsubscribe@googlegroups.com.
> For more options, visit this group athttp://groups.google.com/group/nodejs?hl=en.