1
0
Fork 0
forked from fun/fun

Removed all libsql support. (0.40.4)

This commit is contained in:
Johannes Findeisen 2026-04-03 19:10:15 +02:00
commit 74a003236d
13 changed files with 6 additions and 226 deletions

View file

@ -65,7 +65,6 @@
/* Note: INI opcode handlers are included below; changes in vm/ini/ .c files
* require vm.c to rebuild. */
#include "external/json.c"
#include "external/libsql.c"
#include "external/openssl.c"
#include "external/pcre2.c"
#include "external/pcsc.c"
@ -884,13 +883,7 @@ void vm_run(VM *vm, Bytecode *entry) {
}
#endif
/* libsql ops (independent) */
#ifdef FUN_WITH_LIBSQL
#include "vm/libsql/close.c"
#include "vm/libsql/exec.c"
#include "vm/libsql/open.c"
#include "vm/libsql/query.c"
#endif
/* libsql support removed */
/* PCRE2 ops */
#ifdef FUN_WITH_PCRE2