[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: during make install - "error while loading shared libraries: libaprutil-1.so.0"

From: James Morse <jsmm104_at_ecs.soton.ac.uk>
Date: 2006-11-27 18:33:25 CET

> I configured using the paths for apr and apr-util as you have
> suggested. Curiously, there is now no problem during make install but
> there is still a problem when I try executing svnadmin.
>
Run 'ldd' against 'svnadmin' eg: "ldd /usr/local/bin/svnadmin".
You should get a list of libraries that the program should be linked to,
and where they are in the file system:

$ ldd /usr/local/bin/svnadmin | grep libaprutil
libaprutil-1.so.0 => /usr/lib/libaprutil-1.so.0 (0xb7eda000)

If 'libaprutil-1.so.0' isn't found, you should check to see if the file
exists. If it does, check '/usr/local/lib' is in your 'ld.so.conf' and
run 'ldconfig'. Alternatively, you may be missing a symlink. For me,
'/usr/local/lib/libaprutil-1.so.0' is a symlink to
'libaprutil-1.so.x.x.x' in the same directory, where 'x' is the version
number of AprUtil. Create the symlink if it is missing, and re-run
'ldconfig'.

James Morse

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Mon Nov 27 18:34:46 2006

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.