summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2002-06-14 20:30:31 (GMT)
committerSkip Montanaro <skip@pobox.com>2002-06-14 20:30:31 (GMT)
commit57454e57f83b407dd2653cbfcead7c9801beeff0 (patch)
tree9912260067e5a620752d6a218637578d58cd70da /Misc
parenta0c5e9fb745ce0491b56c537c78ccfa598c879a5 (diff)
downloadcpython-57454e57f83b407dd2653cbfcead7c9801beeff0.zip
cpython-57454e57f83b407dd2653cbfcead7c9801beeff0.tar.gz
cpython-57454e57f83b407dd2653cbfcead7c9801beeff0.tar.bz2
This introduces stricter library/header file checking for the Berkeley DB
library. Since multiple versions can be installed simultaneously, it's crucial that you only select libraries and header files which are compatible with each other. Version checking is done from highest version to lowest. Building using version 1 of Berkeley DB is disabled by default because of the hash file bugs people keep rediscovering. It can be enabled by uncommenting a few lines in setup.py. Closes patch 553108.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 4a949f4..758a347 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -276,6 +276,11 @@ Build
- The tools used to build the documentation now work under Cygwin as
well as Unix.
+- The bsddb and dbm module builds have been changed to try and avoid version
+ skew problems and disable linkage with Berkeley DB 1.85 unless the
+ installer knows what s/he's doing. See the section on building these
+ modules in the README file for details.
+
C API
- Added new macro PySequence_ITEM(o, i) that directly calls