Linux Install Notes
To use the Linux SDK to build either a custom client or test any of the client samples included with the SDK, it's important to ensure that NSS/NSPR is set up properly. The NSS with NSPR source can be downloaded here
To build the libraries, run configure, then make and then make install. By default, this will install the libraries under /usr/lib.
Once verified that NSS/NSPR is installed properly, change directories to the sdk installation directory in the dist/release subdirectory. From that directory, execute the following commands:
(replace path to NSS/NSPR libs accordingly)
ln -s /usr/lib/libnspr4.so .
ln -s /usr/lib/libnss3.so .
ln -s /usr/lib/libnssckbi.so .
ln -s /usr/lib/libplc4.so .
ln -s /usr/lib/libplds4.so .
ln -s /usr/lib/libsmime3.so .
ln -s /usr/lib/libsoftokn3.so .
ln -s /usr/lib/libssl3.so .
ln -s /usr/lib/libfreebl3.so . (this lib may not be installed depending on the version of NSS/NSPR)
