用libtool編譯器時,調用使用libmemcached.so的時候,出警告
libtool: link: warning: libmemcached.la seems to be moved
出這個情況的原因是,libmemcached.la這個檔案已經被更新了,指定路徑的地方已經變了,只要手動改回來即可
如庫路徑指定為 libdir='/usr/local/lib'
別人遇到問題的解釋連結
http://archives.devshed.com/forums/development-94/libtool-link-warning-libexpat-la-seems-to-be-moved-1957466.html
FYI, those .la files are textfiles that describe where a library expects to be
installed, what other libs it depends on etc. The warning means that the
library was moved to a different place than the one it expected to be,
possibly causing it to not function or not function properly.
Lastly, you can install Subversion from source without any root privileges at
all, the only thing you need is to pass e.g. ' ~/svn-install' to
configure and adapt a few things like PATH and LD_LIBRARY_PATH. This helps
keeping this install from affecting other stuff on the system. In fact that
is a feature of autotools, so every program that comes with a configure
script should be installable like that.