- Prerequisites Installing
- autoconf
- libtool
- a reasonable C compiler (gcc, Visual Studio, etc.
- libapr
- libapr-util
- libz
- libserf
- OpenSSL
Install above prerequisites properly if your system missing any of the above list. If you have tarbal file(XXXX.tar.gz) install as
- autoconf
$ tar xzvf XXXX.tar.gz
$ cd XXXX
$ ./configure
$ make
$ make install
Otherwise if you have rpm(YYYY.rpm) for the above listed prerequisites, install them by the command
$ rpm –i YYYY.rpm
- SVN Installing
Down load SVN tarball file from http://subversion.tigris.org/getting.html#source-release
$ tar xzvf subversion-1.x.x.tar.gz
$ cd subversion-1.x.x
$ ./autogen
$ ./configure --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr
$ make
$ make install