On Sat, Apr 6, 2013 at 12:31 PM, Daniel Shahaf <d...@daniel.shahaf.name> wrote:
> Looking a bit deeper, ap_log_error is implemented as a macro, so > mod_dav_svn shouldn't be looking it up as a symbol. > > https://svn.apache.org/repos/asf/httpd/httpd/tags/2.4.4/include/http_log.h > > I'm not quite sure why that would be happening. Did you compile svn and > httpd using the same C compiler (our configure would warn you if not)? I assume so? I did not get any warnings. > Is AP_HAVE_C99 defined? How do I check? Did svn's build use the right copy of http_log.h? How do I check? > > >> 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.