On Tue, Jul 06, 2010 at 03:03:02PM +0200, Onno van der Straaten wrote: > Hi Stefan, > apxs was not installed on my machine but I installed it (I think) using > sudo apt-get install apache2-threaded-dev > > After that I can pass > --with-apxs="/usr/bin/apxs2" to configure > > But then the sudo make install file fails with > apxs:Error: Activation failed for custom /etc/apache2/httpd.conf file.. > apxs:Error: At least one `LoadModule' directive already has to exist.. >
You should pass --disable-mod-activation to subversion's configure script. The build system is trying to modify your existing apache2 installation to load the mod_dav_svn you installed. I'd recommend configuring apache manually instead. Allowing the Subversion build to tweak configuration files in /etc is a bad idea, because it can interfere with your existing Apache setup, and with the way your distribution is managing /etc. Stefan