1 Note that the unit tests (invoked through 'make test') will fail if WvStreams
2 is linked against the default version of OpenSSL 0.9.8. To get around this,
3 you need to use a version of OpenSSL built with the PURIFY define enabled
6 Instructions on doing this (working as of Tuesday January 16 2006 with
8 - Build SSL seperately.
9 - ./Configure -DPURIFY -shared linux-elf
11 - Set your LD_LIBRARY_PATH environment variable so your version of OpenSSL
12 is used (instead of the system one).
13 - export LD_LIBRARY_PATH=$PATH_TO_OPENSSL:$LD_LIBRARY_PATH
14 - Configure WvStreams to use the version of OpenSSL you built
15 - ./configure --with-openssl=$PATH_TO_OPENSSL ...