> I need to fix the dependency of VIM on perl without upgrading or > changing Perl > > vim: error while loading shared libraries: libperl.so: cannot open > shared object file: No such file or directory >
It sounds as though either something has deleted the object file, or a path setting to find it. On my system, the following found it: $ find / -name libperl.so 2> /dev/null /usr/lib64/perl5/CORE/libperl.so If that query returns nothing, presumably the object's been deleted by someone. If it's found, it's a path issue that needs investigation. That's not a solution, but a starting point. -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_use" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/e1b8f0e27c6198b443925458b20c9de3.squirrel%40webmail.vybenetworks.com.
