error while loading shared libraries: libtiff.so.4

Hi,
trying to install this software
fullanalyze - Project Hosting on Google Code
I get “error while loading shared libraries: libtiff.so.4: cannot open shared object file: No such file or directory.”

I have a toshiba laptop 32bit that runs opensuse 11.1 with GNOME and I’m not a Linux expert.

Thank you in advance for any help you can provide,
Martina

Buongiorno Martina, welcome to the forum.

Please use yast → Software Installation and install the libtiff3 package. You may also need the libtiff-devel package if you want to compile an application from source.

Hi
There is no libtiff.so.4 yet :frowning: You could try a soft link to
libtiff.so.3? From a terminal run the following;


sudo ln -s /usr/lib/libtiff.so.3 /usr/lib/libtiff.so.4


Cheers Malcolm °¿° (Linux Counter #276890)
SUSE Linux Enterprise Desktop 11 (x86_64) Kernel 2.6.27.37-0.1-default
up 1 day 14:20, 2 users, load average: 0.28, 0.16, 0.15
GPU GeForce 8600 GTS Silent - CUDA Driver Version: 190.18

libtiff3 was already installed, but the soft link to libtiff.so.3 works! :slight_smile:
Thank you very much… I really appreciate your work!

Doing that is outright stupid. .so.4 has a different ABI than .so.3. That’s what the number change indicates. (No, it’s not the version number of the project itself, at least not for arbitrary software.)