archrelease: copy trunk to staging-x86_64
[arch-packages.git] / lua / repos / extra-x86_64 / liblua.so.patch
blob197832116c19bf3c935e1287dc2a2243545d3c42
1 diff --git a/Makefile b/Makefile
2 index 416f444..eeaff03 100644
3 --- a/Makefile
4 +++ b/Makefile
5 @@ -52,7 +52,7 @@ R= $V.0
6 all: $(PLAT)
8 $(PLATS) help test clean:
9 - @cd src && $(MAKE) $@
10 + @cd src && $(MAKE) $@ V=$(V) R=$(R)
12 install: dummy
13 cd src && $(MKDIR) $(INSTALL_BIN) $(INSTALL_INC) $(INSTALL_LIB) $(INSTALL_MAN) $(INSTALL_LMOD) $(INSTALL_CMOD)
14 diff --git a/src/Makefile b/src/Makefile
15 index 514593d..372a6dc 100644
16 --- a/src/Makefile
17 +++ b/src/Makefile
18 @@ -33,6 +33,7 @@ CMCFLAGS= -Os
19 PLATS= guess aix bsd c89 freebsd generic linux linux-readline macosx mingw posix solaris
21 LUA_A= liblua.a
22 +LUA_SO= liblua.so
23 CORE_O= lapi.o lcode.o lctype.o ldebug.o ldo.o ldump.o lfunc.o lgc.o llex.o lmem.o lobject.o lopcodes.o lparser.o lstate.o lstring.o ltable.o ltm.o lundump.o lvm.o lzio.o
24 LIB_O= lauxlib.o lbaselib.o lcorolib.o ldblib.o liolib.o lmathlib.o loadlib.o loslib.o lstrlib.o ltablib.o lutf8lib.o linit.o
25 BASE_O= $(CORE_O) $(LIB_O) $(MYOBJS)
26 @@ -44,7 +45,7 @@ LUAC_T= luac
27 LUAC_O= luac.o
29 ALL_O= $(BASE_O) $(LUA_O) $(LUAC_O)
30 -ALL_T= $(LUA_A) $(LUA_T) $(LUAC_T)
31 +ALL_T= $(LUA_A) $(LUA_T) $(LUAC_T) $(LUA_SO)
32 ALL_A= $(LUA_A)
34 # Targets start here.
35 @@ -60,6 +61,12 @@ $(LUA_A): $(BASE_O)
36 $(AR) $@ $(BASE_O)
37 $(RANLIB) $@
39 +$(LUA_SO): $(CORE_O) $(LIB_O)
40 + $(CC) -shared -ldl -Wl,-soname,$(LUA_SO).$(V) -o $@.$(R) $? -lm $(MYLDFLAGS)
41 + ln -sf $(LUA_SO).$(R) $(LUA_SO).$(V)
42 + ln -sf $(LUA_SO).$(R) $(LUA_SO)
45 $(LUA_T): $(LUA_O) $(LUA_A)
46 $(CC) -o $@ $(LDFLAGS) $(LUA_O) $(LUA_A) $(LIBS)
48 diff --git a/src/luaconf.h b/src/luaconf.h
49 index bdf927e..7e15198 100644
50 --- a/src/luaconf.h
51 +++ b/src/luaconf.h
52 @@ -227,7 +227,7 @@
54 #else /* }{ */
56 -#define LUA_ROOT "/usr/local/"
57 +#define LUA_ROOT "/usr/"
58 #define LUA_LDIR LUA_ROOT "share/lua/" LUA_VDIR "/"
59 #define LUA_CDIR LUA_ROOT "lib/lua/" LUA_VDIR "/"