Re: [Siproxd-users] SIPPROXD installation problem - missing libosipparser and other shared librarie
Status: Beta
Brought to you by:
tries
From: Thomas R. <tr...@gm...> - 2010-09-25 10:11:23
|
It seems that you installed the libosip2 libraries yourself (not via an RPM package)? They are in /usr/*local*/lib , so you must make sure that this path is included in /etc/ld.so.conf. Also - as it is a 64bit system - make sure you use the proper built of the libraries (32bit/64bit) for siproxd. As I'm not that amiliar with 64bit systems my guess is that you have installed the libosip2 libraries (libosip2.so.4) in the location for the 32bit libraries. You also seem to have an earlier libosip2 version installed (via RPM I guess) which resides in /usr/lib64/. So, first thing is to clean up the libosip2 installation. You need - libosip2 >= 3.0.0 (siproxd development is using libosip2-3.3.0) - libosip2-devel Then rebuild and install siproxd: $ make clean $ ./configure $ make $ make install On 19 Sep, bruce bruce wrote: > Hello Everyone, > > I embarked on installing Siproxd but it has taken me a bit time and > it's not installing properly. > > Linux new-host-5 2.6.18-194.11.3.el5 #1 SMP Mon Aug 30 16:19:16 EDT 2010 > x86_64 x86_64 x86_64 GNU/Linux > > Here is what happens trying to run siproxd before any of the .conf > files is touched: > > [root@new-host-5 siproxd-0.8.0]# siproxd > siproxd: error while loading shared libraries: libosipparser2.so.4: > cannot open shared object file: No such file or directory > > I see that both libosip2 and libosipparser are installed. Maybe it's a > path issue but I am not sure how to set it. Here is a locate done on > the libosip: > > [root@new-host-5 siproxd-0.8.0]# locate libosip > /usr/lib64/libosip2.so.3 > /usr/lib64/libosip2.so.3.0.0 > /usr/lib64/libosipparser2.so.3 > /usr/lib64/libosipparser2.so.3.0.0 > /usr/local/lib/libosip2.a > /usr/local/lib/libosip2.la > /usr/local/lib/libosip2.so > /usr/local/lib/libosip2.so.4 > /usr/local/lib/libosip2.so.4.2.0 > /usr/local/lib/libosipparser2.a > /usr/local/lib/libosipparser2.la > /usr/local/lib/libosipparser2.so > /usr/local/lib/libosipparser2.so.4 > /usr/local/lib/libosipparser2.so.4.2.0 > /usr/local/lib/pkgconfig/libosip2.pc > /usr/share/doc/libosip2-2.2.0 > /usr/share/doc/libosip2-2.2.0/AUTHORS > /usr/share/doc/libosip2-2.2.0/BUGS > /usr/share/doc/libosip2-2.2.0/COPYING > /usr/share/doc/libosip2-2.2.0/ChangeLog > /usr/share/doc/libosip2-2.2.0/INSTALL > /usr/share/doc/libosip2-2.2.0/NEWS > /usr/share/doc/libosip2-2.2.0/README > /usr/share/doc/libosip2-2.2.0/TODO > > > Is there not a simple RPM package for CentOS 5 posted somewhere for > SIProxd > ??? > > Thanks alot |