From 41731dbab71a7aff2e80657e6f7a922be15dfe2b Mon Sep 17 00:00:00 2001 From: Jan-Piet Mens Date: Fri, 6 Nov 2015 11:50:55 +0100 Subject: [PATCH] clarify Lua flags closes #68 --- config.mk.in | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/config.mk.in b/config.mk.in index aba2ac3..591beff 100644 --- a/config.mk.in +++ b/config.mk.in @@ -59,5 +59,10 @@ MOSQUITTO_INC = -I/usr/include MOSQUITTO_LIB = -L/usr/lib MORELIBS = # -lssl +# If WITH_LUA is configured, specify compilation and linkage flags +# for Lua either manually or using pkg-config. This may require tweaking, +# and in particular could require you to add the lua+version (e.g lua-5.2) +# to both pkg-config invocations + LUA_CFLAGS = `pkg-config --cflags lua` LUA_LIBS = `pkg-config --libs lua`