install svn and Apache

I have recently build both Apache 2.2.11 and Subversion 1.6.0 (and other dependencies) from source on a RHEL4 systems. This is how I configured them

cd /usr/local/src/httpd-2.2.11
./configure --enable-modules=all --enable-mods-shared=all --enable-authn-dbm --enable-authn-alias --enable-authz-dbm --enable-authnz-ldap --enable-deflate --enable-logio --enable-mime-magic --enable-version --enable-ssl --enable-http --enable-dav --enable-cgi --enable-cgid --enable-dav-fs --enable-dav-lock --enable-vhost-alias --enable-ldap --with-ldap
make
make install
cd /usr/local/src/subversion-1.6.0
./configure --enable-shared --disable-static --with-apxs=/usr/local/apache2/bin/apxs --disable-mod-activation
make
make install




I have now successfully compiled both.  My next issue is that there was already a version of apache on the server.  Now there are 2 versions, as the compile of the newest source did not upgrade what was currently installed.  
I now need figure out where to put the repository conf file so that I don't get the following error when I log in to the repo.

你可能感兴趣的:(apache,SVN,File,Build,subversion,dependencies)