1 diff -ru lua-5.2.1/Makefile lua-5.2.1.new/Makefile
2 --- lua-5.2.1/Makefile 2012-05-17 16:05:54.000000000 +0200
3 +++ lua-5.2.1.new/Makefile 2012-09-12 22:39:07.162748096 +0200
9 + cd src && $(MAKE) $@ V=$(V) R=$(R)
13 diff -ru lua-5.2.1/src/luaconf.h lua-5.2.1.new/src/luaconf.h
14 --- lua-5.2.1/src/luaconf.h 2012-05-11 16:14:42.000000000 +0200
15 +++ lua-5.2.1.new/src/luaconf.h 2012-09-12 22:40:27.986622772 +0200
19 #define LUA_VDIR LUA_VERSION_MAJOR "." LUA_VERSION_MINOR "/"
20 -#define LUA_ROOT "/usr/local/"
21 +#define LUA_ROOT "/usr/"
22 #define LUA_LDIR LUA_ROOT "share/lua/" LUA_VDIR
23 #define LUA_CDIR LUA_ROOT "lib/lua/" LUA_VDIR
24 #define LUA_PATH_DEFAULT \
25 diff -ru lua-5.2.1/src/Makefile lua-5.2.1.new/src/Makefile
26 --- lua-5.2.1/src/Makefile 2012-03-09 17:32:16.000000000 +0100
27 +++ lua-5.2.1.new/src/Makefile 2012-09-12 22:38:08.591386896 +0200
29 PLATS= aix ansi bsd freebsd generic linux macosx mingw posix solaris
33 CORE_O= lapi.o lcode.o lctype.o ldebug.o ldo.o ldump.o lfunc.o lgc.o llex.o \
34 lmem.o lobject.o lopcodes.o lparser.o lstate.o lstring.o ltable.o \
35 ltm.o lundump.o lvm.o lzio.o
39 ALL_O= $(BASE_O) $(LUA_O) $(LUAC_O)
40 -ALL_T= $(LUA_A) $(LUA_T) $(LUAC_T)
41 +ALL_T= $(LUA_A) $(LUA_T) $(LUAC_T) $(LUA_SO)
49 +$(LUA_SO): $(CORE_O) $(LIB_O)
50 + $(CC) -shared -ldl -Wl,-soname,$(LUA_SO).$(V) -o $@.$(R) $? -lm $(MYLDFLAGS)
51 + ln -sf $(LUA_SO).$(R) $(LUA_SO).$(V)
52 + ln -sf $(LUA_SO).$(R) $(LUA_SO)
55 $(LUA_T): $(LUA_O) $(LUA_A)
56 $(CC) -o $@ $(LDFLAGS) $(LUA_O) $(LUA_A) $(LIBS)