The Way Of Life: Could Not Find libtds.so
Google

Wednesday, April 03, 2013

Could Not Find libtds.so


When I was install new web server with Linux Ubuntu 12.04 LTS, i found new problem when installing MSSQL module. My new server is 64 bit machine, when running :

./configure --with-mssql
 
I got the following error like below:


configure: error: Could not find /usr/lib/libtds.a|so
 

And finally , i've got the solution for my problem like below:

locate libtds.so

revealed this:

/usr/lib/i386-linux-gnu/libtds.so
/usr/lib/i386-linux-gnu/libtds.so.5
/usr/lib/i386-linux-gnu/libtds.so.5.0.0 


make link on the real location
 
cd /usr/lib
ln -s /usr/lib64/libtds.so
ln -s /usr/lib64/libtds.so.5
ln -s /usr/lib64/libtds.so.5.0.0
 
and then run first step again

./configure --with-mssql
 

source links 
 
 
You can use the same solution for error message below:

configure: error: Could not find /usr/lib/libsybdb.a|so


On Linux Ubuntu 14.04 LTS file location should be at /usr/lib/x86_64-linux-gnu
And you can do the same steps above.

Labels: , , ,

0 Comments:

Post a Comment

<< Home