Duke Normandin <[email protected]> ha escrit:

> dnorman...@select-man:~/Downloads/mailutils-2.2$ which movemail
> /usr/local/bin/movemail
> 
> dnorman...@select-man:~/Downloads/mailutils-2.2$ movemail -V
> movemail: symbol lookup error: movemail: undefined symbol: 
> mu_cfg_create_node_list

There are still 2.1 libraries lying around on your system.  `Which
movemail' shows you where the binary is, but it doesn't tell anything
about shared libraries it is using.  Run `ldd /usr/local/bin/movemail'
and examine its output.  Most probably it will show you something like

   ...
   libmailutils.so.2 => /usr/lib/libmailutils.so.2 (0xb7f3e000)
   ...

(the correct output would show /usr/local/lib/libmailutils.so.2, since
/usr/local was your installation prefix).  Remove old mailutils
libraries, run ldconfig and see if this helps.  There are, of course,
several ways to fix this without removing old libs (for example, you may set
LD_LIBRARY_PATH=/usr/local/lib, or fiddle with the contents of your
/etc/ld.so.conf, etc), but I'd suggest to get rid of them anyway.

Regards,
Sergey

_______________________________________________
Bug-mailutils mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/bug-mailutils

Reply via email to