8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81148c6 commit 9c74678Copy full SHA for 9c74678
setup.py
@@ -1416,6 +1416,8 @@ def detect_sqlite(self):
1416
# if --enable-loadable-sqlite-extensions configure option is used.
1417
if '--enable-loadable-sqlite-extensions' not in sysconfig.get_config_var("CONFIG_ARGS"):
1418
sqlite_defines.append(("SQLITE_OMIT_LOAD_EXTENSION", "1"))
1419
+ elif MACOS and sqlite_incdir == os.path.join(MACOS_SDK_ROOT, "usr/include"):
1420
+ raise DistutilsError("System version of SQLite does not support loadable extensions")
1421
1422
if MACOS:
1423
# In every directory on the search path search for a dynamic
0 commit comments