diff options
author | Skip Montanaro <skip@pobox.com> | 2003-05-02 15:27:59 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2003-05-02 15:27:59 (GMT) |
commit | 6dc4a8e3fb7c9b290ee867f167af1395643705a1 (patch) | |
tree | 849c760c5977431f52b0892db4ef4e05e8cbf1d4 /README | |
parent | 2e973c03f393d194e07ad3b61ca9f6f4a4bb80f8 (diff) | |
download | cpython-6dc4a8e3fb7c9b290ee867f167af1395643705a1.zip cpython-6dc4a8e3fb7c9b290ee867f167af1395643705a1.tar.gz cpython-6dc4a8e3fb7c9b290ee867f167af1395643705a1.tar.bz2 |
add note about building with bsddb185 and making it appear as bsddb.
Diffstat (limited to 'README')
-rw-r--r-- | README | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -255,6 +255,21 @@ on these platforms without the special directions mentioned here, submit a documentation bug report to SourceForge (see Bug Reports above) so we can remove them!) +Unix platforms: If your vendor still ships (and you still use) Berkeley DB + 1.85 you will need to edit Modules/Setup to build the bsddb185 + module and add a line to sitecustomize.py which makes it the + default. In Modules/Setup a line like + + bsddb185 bsddbmodule.c + + should work. (You may need to add -I, -L or -l flags to direct the + compiler and linker to your include files and libraries.) You can + then force it to be the version people import by adding + + import bsddb185 as bsddb + + in sitecustomize.py. + 64-bit platforms: The modules audioop, imageop and rgbimg don't work. The setup.py script disables them on 64-bit installations. Don't try to enable them in the Modules/Setup file. They |