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

« Mac OS X Tiger: Initial response | Main | Disaster recovery notes »

May 24, 2005

Building Subversion 1.2 on Mac OS X 10.4.1

Subversion 1.2 has just come out (release notes). Here are my installation notes for Mac OS X 10.4.1. As per usual, they require the developer tools. I use wget to download the source.

# grab the source
wget http://subversion.tigris.org/downloads/subversion-1.2.0.tar.gz

# unpack the source tar xzf subversion-1.2.0.tar.gz cd subversion-1.2.0
# unlike previous versions, this one won't build with GCC 4.0 sudo gcc_select 3.3
# clean up libraries from previous versions 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*
# do the build sh ./autogen.sh ./configure && make && make check sudo make install
# restore the previous compiler setting sudo gcc_select 4.0

Posted by wincent at May 24, 2005 12:33 AM