一,編譯的問題。
執(zhí)行./bootstrap && ./configure
用ubuntu很方便,依賴什么庫用新立得裝上就行,./configure失敗:
Couldn't find required function socket
去找libsocket浪費了一天,其實ubuntu下不需要安裝什么libsocket,真正的問題是當(dāng)前目錄下沒有l(wèi)ibtool程序(教訓(xùn):configure出了問題要多研究config.log),
手工加個鏈接:ln -s /usr/bin/libtool libtool
再次./configure
make
make install
搞定。