I am compiling Apache 2.4 and SVN 1.7 for the first time. I am getting the following error: ./apachectl configtest httpd: Syntax error on line 147 of /etc/apache2/conf/httpd.conf: Cannot load modules/mod_dav_svn.so into server: /etc/apache2/modules/mod_dav_svn.so: undefined symbol: ap_log_error
I installed all required libraries using the autogen.sh script I placed the apr and apr-util within the src of apache. I built apache first. ./configure --enable-dav --enable-so --enable-ssl --prefix=/etc/apache2 --with-included-apr --with-included-apr-util --enable-dav-fs --enable-dav-lock Then I built svn. ./configure --with-apr=/etc/apache2 --with-apr-util=/etc/apache2 --with-serf=/usr/local/serf --with-httpd --with-apxs=/etc/apache2/bin/apxs --with-apache-libexecdir=/etc/apache2/modules What am I missing? Thanks.