On Thu, Jan 15, 2009 at 2:30 PM, Julie S <[email protected]> wrote: > ./rosegarden: error while loading shared libraries: libkdeui.so.5: cannot > open shared object file: No such file or directory
If you run "ldd rosegarden", it will list the shared libraries used by the rosegarden binary and, for each one, the location where it will be loaded from. If it has "not found" against libkdeui, then that library is not in your dynamic loader path. (If it has a valid path against libkdeui, then there is some other problem.) If the library is not in your dynamic loader path, you can either use the LD_LIBRARY_PATH variable (e.g. export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/lib/kde4/lib), or add the path to /etc/ld.so.conf and re-run ldconfig as root to scan the new set of paths. Chris ------------------------------------------------------------------------------ This SF.net email is sponsored by: SourcForge Community SourceForge wants to tell your story. http://p.sf.net/sfu/sf-spreadtheword _______________________________________________ Rosegarden-devel mailing list [email protected] - use the link below to unsubscribe https://lists.sourceforge.net/lists/listinfo/rosegarden-devel
