diff options
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) |