yshlovelx 2015-01-04
Linux发行版:CentOS-5.9-x86_64-bin-DVD-1of2.iso
安装软件:
subversion-1.8.10.tar.gz
apr-1.5.1.tar.gzapr-util-1.3.9.tar.gzlibtool-1.5.22.tar.gz
1.首先,下载subversion安装包
路径:http://subversion.apache.org/download/#recommended-release
然后,解压缩、编译、安装,出现下面错误信息。
configure:ApachePortableRuntime(APR)libraryconfiguration
checkingforAPR...no
configure:WARNING:APRnotfound
TheApachePortableRuntime(APR)librarycannotbefound.
PleaseinstallAPRonthissystemandconfigureSubversion
withtheappropriate--with-aproption.
YouprobablyneedtodosomethingsimilarwiththeApache
PortableRuntimeUtility(APRUTIL)libraryandthenconfigure
Subversionwithboththe--with-aprand--with-apr-utiloptions.
configure:error:nosuitableAPRfound
然后,下载apr-1.5.1.tar.gz,解压缩后,cd到安装目录,执行./configure,。
出现这个提示:cannotremove`libtoolT’:Nosuchfileordirectory
解决方案:编辑configure文件,查找$RM"$cfgfile"这个地方,用#注释掉,然后重新编译安装就可以了。
2.接着安装apr和apr-util
这是个apache的project,全名是ApachePortableRuntime我们安装的版本是1.5.1,
下面是下载地址http://apr.apache.org/
先装apr,先解压,然后cd到安装目录
./configure
make
makeinstall
这里configure的时候不指定路径的话默认是安装到/usr/local/下
然后安装apr-util解压同apr然后cd到安装目录
./configure--prefix=/usr/local/apr-util--with-apr=/usr/local/apr/
make
makeinstall
完成!