2008-06-15

Compile subversion on SUSE

SUSE Linux Enterprise 10 build guide for Subversion 1.4.6:


Get zlib: http://www.zlib.net/
tar zxf zlib-1.2.3.tar.gz
cd zlib-1.2.3
./configure --prefix=/usr
make install


Get openssl: http://www.openssl.org/source/
tar zxf openssl-0.9.8h.tar.gz
cd openssl-0.9.8h
./config --prefix=/usr
make install


Get apr: http://apr.apache.org/download.cgi
tar zxf apr-1.3.0.tar.gz
cd apr-1.3.0
./configure --prefix=/usr
make install


Get apr-util: http://apr.apache.org/download.cgi
tar zxf apr-util-1.3.0.tar.gz
cd apr-util-1.3.0
./configure --prefix=/usr --with-apr=/usr
make install


Get neon: http://www.webdav.org/neon/neon-0.25.5.tar.gz
tar zxf neon-0.25.5.tar.gz
cd neon-0.25.5
LDFLAGS="-ldl" ./configure --prefix=/usr --with-ssl
make install


Get subversion: http://subversion.tigris.org/
tar jxf subversion-1.4.6.tar.bz2
cd subversion-1.4.6
./configure --prefix=/usr --with-ssl --with-apr=/usr --with-apr-util=/usr
make install



Enjoy!

No comments: