Re: [pysqlite] Is this error due to my Linux version?
Gerhard Häring <[email protected]> Wed, 13 Aug 2008 18:22:19 +0200
| Newsgroups | gmane.comp.python.db.pysqlite.user |
|---|---|
| Message-ID | <[email protected]> |
Ed Pasma wrote: > Hello. > > The build was threadsafe and the conclusion is that SuSE 9 2.4.21 > linux kernel does not support SQLite cache sharing. Unless other > feedback .. > > I'm happy to know that at least Ubuntu 8.04.1 is alright. It's certainly not the kernel's fault. Here's something that should fix it. You can try to build against the SQLite amalgamation instead. With the tip version in Mercurial, it works all in these steps (provided setuptools is installed): $ wget http://oss.itsystementwicklung.de/hg/pysqlite/archive/tip.tar.gz $ tar xvfz tip.tar.gz $ cd pysqlite-* $ python extended_setup.py build_static Voila! No dependency on the system's SQLite any longer. -- Gerhard