In message <87ioz5iypv....@ntlworld.com>, Philip Martin writes: >install-mods-shared: subversion/mod_dav_svn/mod_dav_svn.la subversion/mod_auth >z_svn/mod_authz_svn.la > if $(INSTALL_APACHE_MODS) ; then cd subversion/mod_dav_svn ; $(MKDIR) >"$(APACHE_LIBEXECDIR)" ; $(INSTALL_MOD_SHARED) -n dav_svn mod_dav_svn.la ; fi
$ make -n install if true ; then cd subversion/mod_dav_svn ; /tmp/subversion-1.8.1/build/install-sh -c -d "/opt/subversion/libexec" ; /opt/subversion/apache2/bin/apxs -i -S LIBEXECDIR="/opt/subversion/libexec" -n dav_svn mod_dav_svn.la ; fi This doesn't match INSTALL which suggests they should go to /path/to/httpd/modules: After the make install, the Subversion shared libraries are in /usr/local/lib/. mod_dav_svn.so should be installed in /usr/local/apache2/modules/. John groenv...@acm.org