RE: [ilugd] Re: libsigc++ install problem

2003-11-14 Thread LinuxLingam
On Sat, 2003-11-15 at 02:17, Raj Shekhar wrote: Check the Makefile that was created when you did ./configure. It may have a target called uninstall. If it does, try make uninstall. checked. it had. did it. worked okay. then, installed libsigc++ through the downloaded rpm package. that worked

RE: [ilugd] Re: libsigc++ install problem

2003-11-14 Thread Raj Shekhar
On Sat, 2003-11-15 at 04:34, LinuxLingam wrote: finally, did an updatedb. and checked with the rpm -qa command, to find the package was still not recognized. I would suggest looking closely at your grep expression. Maybe a rpm -qa|grep -i sig . That is the only explanation I can think of (if

Re: [ilugd] Re: libsigc++ install problem

2003-11-03 Thread LinuxLingam
try this command while compiling the *dependent* app: LDFLAGS=-L/usr/local/lib ./configure ... (Yes. All on the same line and with spaces exactly as I had given.) - Sandip thanks sandip, but the app i'm trying to install that is dependent on libsigc is in an rpm form, so the above

Re: [ilugd] Re: libsigc++ install problem

2003-11-03 Thread LinuxLingam
In that case the ldconfig way described by Arindam should have worked. Try running ldconfig in verbose mode( with -v option) and see if the libc++ library is displayed: ldconfig -v | grep sigc did this, here's the output: # ldconfig -v | grep sigc libsigc-1.2.so.5 -

Re: [ilugd] Re: libsigc++ install problem

2003-11-03 Thread Bhaskar Dutta
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Tuesday 04 November 2003 02:36 am, LinuxLingam wrote: # rpm -ivh k3d-0.2.5.4-1.i386.rpm error: Failed dependencies: libsigc++ = 1.2 is needed by k3d-0.2.5.4-1 btw, i noticed something rather unusual, and tell me if this has something

Re: [ilugd] Re: libsigc++ install problem

2003-11-03 Thread Arindam Dey
On Tue, 2003-11-04 at 05:06, LinuxLingam wrote: In that case the ldconfig way described by Arindam should have worked. Try running ldconfig in verbose mode( with -v option) and see if the libc++ library is displayed: ldconfig -v | grep sigc did this, here's the output: #

Re: [ilugd] Re: libsigc++ install problem

2003-11-03 Thread Raj Mathur
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Sandip == Sandip Bhattacharya [EMAIL PROTECTED] writes: Sandip LinuxLingam wrote: thanks sandip, but the app i'm trying to install that is dependent on libsigc is in an rpm form, so the above won't work. the app is also too huge