Skip to content

Instantly share code, notes, and snippets.

@serihiro
Created October 2, 2012 07:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save serihiro/3816984 to your computer and use it in GitHub Desktop.
Save serihiro/3816984 to your computer and use it in GitHub Desktop.
Subversion install configure option
[apr]
./configure \
--prefix=/usr/local/apr \
--enable-threads
[apr-util]
./configure \
--prefix=/usr/local/apr-util \
--with-apr=/usr/local/apr \
--with-berkeley-db=/usr/local/BerkeleyDB.4.3
[apache]
./configure \
--prefix=/usr/local/apache2 \
--enable-mods-shared=most \
--enable-dav \
--enable-dav-fs \
--with-berkeley-db=/usr/local/BerkeleyDB.4.3 \
--enable-dav-lock \
--enable-cgi \
--enable-cgid \
--enable-cache \
--enable-mem-cache \
--enable-proxy \
--enable-proxy-blancer \
--enable-rewrite \
--enable-so \
--with-apr=/usr/local/apr \
--with-apr-util=/usr/local/apr-util
[neon]
./configure \
--prefix=/usr/local/neon \
--with-libxml2 \
--with-expat \
--with-pic
[subversion]
./configure \
--prefix=/usr/local/svn \
--with-apxs=/usr/local/apache2/bin/apxs \
--with-apr=/usr/local/apr \
--with-apr-util=/usr/local/apr-util \
--with-neon=/usr/local/neon \
--with-swig=/usr/local/swig \
--without-jdk \
--with-berkeley-db=/usr/local/BerkeleyDB.4.3 \
--with-pic
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment