mirror of
https://github.com/python/cpython.git
synced 2025-09-27 02:39:58 +00:00
Issue #15560: Fix building _sqlite3 extension on OS X with an SDK.
This commit is contained in:
parent
947f358a06
commit
670280470d
2 changed files with 6 additions and 4 deletions
8
setup.py
8
setup.py
|
@ -1028,12 +1028,12 @@ class PyBuildExt(build_ext):
|
|||
if sys.platform == 'darwin':
|
||||
sysroot = macosx_sdk_root()
|
||||
|
||||
for d in inc_dirs + sqlite_inc_paths:
|
||||
f = os.path.join(d, "sqlite3.h")
|
||||
|
||||
for d_ in inc_dirs + sqlite_inc_paths:
|
||||
d = d_
|
||||
if sys.platform == 'darwin' and is_macosx_sdk_path(d):
|
||||
f = os.path.join(sysroot, d[1:], "sqlite3.h")
|
||||
d = os.path.join(sysroot, d[1:])
|
||||
|
||||
f = os.path.join(d, "sqlite3.h")
|
||||
if os.path.exists(f):
|
||||
if sqlite_setup_debug: print "sqlite: found %s"%f
|
||||
incf = open(f).read()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue