Skip to content

Instantly share code, notes, and snippets.

@nabil-hassan
Created September 18, 2014 22:02
Show Gist options
  • Save nabil-hassan/02b4256ece9b8ac03422 to your computer and use it in GitHub Desktop.
Save nabil-hassan/02b4256ece9b8ac03422 to your computer and use it in GitHub Desktop.
Install SVN 1.7 on Linux (Fedora)
IntelliJ 12 does not support SVN 1.8.
To install SVN 1.76 on Linux (tested with Fedora)
# Remove SVN 1.8
sudo svn yum remove svn
# Download SVN 1.7 sources tar (check version link exists - may have changed)
cd /tmp && wget http://apache.mirror.anlx.net/subversion/subversion-1.7.18.tar.gz
tar -zxvf subversion-1.7.1.8.tar.gz
# Download SQLIte
mkdir subversion-1.7.1.8/sqlite-amalgamation
wget http://www.sqlite.org/2014/sqlite-autoconf-3080600.tar.gz
tar -zxvf sqlite-autoconf-3080600.tar.gz
cp sqlite-autoconf-3080600/sqlite3.c subversion-1.7.1.8/sqlite-amalgamation
#Download and make zlib
cd subversion-1.7.1.8 && wget http://zlib.net/zlib-1.2.8.tar.gz
tar -zxvf zlib-1.2.8.tar.gz
cd zlib-1.2.8
./configure --shared
make
sudo make install
# Configure and make SVN
cd ..
./configure CPPFLAGS="-Izlib/ -Lzlib/"
make sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment