[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

RE: Subversion vs multicore processors

From: Edward Ned Harvey <svn_at_nedharvey.com>
Date: Sat, 13 Nov 2010 00:23:54 -0500

> From: Nico Kadel-Garcia [mailto:nkadel_at_gmail.com]
>
> RHEL 5 still directly only provides Subversion 1.4.2. EPEL will not
replace it in

On RHEL4 / RHEL5, I find it ridiculously easy to build svn from source.
Here is my build script:

#!/bin/bash
VERSION=1.6.12
INSTALLDIR=/usr/local/subversion-$VERSION
SRCDIR=${INSTALLDIR}/src

mkdir -p $SRCDIR
cp subversion-${VERSION}.tar.bz2 $SRCDIR
cp subversion-deps-${VERSION}.tar.bz2 $SRCDIR
cd $SRCDIR

tar xjf subversion-${VERSION}.tar.bz2
tar xjf subversion-deps-${VERSION}.tar.bz2
rm subversion-${VERSION}.tar.bz2
rm subversion-deps-${VERSION}.tar.bz2

mv subversion-${VERSION}/* .
rmdir subversion-${VERSION}
./configure --prefix=$INSTALLDIR --with-ssl && \
make && \
make install && \
echo "" && \
echo "installed ok: ${INSTALLDIR}/bin/svn"

cd -
Received on 2010-11-13 06:24:39 CET

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.