Hello. I'm trying to install viewVC for browsing svn and getting this error
undefined symbol: dav_register_provider (/usr/libexec/mod_dav_svn.so)
when doing
ldd -r /usr/libexec/mod_dav_svn.so
For start up viewVC I need to apache http server. This symbol cant be loaded by
apache when I load such module.
In google I found that such module dont support by appache any more. I tryed
reinstall subversion from source (1.8.9) whith
such options
./configure \
--prefix=/usr \
--libdir=/usr/lib${LIBDIRSUFFIX} \
--mandir=/usr/man \
--docdir=/usr/doc/subversion-$VERSION \
--enable-shared \
--disable-static \
--with-apr=/usr \
--with-apr-util=/usr \
--with-apxs=/usr/bin/apxs \
--with-neon=/usr \
--with-zlib=/usr \
--with-pcre=/usr \
--with-pic \
--with-ssl \
--with-kwallet \
--build=$ARCH-slackware-linux \
--enable-so \
--enable-module-dav
But have the same error. Could you let me know why I have this error?