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-syslog.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'jim-syslog.c') diff --git a/jim-syslog.c b/jim-syslog.c index 9e279ef..ad8af59 100644 --- a/jim-syslog.c +++ b/jim-syslog.c @@ -172,8 +172,7 @@ int Jim_syslogInit(Jim_Interp *interp) { SyslogInfo *info; - if (Jim_PackageProvide(interp, "syslog", "1.0", JIM_ERRMSG)) - return JIM_ERR; + Jim_PackageProvideCheck(interp, "syslog"); info = Jim_Alloc(sizeof(*info)); -- cgit v1.1