diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-05-04 22:23:08 -0300 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2019-05-30 15:09:17 +0000 |
commit | bc041ed545bd56d993d0888f6cae1f85d67da7db (patch) | |
tree | 838021d0e6beb5511d8fdc4859a71971fb34f87e /community/bam/use-lua5.3.patch | |
parent | 07afa39066e95f755681d4f81658f98f572efb36 (diff) | |
download | aports-bc041ed545bd56d993d0888f6cae1f85d67da7db.tar.bz2 aports-bc041ed545bd56d993d0888f6cae1f85d67da7db.tar.xz |
community/bam: enable check and modernize
- Fix license
- Use modern style
- Fix compilation of tests against lua5.3
Diffstat (limited to 'community/bam/use-lua5.3.patch')
-rw-r--r-- | community/bam/use-lua5.3.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/community/bam/use-lua5.3.patch b/community/bam/use-lua5.3.patch new file mode 100644 index 0000000000..02a96ad6af --- /dev/null +++ b/community/bam/use-lua5.3.patch @@ -0,0 +1,17 @@ +diff --git a/Makefile b/Makefile +index d804874..c661181 100644 +--- a/Makefile ++++ b/Makefile +@@ -9,9 +9,9 @@ PYTHON ?= python + + + # flags +-LUA_LIBS := $(shell $(PKG_CONFIG) --libs lua 2>/dev/null || echo "-llua") ++LUA_LIBS := $(shell $(PKG_CONFIG) --libs lua5.3 2>/dev/null || echo "-llua") + LIBS += -lm -lpthread $(LUA_LIBS) -ldl +-LUA_CFLAGS := $(shell $(PKG_CONFIG) --cflags lua 2>/dev/null || echo "-I/usr/include/lua") ++LUA_CFLAGS := $(shell $(PKG_CONFIG) --cflags lua5.3 2>/dev/null || echo "-I/usr/include/lua") + CFLAGS += $(LUA_CFLAGS) + + + |