mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Support for BerkeleyDB 4.4 (tested against 4.4.20 as well as all the
way back thru 3.2). This should be backported to the release24-maint branch.
This commit is contained in:
parent
bab05c9604
commit
29602d2153
2 changed files with 21 additions and 5 deletions
8
setup.py
8
setup.py
|
@ -556,12 +556,12 @@ class PyBuildExt(build_ext):
|
|||
# Sleepycat Berkeley DB interface. http://www.sleepycat.com
|
||||
#
|
||||
# This requires the Sleepycat DB code. The earliest supported version
|
||||
# of that library is 3.2, the latest supported version is 4.3. A list
|
||||
# of that library is 3.2, the latest supported version is 4.4. A list
|
||||
# of available releases can be found at
|
||||
#
|
||||
# http://www.sleepycat.com/update/index.html
|
||||
|
||||
max_db_ver = (4, 3)
|
||||
max_db_ver = (4, 4)
|
||||
min_db_ver = (3, 2)
|
||||
db_setup_debug = False # verbose debug prints from this script?
|
||||
|
||||
|
@ -578,18 +578,20 @@ class PyBuildExt(build_ext):
|
|||
'/sw/include/db3',
|
||||
]
|
||||
# 4.x minor number specific paths
|
||||
for x in (0,1,2,3):
|
||||
for x in (0,1,2,3,4):
|
||||
db_inc_paths.append('/usr/include/db4%d' % x)
|
||||
db_inc_paths.append('/usr/include/db4.%d' % x)
|
||||
db_inc_paths.append('/usr/local/BerkeleyDB.4.%d/include' % x)
|
||||
db_inc_paths.append('/usr/local/include/db4%d' % x)
|
||||
db_inc_paths.append('/pkg/db-4.%d/include' % x)
|
||||
db_inc_paths.append('/opt/db-4.%d/include' % x)
|
||||
# 3.x minor number specific paths
|
||||
for x in (2,3):
|
||||
db_inc_paths.append('/usr/include/db3%d' % x)
|
||||
db_inc_paths.append('/usr/local/BerkeleyDB.3.%d/include' % x)
|
||||
db_inc_paths.append('/usr/local/include/db3%d' % x)
|
||||
db_inc_paths.append('/pkg/db-3.%d/include' % x)
|
||||
db_inc_paths.append('/opt/db-3.%d/include' % x)
|
||||
|
||||
db_ver_inc_map = {}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue