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
f9ac700b
Commit
f9ac700b
authored
Dec 30, 2002
by
Barry Warsaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Search for and use BerkeleyDB 4.1 if it's available. Python's
extension module now supports it.
parent
ca3844e4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
10 deletions
+9
-10
setup.py
setup.py
+9
-10
No files found.
setup.py
View file @
f9ac700b
...
...
@@ -449,27 +449,26 @@ class PyBuildExt(build_ext):
# implementation independent wrapper for these; dumbdbm.py provides
# similar functionality (but slower of course) implemented in Python.
# Sleepycat Berkeley DB interface.
# Sleepycat Berkeley DB interface.
http://www.sleepycat.com
#
# This requires the Sleepycat DB code, see
# http://www.sleepycat.com/ The earliest supported version of
# that library is 3.0, the latest supported version is 4.0
# (4.1 is specifically not supported, as that changes the
# semantics of transactional databases). A list of available
# releases can be found at
# This requires the Sleepycat DB code. The earliest supported version
# of that library is 3.0, the latest supported version is 4.1. A list
# of available releases can be found at
#
# http://www.sleepycat.com/update/index.html
# when sorted in reverse order, keys for this dict must appear in the
# order you wish to search - e.g., search for db4 before db3
db_try_this
=
{
'db4'
:
{
'libs'
:
(
'db-4.0'
,),
'libdirs'
:
(
'/usr/local/BerkeleyDB.4.0/lib'
,
'db4'
:
{
'libs'
:
(
'db-4.1'
,
'db-4.0'
,),
'libdirs'
:
(
'/usr/local/BerkeleyDB.4.1/lib'
,
'/usr/local/BerkeleyDB.4.0/lib'
,
'/usr/local/lib'
,
'/opt/sfw'
,
'/sw/lib'
,
),
'incdirs'
:
(
'/usr/local/BerkeleyDB.4.0/include'
,
'incdirs'
:
(
'/usr/local/BerkeleyDB.4.1/include'
,
'/usr/local/BerkeleyDB.4.0/include'
,
'/usr/local/include/db4'
,
'/opt/sfw/include/db4'
,
'/sw/include/db4'
,
...
...
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