Ok - I think this has all of the bits working necessary to compile WvStreams
[wvstreams.git] / README.TESTS
blob048f592640f4f05c13334adbeccb66f55ce11fb0
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 
4 (-DPURIFY).
6 Instructions on doing this (working as of Tuesday January 16 2006 with
7 OpenSSL 0.9.8d):
8 - Build SSL seperately.
9  - ./Configure -DPURIFY -shared linux-elf
10  - make
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 ...