lua: fix build with MacOS's make
[openwrt/staging/blogic.git] / package / utils / lua / patches-host / 001-include-version-number.patch
1 From 96576b44a1b368bd6590eb0778ae45cc9ccede3f Mon Sep 17 00:00:00 2001
2 From: =?UTF-8?q?Rafa=C5=82=20Mi=C5=82ecki?= <rafal@milecki.pl>
3 Date: Fri, 21 Jun 2019 14:08:38 +0200
4 Subject: [PATCH] include version number
5
6 Including it allows multiple lua versions to coexist.
7
8 Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
9 ---
10
11 diff --git a/Makefile b/Makefile
12 --- a/Makefile
13 +++ b/Makefile
14 @@ -41,10 +41,10 @@ RANLIB= ranlib
15 PLATS= aix ansi bsd freebsd generic linux macosx mingw posix solaris
16
17 # What to install.
18 -TO_BIN= lua luac
19 +TO_BIN= lua$V luac$V
20 TO_INC= lua.h luaconf.h lualib.h lauxlib.h ../etc/lua.hpp
21 TO_LIB= liblua.a
22 -TO_MAN= lua.1 luac.1
23 +TO_MAN= lua$V.1 luac$V.1
24
25 # Lua version and release.
26 V= 5.1
27 @@ -53,7 +53,7 @@ R= 5.1.5
28 all: $(PLAT)
29
30 $(PLATS) clean:
31 - cd src && $(MAKE) $@
32 + cd src && $(MAKE) $@ V=$V
33
34 test: dummy
35 src/lua test/hello.lua
36 diff --git a/doc/lua.1 b/doc/lua5.1.1
37 rename from doc/lua.1
38 rename to doc/lua5.1.1
39 diff --git a/doc/luac.1 b/doc/luac5.1.1
40 rename from doc/luac.1
41 rename to doc/luac5.1.1
42 diff --git a/src/Makefile b/src/Makefile
43 --- a/src/Makefile
44 +++ b/src/Makefile
45 @@ -29,10 +29,10 @@ CORE_O= lapi.o lcode.o ldebug.o ldo.o ldump.o lfunc.o lgc.o llex.o lmem.o \
46 LIB_O= lauxlib.o lbaselib.o ldblib.o liolib.o lmathlib.o loslib.o ltablib.o \
47 lstrlib.o loadlib.o linit.o
48
49 -LUA_T= lua
50 +LUA_T= lua$V
51 LUA_O= lua.o
52
53 -LUAC_T= luac
54 +LUAC_T= luac$V
55 LUAC_O= luac.o print.o
56
57 ALL_O= $(CORE_O) $(LIB_O) $(LUA_O) $(LUAC_O)