On Thu, Jul 29, 2010 at 6:36 AM, Narendra Sisodiya <[email protected]> wrote: > I am trying to install gst-editor > http://code.google.com/p/gst-editor/ > I have compiled as per instruction but ,the launcher is unable to find libs > > $ ldd `which gst-editor ` | grep not > libgsteditor.so.0 => not found > libgstelementui.so.0 => not found > libgstelementbrowser.so.0 => not found > libgstdebugui.so.0 => not found > These .so files are in separate location > $ ls -l /usr/local/lib/libgst*.so > lrwxrwxrwx 1 root root 22 2010-07-29 15:49 /usr/local/lib/libgstdebugui.so > -> libgstdebugui.so.0.0.0 > lrwxrwxrwx 1 root root 21 2010-07-29 15:49 /usr/local/lib/libgsteditor.so -> > libgsteditor.so.0.0.0 > lrwxrwxrwx 1 root root 29 2010-07-29 15:49 > /usr/local/lib/libgstelementbrowser.so -> libgstelementbrowser.so.0.0.0 > lrwxrwxrwx 1 root root 24 2010-07-29 15:49 /usr/local/lib/libgstelementui.so > -> libgstelementui.so.0.0.0
gst-editor is looking for "libgsteditor.so.0", NOT "libgsteditor.so", nor "libgsteditor.so.0.0.0". Make the appropriate symlink and then run ldconfig (or use just LD_LIBRARY_PATH=/usr/local/lib and it will work). On a side note, LD_LIBRARY_PATH is used to define "extra" library paths and repeating "/lib" and "/usr/lib" is not required. Sharad -- l...@iitd - http://tinyurl.com/ycueutm
