1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
# DP: Allow loading of extensions in the sqlite module
Index: b/setup.py
===================================================================
--- a/setup.py
+++ b/setup.py
@@ -1200,7 +1200,7 @@ class PyBuildExt(build_ext):
sqlite_defines.append(('MODULE_NAME', '\\"sqlite3\\"'))
# Comment this out if you want the sqlite3 module to be able to load extensions.
- sqlite_defines.append(("SQLITE_OMIT_LOAD_EXTENSION", "1"))
+ # sqlite_defines.append(("SQLITE_OMIT_LOAD_EXTENSION", "1"))
if host_platform == 'darwin':
# In every directory on the search path search for a dynamic
|