Skip to content

Commit bf23519

Browse files
committed
fix: try to explicitly enable load-extension
because this configuration option seems to not be working on windows when building from source
1 parent b9b9912 commit bf23519

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ext/sqlite3/extconf.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ def configure_packaged_libraries
5252
recipe.configure_options += [
5353
"--disable-shared",
5454
"--enable-static",
55-
"--enable-fts5"
55+
"--enable-fts5",
56+
"--enable-load-extension"
5657
]
5758
ENV.to_h.tap do |env|
5859
user_cflags = with_config("sqlite-cflags")

0 commit comments

Comments
 (0)