Print Search Content Actions Wiki Search |
Latest revision as of 19:05, 25 September 2008ContentsSubversion ServerSubversion needs Apache version 2.x to work. Building Apache
cd httpd-2.2.9 ./configure --prefix=/opt/httpd-2.2.9 --enable-modules=most --enable-mods-shared=all make make install Configuring ApacheEdit /opt/httpd-2.2.9/conf/httpd.conf
Using Apache
Building Subversion
cd subversion-1.5.2 cd apr ./configure --prefix=/opt/subversion-1.5.2/apr make make install cd .. cd apr-util ./configure --prefix=/opt/subversion-1.5.2/apr-util --with-apr=/opt/subversion-1.5.2/apr make make install cd .. cd neon ./configure --prefix=/opt/subversion-1.5.2/neon make make install cd .. ./configure ./configure --prefix=/opt/subversion-1.5.2 \ --with-apxs=/opt/httpd-2.2.9/bin/apxs \ --with-apr=/opt/subversion-1.5.2/apr \ --with-apr-util=/opt/subversion-1.5.2/apr-util/ \ --with-neon=/opt/subversion-1.5.2/neon/ --with-ssl --without-serf make make make install |