Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
15bac0f4
Commit
15bac0f4
authored
Jul 01, 2012
by
doko@ubuntu.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Issue #15235: Allow Berkley DB versions up to 5.3 to build the dbm module.
parent
487f191b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
Misc/NEWS
Misc/NEWS
+2
-0
setup.py
setup.py
+1
-1
No files found.
Misc/NEWS
View file @
15bac0f4
...
...
@@ -51,6 +51,8 @@ Build
- Issue #14330: For cross builds, don'
t
use
host
python
,
use
host
search
paths
for
host
compiler
.
-
Issue
#
15235
:
Allow
Berkley
DB
versions
up
to
5.3
to
build
the
dbm
module
.
What
's New in Python 3.3.0 Beta 1?
==================================
...
...
setup.py
View file @
15bac0f4
...
...
@@ -830,7 +830,7 @@ class PyBuildExt(build_ext):
# a release. Most open source OSes come with one or more
# versions of BerkeleyDB already installed.
max_db_ver
=
(
5
,
1
)
max_db_ver
=
(
5
,
3
)
min_db_ver
=
(
3
,
3
)
db_setup_debug
=
False
# verbose debug prints from this script?
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment