diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2018-07-23 23:27:51 -0500 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2018-07-23 23:27:51 -0500 |
commit | 824481ba4d56dcd644fccdf8d6236b87b9799184 (patch) | |
tree | 0374291d6213526e56aabb9044899182a2388408 /user/highlight/lua.patch | |
parent | f9094d3de016101f4cf8ba79f924e3a66a4d9453 (diff) | |
download | packages-824481ba4d56dcd644fccdf8d6236b87b9799184.tar.gz packages-824481ba4d56dcd644fccdf8d6236b87b9799184.tar.bz2 packages-824481ba4d56dcd644fccdf8d6236b87b9799184.tar.xz packages-824481ba4d56dcd644fccdf8d6236b87b9799184.zip |
user/highlight: death to multi-versioned lua
Diffstat (limited to 'user/highlight/lua.patch')
-rw-r--r-- | user/highlight/lua.patch | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/user/highlight/lua.patch b/user/highlight/lua.patch deleted file mode 100644 index b7c71781d..000000000 --- a/user/highlight/lua.patch +++ /dev/null @@ -1,27 +0,0 @@ ---- a/src/makefile -+++ b/src/makefile -@@ -13,7 +13,8 @@ - # See src/gui-qt/highlight.pro for the Qt GUI compilation options - - #CXX=clang++ --CXX=g++ -+#CXX=g++ -+CXX ?= c++ - - # was: qmake-qt5 - QMAKE=qmake -@@ -38,11 +39,11 @@ - - # If Lua 5.2 is not default on your system yet you have to - # use lua5.1 in the pkg-config calls -- --LUA_CFLAGS=$(shell pkg-config --cflags lua) -+LUAPC ?= lua5.3 -+LUA_CFLAGS=$(shell pkg-config --cflags $(LUAPC)) - - # default lua lib --LUA_LIBS=$(shell pkg-config --libs lua) -+LUA_LIBS=$(shell pkg-config --libs $(LUAPC)) - - # luajit lib - # LUA_LIBS=$(shell pkg-config --libs luajit) |