1
0
Fork 0
forked from fun/fun

More OpenSSL and documenation fun. No more words to say. (0.38.13)

This commit is contained in:
Johannes Findeisen 2026-02-19 14:05:14 +01:00
commit 38968a9a51
33 changed files with 498 additions and 88 deletions

View file

@ -73,7 +73,7 @@
#include "external/sqlite.c"
#include "external/tcltk.c"
#include "external/xml2.c"
#include "external/opensssl.c"
#include "external/openssl.c"
/* forward declarations for include mapping used in error reporting */
extern char *preprocess_includes(const char *src);
@ -869,8 +869,10 @@ void vm_run(VM *vm, Bytecode *entry) {
#include "vm/curl/download.c"
#endif
/* OpenSSL ops (md5) */
/* OpenSSL ops (md5/sha256/sha512) */
#include "vm/openssl/md5.c"
#include "vm/openssl/sha256.c"
#include "vm/openssl/sha512.c"
/* Tk (Tcl/Tk) ops */
#ifdef FUN_WITH_TCLTK