Hi Mike,
Here is what I did:
I got:
$ prince --version
ld.so.1: prince: fatal: libiconv.so.2: open failed: No such file or directory
Killed
So I added this:
LD_LIBRARY_PATH=/usr/local/lib
Then I got:
$ prince --version
ld.so.1: prince: fatal: libssl.so.0.9.7: open failed: No such file or directory
Killed
So I added this:
LD_LIBRARY_PATH=/usr/local/lib:/usr/local/ssl/lib
And created:
ln -s /usr/local/lib:/usr/local/ssl/lib/libssl.so.0.9.8 /usr/local/lib:/usr/local/ssl/lib/libssl.so.0.9.7
Then I got:
$ prince --version
ld.so.1: prince: fatal: libcrypto.so.0.9.7: open failed: No such file or directory
Killed
So I created:
ln -s libcrypto.so.0.9.8 libcrypto.so.0.9.7
Then I got:
$ prince --version
ld.so.1: prince: fatal: libexpat.so.1: open failed: No such file or directory
Killed
So I created (this is probably wrong, the library should be updatd instead):
ln -s libexpat.so libexpat.so.1
Then it worked as far as I can tell. Is this how I should approach this?
Thanks!