From 3344fe2a65c5d152d0f8466e5219e0437808ed0b Mon Sep 17 00:00:00 2001 From: Romain Forlot Date: Thu, 29 Nov 2018 11:44:14 +0100 Subject: Fix: compiling a controller without LUA support Bug-AGL: SPEC-1979 Change-Id: I92c22136a7e6bca6557a306824f7dc8c0ae2bf47 Signed-off-by: Romain Forlot --- ctl-lib/ctl-plugin.c | 5 +++++ ctl-lib/ctl-plugin.h | 1 + 2 files changed, 6 insertions(+) diff --git a/ctl-lib/ctl-plugin.c b/ctl-lib/ctl-plugin.c index be3a2bf..48b79d1 100644 --- a/ctl-lib/ctl-plugin.c +++ b/ctl-lib/ctl-plugin.c @@ -235,10 +235,15 @@ static int LoadFoundPlugins(AFB_ApiT apiHandle, json_object *scanResult, json_ob return -1; } else if(ext && !strcasecmp(ext, CTL_SCRIPT_EXT)) { +#ifndef CONTROL_SUPPORT_LUA + AFB_ApiError(apiHandle, "LUA support not selected (cf:CONTROL_SUPPORT_LUA) in config.cmake"); + return -1; +#else ctlPlugin->api = apiHandle; ctlPlugin->context = handle; if(LuaLoadScript(apiHandle, pluginpath)) return -1; +#endif } } diff --git a/ctl-lib/ctl-plugin.h b/ctl-lib/ctl-plugin.h index 0ae6fbf..56cd465 100644 --- a/ctl-lib/ctl-plugin.h +++ b/ctl-lib/ctl-plugin.h @@ -28,6 +28,7 @@ extern "C" { #define _GNU_SOURCE #endif +#include #include #include "afb-definitions.h" -- cgit 1.2.3-korg