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 94a3d2a commit 2ec9428Copy full SHA for 2ec9428
setup.py
@@ -1605,6 +1605,8 @@ def detect_sqlite(self):
1605
# if --enable-loadable-sqlite-extensions configure option is used.
1606
if '--enable-loadable-sqlite-extensions' not in sysconfig.get_config_var("CONFIG_ARGS"):
1607
sqlite_defines.append(("SQLITE_OMIT_LOAD_EXTENSION", "1"))
1608
+ elif MACOS and sqlite_incdir == os.path.join(MACOS_SDK_ROOT, "usr/include"):
1609
+ raise DistutilsError("System version of SQLite does not support loadable extensions")
1610
1611
if MACOS:
1612
# In every directory on the search path search for a dynamic
0 commit comments