在Suse 10.0上升级Subversion

我有一个老版本的Subversion(1.4)Suse Linux 10.0。 我想升级到目前(1.6.6),但我有问题,试图了解如何从源代码构buildSVN。 我的意思是,我应该把什么传递给configuration脚本? 有没有简单的方法来升级当前的SVN?

谢谢您的帮助。

杰西卡

SVN的旧版本是否也是从源代码构build的,还是从RPM安装? 如果是后者,我会在安装新版本之前使用“zypper remove”或“rpm -e”删除旧版本。

从源代码构buildSVN非常简单 – 这些是我在SuSE 10.2上运行的命令:

wget http://subversion.tigris.org/downloads/subversion-1.6.6.tar.gz wget http://subversion.tigris.org/downloads/subversion-deps-1.6.6.tar.gz tar zxvf subversion-1.6.6.tar.gz tar zxvf subversion-deps-1.6.6.tar.gz # Puts dependent files in subversion-1.6.6 tree cd subversion-1.6.6 ./configure --with-ssl # Use with-ssl if you want to access your SVN repo via https make sudo make install # Installs to /usr/local/bin by default - use the --prefix option for configure script to change the install location 

对于它的价值,我已经与http://software.opensuse.org/search好运