Allow setting of LUA_VERSION for pkg-config.

This commit is contained in:
Joris Vink 2023-01-23 21:33:11 +01:00
parent 4718bae098
commit 24390b8d6b
1 changed files with 2 additions and 2 deletions

View File

@ -119,8 +119,8 @@ endif
ifneq ("$(LUA)", "")
S_SRC+=src/lua.c
KORE_LUA_LIB?=$(shell pkg-config --libs lua)
KORE_LUA_INC?=$(shell pkg-config --cflags lua)
KORE_LUA_LIB?=$(shell pkg-config --libs lua$(LUA_VERSION))
KORE_LUA_INC?=$(shell pkg-config --cflags lua$(LUA_VERSION))
LDFLAGS+=$(KORE_LUA_LIB)
CFLAGS+=$(KORE_LUA_INC) -DKORE_USE_LUA
FEATURES+=-DKORE_USE_LUA