mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
db_incs is needed
This commit is contained in:
parent
6ba2332f55
commit
6ecc5c1980
1 changed files with 14 additions and 0 deletions
14
setup.py
14
setup.py
|
@ -665,6 +665,20 @@ class PyBuildExt(build_ext):
|
|||
# implementation independent wrapper for these; dbm/dumb.py provides
|
||||
# similar functionality (but slower of course) implemented in Python.
|
||||
|
||||
db_inc_paths = [
|
||||
'/usr/include/db4',
|
||||
'/usr/local/include/db4',
|
||||
'/opt/sfw/include/db4',
|
||||
'/usr/include/db3',
|
||||
'/usr/local/include/db3',
|
||||
'/opt/sfw/include/db3',
|
||||
# Fink defaults (http://fink.sourceforge.net/)
|
||||
'/sw/include/db4',
|
||||
'/sw/include/db3',
|
||||
]
|
||||
|
||||
db_incs = None
|
||||
|
||||
# The sqlite interface
|
||||
sqlite_setup_debug = False # verbose debug prints from this script?
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue