Kaydet (Commit) 8690ae57 authored tarafından Matthias Klose's avatar Matthias Klose

- Accept Oracle Berkeley DB 5.0 and 5.1 as backend for the dbm extension.

üst c961322f
...@@ -109,6 +109,8 @@ Build ...@@ -109,6 +109,8 @@ Build
- Issue #10094: Use versioned .so files on GNU/kfreeBSD and the GNU Hurd. - Issue #10094: Use versioned .so files on GNU/kfreeBSD and the GNU Hurd.
- Accept Oracle Berkeley DB 5.0 and 5.1 as backend for the dbm extension.
What's New in Python 3.2 Alpha 3? What's New in Python 3.2 Alpha 3?
================================= =================================
......
...@@ -729,7 +729,7 @@ class PyBuildExt(build_ext): ...@@ -729,7 +729,7 @@ class PyBuildExt(build_ext):
# a release. Most open source OSes come with one or more # a release. Most open source OSes come with one or more
# versions of BerkeleyDB already installed. # versions of BerkeleyDB already installed.
max_db_ver = (4, 8) max_db_ver = (5, 1)
min_db_ver = (3, 3) min_db_ver = (3, 3)
db_setup_debug = False # verbose debug prints from this script? db_setup_debug = False # verbose debug prints from this script?
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment