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-readdir.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'jim-readdir.c') diff --git a/jim-readdir.c b/jim-readdir.c index d7c0e40..07c558e 100644 --- a/jim-readdir.c +++ b/jim-readdir.c @@ -114,9 +114,7 @@ int Jim_ReaddirCmd(Jim_Interp *interp, int argc, Jim_Obj *const *argv) int Jim_readdirInit(Jim_Interp *interp) { - if (Jim_PackageProvide(interp, "readdir", "1.0", JIM_ERRMSG)) - return JIM_ERR; - + Jim_PackageProvideCheck(interp, "readdir"); Jim_CreateCommand(interp, "readdir", Jim_ReaddirCmd, NULL, NULL); return JIM_OK; } -- cgit v1.1