On Oct 26, 2006, at 21:34, Atli Þorbjörnsson wrote: Yes thank you, that got it built. Unfortunately after installation I get the following
import pysvn Traceback (most recent call last): File "", line 1, in ? File "/usr/lib/python2.4/site-packages/pysvn/__init__.py", line 96, in ?
raise ImportError, 'pysvn was built against newer (svn, apr, etc.) libraries then the ones installed on this system. %s' % str(e) ImportError: pysvn was built against newer (svn, apr, etc.) libraries then the ones installed on this system. /usr/local/lib/libsvn_ra_local-
1.so.0: undefined symbol: svn_repos_fs_get_locks
Use the ldd command to find out which libs are being referred to by _pysvn.so:
ldd /usr/lib/python2.4/site-packages/pysvn/_pysvn.so
Oh and check that you have /usr/local/lib listed in /etc/ld.so.conf and that you have run ldconfig to update the shared lib cache.
Barry
|