liblua.so.patch 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. diff --git a/Makefile b/Makefile
  2. index 7fa91c8..dccf485 100644
  3. --- a/Makefile
  4. +++ b/Makefile
  5. @@ -52,7 +52,7 @@ R= $V.0
  6. all: $(PLAT)
  7. $(PLATS) clean:
  8. - cd src && $(MAKE) $@
  9. + cd src && $(MAKE) $@ V=$(V) R=$(R)
  10. test: dummy
  11. src/lua -v
  12. diff --git a/src/Makefile b/src/Makefile
  13. index 2e7a412..fa5769f 100644
  14. --- a/src/Makefile
  15. +++ b/src/Makefile
  16. @@ -29,6 +29,7 @@ MYOBJS=
  17. PLATS= aix bsd c89 freebsd generic linux macosx mingw posix solaris
  18. LUA_A= liblua.a
  19. +LUA_SO= liblua.so
  20. CORE_O= lapi.o lcode.o lctype.o ldebug.o ldo.o ldump.o lfunc.o lgc.o llex.o \
  21. lmem.o lobject.o lopcodes.o lparser.o lstate.o lstring.o ltable.o \
  22. ltm.o lundump.o lvm.o lzio.o
  23. @@ -43,7 +44,7 @@ LUAC_T= luac
  24. LUAC_O= luac.o
  25. ALL_O= $(BASE_O) $(LUA_O) $(LUAC_O)
  26. -ALL_T= $(LUA_A) $(LUA_T) $(LUAC_T)
  27. +ALL_T= $(LUA_A) $(LUA_T) $(LUAC_T) $(LUA_SO)
  28. ALL_A= $(LUA_A)
  29. # Targets start here.
  30. @@ -59,6 +60,12 @@ $(LUA_A): $(BASE_O)
  31. $(AR) $@ $(BASE_O)
  32. $(RANLIB) $@
  33. +$(LUA_SO): $(CORE_O) $(LIB_O)
  34. + $(CC) -shared -ldl -Wl,-soname,$(LUA_SO).$(V) -o $@.$(R) $? -lm $(MYLDFLAGS)
  35. + ln -sf $(LUA_SO).$(R) $(LUA_SO).$(V)
  36. + ln -sf $(LUA_SO).$(R) $(LUA_SO)
  37. +
  38. +
  39. $(LUA_T): $(LUA_O) $(LUA_A)
  40. $(CC) -o $@ $(LDFLAGS) $(LUA_O) $(LUA_A) $(LIBS)
  41. diff --git a/src/luaconf.h b/src/luaconf.h
  42. index fd28d21..e2662cc 100644
  43. --- a/src/luaconf.h
  44. +++ b/src/luaconf.h
  45. @@ -175,7 +175,7 @@
  46. #else /* }{ */
  47. -#define LUA_ROOT "/usr/local/"
  48. +#define LUA_ROOT "/usr/"
  49. #define LUA_LDIR LUA_ROOT "share/lua/" LUA_VDIR "/"
  50. #define LUA_CDIR LUA_ROOT "lib/lua/" LUA_VDIR "/"
  51. #define LUA_PATH_DEFAULT \