We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef28558 commit 80d3e9bCopy full SHA for 80d3e9b
1 file changed
libsql-ffi/build.rs
@@ -451,8 +451,10 @@ fn build_multiple_ciphers(out_path: &Path) -> PathBuf {
451
)
452
.unwrap();
453
454
+ // Copy the patched version of sqlite3.c that includes the necessary hooks
455
+ // for SQLite3 Multiple Ciphers (like sqlite3mcHandleAttachKey)
456
copy_with_cp(
- PathBuf::from(BUNDLED_DIR).join("src").join("sqlite3.c"),
457
+ PathBuf::from(BUNDLED_DIR).join("SQLite3MultipleCiphers").join("src").join("sqlite3patched.c"),
458
format!("{out_dir}/sqlite3mc/src/sqlite3.c"),
459
460
0 commit comments