You are currently looking at an older section of the wincent.dev website.
Please check the new version of the site at https://wincent.dev/ for updated content.

wincent knowledge base

« Upgrading to MySQL 4.1.20 on Red Hat Enterprise Linux 3 | Main | Intel iMac set-up notes »

June 01, 2006

Subversion 1.3.1 to 1.3.2 upgrade notes

Here are some brief notes I made while performing the upgrade from Subversion 1.3.1 to version 1.3.2 on my Red Hat Enterprise Linux ES 3 machine.

screen
wget http://subversion.tigris.org/downloads/subversion-1.3.2.tar.bz2
tar xjvf subversion-1.3.2.tar.bz2
cd subversion-1.3.2
sudo chkconfig svn off   
sudo rm -f /usr/local/lib/libsvn*
sudo rm -f /usr/local/lib/libapr*
sudo rm -f /usr/local/lib/libexpat*
sudo rm -f /usr/local/lib/libneon*
sh ./autogen.sh
./configure
make
make check
sudo make install             
sudo chkconfig svn on
netstat -anp | grep LISTEN | grep 3690
exit

Posted by wincent at June 1, 2006 03:15 PM