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