On 06/25/2012 08:35 PM, Dean Mao wrote:
I ran it with gdb, it looks like it crashed in SSL_library_init(). I also ran ldd on node 0.6.19 and saw that libssl & crypto are shown there, yet in node 0.8.0 they are not linked -- does node 0.8.0 rely on external modules for ssl support?
The default compilation options changed for node across 0.6 and 0.8. While 0.6 used an external libz and libssl/libcrypto, node 0.8 defaults to building a version that is embedded in the source tree and statically linking them in. In other words what was in opt-in default is now an opt-out default.
Robert
