View Single Post
  #2 (permalink)  
Old 08-28-2007, 07:18 AM
sivaramakrishnan sivaramakrishnan is offline
D-Web Programmer
 
Join Date: Feb 2007
Posts: 74
sivaramakrishnan is on a distinguished road
Default Re: Implement SVN in APACHE

Guys,
I have given below the installation details

Subversion Installation:

Ruby-Installation:

Download ruby-1.8.4.tar.gz

Untar/zip the package, cd into the directory, and execute
tar xzf ruby-1.8.4.tar.gz
./configure
make
make install

Swig -Installation:

Download swig-1.3.25 (the version here is crucial, do not get the latest version)
Untar/zip the package, cd into the directory, and execute
tar xzf swig-1.3.25.tar.gz
./configure --prefix=/usr --with-ruby=/usr/local/bin/ruby
--with-python=/usr/local/bin/python --with-perl5=/usr/bin/perl
make
make install

Apache Installation
Download httpd-2.0.58.tar.gz from Download - The Apache HTTP Server Project

cd /var
tar xvzf httpd-2.0.58.tar.gz

Installing Apache:

./configure --enable-dav --enable-so --enable-maintainer-mode --prefix=/home/www --enable-cgi --enable-ssl --enable-rewrite --enable-setenvif --enable-mime --enable-mime-magic --enable-dir --enable-auth --enable-alias --enable-userdir --enable-vhost_alias --enable-env --enable-log_referer --enable-log_config --enable-log_agent --enable-headers --enable-access --enable-suexec --enable-static-rotatelogs --enable-spelin --with-mpm=prefork --enable-userdir --with-mpm=prefork --enable-deflate
cd /var/httpd-2.0.58
make
make install

Regards
sivaraman
Reply With Quote