# building private subversion for mstone testing prefix=$HOME export CFLAGS="-g -O" export CC=gcc-2.95 cd openssl-0.9.8e [ -f config.status ] && make distclean ./config -DPURIFY --prefix=$prefix --openssldir=$prefix/openssl threads zlib-dynamic shared make && make test && make install cd ../apr-1.2.8/ [ -f config.status ] && make distclean ./configure --prefix=$prefix --enable-maintainer-mode --enable-debug make && make install cd ../apr-util-1.2.8/ [ -f config.status ] && make distclean ./configure --prefix=$prefix --with-apr=$prefix --enable-maintainer-mode --enable-debug make && make install cd ../serf/ [ -f config.status ] && make distclean ./buildconf --with-apr=../apr-1.2.8 --with-apr-util=../apr-util-1.2.8 ./configure --prefix=$prefix --enable-maintainer-mode --enable-debug --with-apr=$prefix --with-apr-util=$prefix --with-openssl=$prefix make && make install make check cd ../neon ./autogen.sh [ -f config.status ] && make distclean ./configure --prefix=$prefix --enable-maintainer-mode --enable-debug --with-apr=$prefix --with-apr-util=$prefix --with-ssl=openssl --enable-threadsafe-ssl=posix --with-libs=$prefix --enable-shared make && make -k install make check cd ../subversion/ # this build does not have apache modules [ -f config.status ] && make distclean ./autogen.sh ./configure --prefix=$prefix --enable-maintainer-mode --enable-debug --disable-mod-activation --disable-subdir-config --enable-experimental-libtool --with-apr=${prefix} --with-apr-util=${prefix} --with-neon=$prefix --with-serf=$prefix --with-ssl --with-editor=/etc/alternatives/editor --without-{apxs,berkeley-db,jdk,jikes,junit,ruby} make && make install install-swig-py make check