From 8f3e1ce80995c42a200db98fbfe02e4a60771c26 Mon Sep 17 00:00:00 2001 From: Steve Bennett Date: Sun, 10 Jan 2021 13:12:36 +1000 Subject: package: add ABI version checking jim.h now includes JIM_ABI_VERSION that should be incremented whenever the ABI changes. Then all loadable modules should call Jim_CheckAbiVersion() to make sure they are loaded against the correct version. Add Jim_PackageProvideCheck() that does both Jim_CheckAbiVersion() and Jim_PackageProvide() to simplify the implementation of loadable extensions. Also rename the "big" sqlite3 extension to just sqlite to avoid a naming conflict with the smaller jim-sqlite3 extension. Signed-off-by: Steve Bennett --- jim-array.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'jim-array.c') diff --git a/jim-array.c b/jim-array.c index a0ccecd..a21099d 100644 --- a/jim-array.c +++ b/jim-array.c @@ -259,9 +259,7 @@ static const jim_subcmd_type array_command_table[] = { int Jim_arrayInit(Jim_Interp *interp) { - if (Jim_PackageProvide(interp, "array", "1.0", JIM_ERRMSG)) - return JIM_ERR; - + Jim_PackageProvideCheck(interp, "array"); Jim_CreateCommand(interp, "array", Jim_SubCmdProc, (void *)array_command_table, NULL); return JIM_OK; } -- cgit v1.1