You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by Alain Petignat <al...@sequenz.ch> on 2004/11/09 19:22:43 UTC

Cannot oben libsvn_repos-1.so.0

Hi all,

I am having a hard time to get a Subversion-Server running. After i 
compile everything;

apache2 (httpd-2.0.52):
./configure --prefix=/usr/local/apache2 --enable-dav --enable-so 
--enable-ssl --enable-maintainer-mode

svn:
./configure --with-apxs2=/usr/local/apache2/bin/apxs 
--enable-maintainer-mode

This adds these lines
# SVN-Moules
LoadModule dav_svn_module     modules/mod_dav_svn.so
LoadModule authz_svn_module   modules/mod_authz_svn.so

They seem to exist fine:

# find /usr/local/apache2/ -name mod_dav_svn.so
/usr/local/apache2/modules/mod_dav_svn.so

# find /usr/local/apache2/ -name mod_authz_svn.so
/usr/local/apache2/modules/mod_authz_svn.so

# locate libsvn_repos-1.so.0
/usr/local/lib/libsvn_repos-1.so.0.0.0
/usr/local/lib/libsvn_repos-1.so.0

When i restart apache2, i get a:

# /etc/rc.d/rc.httpd restart
Syntax error on line 235 of /usr/local/apache2/conf/httpd.conf:
Cannot load /usr/local/apache2/modules/mod_dav_svn.so into server: 
libsvn_repos-1.so.0: cannot open shared object file: No such file or 
directory

What am i doing wrong? Someone's got a hint for me?

Sorry if this is obvious.

Thanks, Alain.

-- 
alain petignat - www.sequenz.ch

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org

Re: Cannot oben libsvn_repos-1.so.0

Posted by Alain Petignat <al...@sequenz.ch>.
Christopher Ness wrote:
>># /etc/rc.d/rc.httpd restart
>>Syntax error on line 235 of /usr/local/apache2/conf/httpd.conf:
>>Cannot load /usr/local/apache2/modules/mod_dav_svn.so into server: 
>>libsvn_repos-1.so.0: cannot open shared object file: No such file or 
>>directory
> 
> Did you update /etc/ld.so.conf to include /usr/local/lib and then run
> `/sbin/ldconfig`?

Since i did, it starts calmly :)

Thanks a lot
Alain
-- 
alain petignat - www.sequenz.ch

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org

Re: Cannot oben libsvn_repos-1.so.0

Posted by Christopher Ness <ch...@nesser.org>.
On Tue, 2004-11-09 at 14:22, Alain Petignat wrote:
> apache2 (httpd-2.0.52):
> ./configure --prefix=/usr/local/apache2 --enable-dav --enable-so 
> --enable-ssl --enable-maintainer-mode
> 
> svn:
> ./configure --with-apxs2=/usr/local/apache2/bin/apxs 
> --enable-maintainer-mode
> 
<snip />
> # locate libsvn_repos-1.so.0
> /usr/local/lib/libsvn_repos-1.so.0.0.0
> /usr/local/lib/libsvn_repos-1.so.0
> 
> When i restart apache2, i get a:
> 
> # /etc/rc.d/rc.httpd restart
> Syntax error on line 235 of /usr/local/apache2/conf/httpd.conf:
> Cannot load /usr/local/apache2/modules/mod_dav_svn.so into server: 
> libsvn_repos-1.so.0: cannot open shared object file: No such file or 
> directory

Did you update /etc/ld.so.conf to include /usr/local/lib and then run
`/sbin/ldconfig`?

Chris