[Zope3-dev] Re: Zope 3 Tests on Linux and Windows

Christian Heimes heimes@faho.rwth-aachen.de
Tue, 06 May 2003 20:42:18 +0200


Chris Withers wrote:
> ...are hanging for me again.
> 
> I'm hoping this was an anomoly as I see there were some results from 
> FreeBSD today, however, if anyone knows why this might be, please shout!

I posted this some weeks ago. Please note that you should use 
http://belnet.dl.sourceforge.net/sourceforge/pybsddb/bsddb3-4.1.3.tar.gz. 
Maybe you could try even libdb4.1 but I didn't test it yet.

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 libdb4.

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