
Originally Posted by
OnDistantShores
Same error as the above two posters...any help?
Finally got the latest version of Subversion (and dependencies) to work on HostMonster! Here's the secret sauce:
Code:
cd ~
mkdir src
cd src
wget http://www.gtlib.gatech.edu/pub/apache/apr/apr-1.4.2.tar.gz
wget http://www.gtlib.gatech.edu/pub/apache/apr/apr-util-1.3.9.tar.gz
wget http://subversion.tigris.org/downloads/subversion-1.6.9.tar.gz
wget http://www.webdav.org/neon/neon-0.29.3.tar.gz
wget http://www.sqlite.org/sqlite-amalgamation-3.6.23.tar.gz
wget http://ftp.gnu.org/gnu/libtool/libtool-2.2.6b.tar.gz
tar -xzf apr-util-1.3.9.tar.gz
tar -xzf apr-1.4.2.tar.gz
tar -xzf subversion-1.6.9.tar.gz
tar -xzf neon-0.29.3.tar.gz
tar -xzvf sqlite-amalgamation-3.6.23.tar.gz
tar -xzvf libtool-2.2.6b.tar.gz
cd libtool-2.2.6b
make clean
./configure --prefix=$HOME LDFLAGS="-L/lib64"
make
make install
cd ../apr-1.4.2
make clean
./configure --prefix=$HOME LDFLAGS="-L/lib64"
make
make install
cd ../apr-util-1.3.9
make clean
./configure --prefix=$HOME --with-apr=$HOME LDFLAGS="-L/lib64"
make
make install
cd ../neon-0.29.3
make clean
EXTRA_CFLAGS="-L/lib64 -fPIC"
CFLAGS="-L/lib64 -fPIC"
./configure --enable-shared --prefix=$HOME LDFLAGS="-L/lib64"
make
make install
cd ../sqlite-3.6.23/
make clean
mkdir ~/src/subversion-1.6.9/sqlite-amalgamation
cp sqlite3.c ~/src/subversion-1.6.9/sqlite-amalgamation/
cd ../subversion-1.6.9
make clean
./configure --with-apr=$HOME --prefix=$HOME --without-berkeley-db --with-zlib=/usr --with-ssl LDFLAGS="-L/lib64" --with-apr-util=$HOME --with-neon=$HOME -without-apxs --without-apache
make
make install