[Zope3-dev] FYI: debian and bsddb3 (zodb errors)

Christian Heimes heimes@faho.rwth-aachen.de
Thu, 10 Apr 2003 13:24:48 +0200


In the last weeks I got a hughe bunch of errors everytime I ran the test 
suite. Today I figured out why after I had a deeper glance on the error 
messages. The debian package python2.2-bsddb3 is linked against the 
libdb3 libs but zope3 needs liddb4.

For all debian users:
apt-get remove python2.2-bsddb3
apt-get install libdb4.0 libdb4.0-dev
download and unpack 
http://belnet.dl.sourceforge.net/sourceforge/pybsddb/bsddb3-3.4.0.tar.gz
python2.2 setup.py --berkeley-db=/usr/lib build
python2.2 setup.py --berkeley-db=/usr/lib install (as root)

Christian