今晚打算在Fedora 10下安装aMule,以便电驴下载。本打算yum安装,结果发现无法yum安装,于是只好下载了aMule的源代码(无Linux下的二进制安装文件)。解压之后,./configure,却出现了"wxWindows"的错误。

 

在网上搜了半天之后,发现除了系统已经装好的wxGTK之外,还要安装wxGTK-devel,于是我便yum install wxGTK-devel,成功。

 

重新在aMule的目录下./configure,这次却又报了更奇怪的错误:

 

"checking for crypto++ version >= 5.1... configure: error:
Could not find cryptopp header file "cryptlib.h".
Please check if the path "/usr" is valid."

 

在网上找到一个解决办法:

 

Download the latest crypto package from "http://www.cryptopp.com/#download
"
in this case package "Crypto++ 5.5.2". Now open your console terminal
and do the following commands to install the crypto package.

A) mkdir crypto
B) mv cryptopp552.zip ./crypto
C) cd crypto
D) unzip cryptopp552.zip
E) make
F) cp libcryptopp.a /usr/lib/
G) mkdir /usr/include/cryptopp
H) cp *.h /usr/include/cryptopp/
I) ldconfig

 

完成之后继续./configure,成功。(有一个关于uPnP的warning可以忽略。)然后make,成功,只是时间比较长。然后make install,成功!

 

aMule终于可以用了!