Displaying 1 result from an estimated 1 matches for "function_defined".
2018 Oct 01
2
[PATCH nbdkit] plugins: Add scripting language version to --dump-plugin output.
...python/python.c | 8 ++++++++
plugins/ruby/ruby.c | 14 ++++++++++++++
plugins/tcl/tcl.c | 8 ++++++++
5 files changed, 45 insertions(+)
diff --git a/plugins/lua/lua.c b/plugins/lua/lua.c
index a73a4da..2bad44c 100644
--- a/plugins/lua/lua.c
+++ b/plugins/lua/lua.c
@@ -102,6 +102,17 @@ function_defined (const char *name)
static void
lua_plugin_dump_plugin (void)
{
+#ifdef LUA_VERSION_MAJOR
+ printf ("lua_version=%s", LUA_VERSION_MAJOR);
+#ifdef LUA_VERSION_MINOR
+ printf (".%s", LUA_VERSION_MINOR);
+#ifdef LUA_VERSION_RELEASE
+ printf (".%s", LUA_VERSION_RELEAS...