Marcus Comstedt <marcus@mc.pp.se> writes:
> How do I install the bsddb module? If it is required by cvs2svn, it
> should probably import it explicitly rather than using anydbm, with a
> note about it in the README.
There's code near the beginning of cvs2svn that's supposed to make
sure we get the right db:
-----------------------------------------------------------------------------
# Don't settle for less.
if anydbm._defaultmod.__name__ == 'dumbdbm':
print 'ERROR: your installation of Python does not contain a proper'
print ' DBM module. This script cannot continue.'
print ' to solve: see http://python.org/doc/current/lib/module-anydbm.html'
print ' for details.'
sys.exit(1)
-----------------------------------------------------------------------------
But it only makes sure we don't get 'dumbdbm'. Maybe it needs to do
more? I don't have time to write/test a patch, but I would be happy
to review/apply one...
-Karl
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Fri Aug 22 17:35:25 2003