Page 1 of 1

libraries can't be found libfbclIent.so.20

Posted: 05.01.2009, 09:07
by Fortuna1
I' m installed:
SUSE 10.3 64 bit PC
Firebird 2.0.3 AMD64
ZEOSDBO-6.6.3-stable.zip
fpc-2.2.2-20081005.i386(2).rpm
lazarus-0.9.27.16875-20081005.i386.rpm

When I start my program I got this message;
libraries can't be found libfbclIent.so.20

What sugestions
Thanks

Posted: 06.01.2009, 19:52
by seawolf
First of all have you installed package libfbclient2-2.0.3?

On the folder /opt/firebird/lib you should find a file called libfbclient.so.2.0.3

Do:

ln -s /opt/firebird/lib/libfbclient.so.2.0.3 /usr/lib/libfbclient.so.20

Posted: 07.01.2009, 10:02
by Fortuna1
I try this

ln -s /opt/firebird/lib/libfbclient.so.2.0.3 /usr/lib/libfbclient.so.20

but not woking,


When I start my program I got this message;
libraries can't be found libfbclIent.so.20

Posted: 07.01.2009, 12:37
by seawolf
I think Linux is key sensitive, so if is looking for libfbclIent you should try

ln -s /opt/firebird/lib/libfbclient.so.2.0.3 /usr/lib/libfbclIent.so.20

Posted: 04.02.2009, 13:37
by trupka
seawolf wrote:I think Linux is key sensitive, so if is looking for libfbclIent you should try
Linux is case sensitive.
seawolf wrote: ln -s /opt/firebird/lib/libfbclient.so.2.0.3 /usr/lib/libfbclIent.so.20
Don't thing it's enough. You should also run ldconfig.

How did you install FB - package or tarball/source?