diff options
author | 2004-03-16 19:37:25 +0000 | |
---|---|---|
committer | 2004-03-16 19:37:25 +0000 | |
commit | edfa9e835f454b1c5d2271b1a5b41628ef9792e2 (patch) | |
tree | c0575e34398946a914ce0ec0a1b7a03c29ab8ec8 /dev-lang/lua/files | |
parent | leet find syntax thanks to spyderous (diff) | |
download | historical-edfa9e835f454b1c5d2271b1a5b41628ef9792e2.tar.gz historical-edfa9e835f454b1c5d2271b1a5b41628ef9792e2.tar.bz2 historical-edfa9e835f454b1c5d2271b1a5b41628ef9792e2.zip |
Version bump.
Diffstat (limited to 'dev-lang/lua/files')
-rw-r--r-- | dev-lang/lua/files/digest-lua-5.0.2 | 1 | ||||
-rw-r--r-- | dev-lang/lua/files/lua-5.0.2-pic.patch | 38 |
2 files changed, 39 insertions, 0 deletions
diff --git a/dev-lang/lua/files/digest-lua-5.0.2 b/dev-lang/lua/files/digest-lua-5.0.2 new file mode 100644 index 000000000000..78afe9bc10d4 --- /dev/null +++ b/dev-lang/lua/files/digest-lua-5.0.2 @@ -0,0 +1 @@ +MD5 e515b9a12d129eaa52f88b9686e0b6a1 lua-5.0.2.tar.gz 190038 diff --git a/dev-lang/lua/files/lua-5.0.2-pic.patch b/dev-lang/lua/files/lua-5.0.2-pic.patch new file mode 100644 index 000000000000..3fc403bd73ad --- /dev/null +++ b/dev-lang/lua/files/lua-5.0.2-pic.patch @@ -0,0 +1,38 @@ +diff -Naur lua-5.0.2/Makefile lua/Makefile +--- lua-5.0.2/Makefile 2003-04-11 02:34:38.000000000 +0200 ++++ lua/Makefile 2004-03-16 20:28:18.736068272 +0100 +@@ -38,8 +38,8 @@ + + # shared libraries (for Linux) + so: +- ld -o lib/liblua.so.$V -shared src/*.o +- ld -o lib/liblualib.so.$V -shared src/lib/*.o ++ gcc -o lib/liblua.so.$V -shared src/*.o ++ gcc -o lib/liblualib.so.$V -shared src/lib/*.o + cd lib; ln -fs liblua.so.$V liblua.so; ln -fs liblualib.so.$V liblualib.so + + # binaries using shared libraries +diff -Naur lua-5.0.2/src/lib/Makefile lua/src/lib/Makefile +--- lua-5.0.2/src/lib/Makefile 2003-03-28 13:49:56.000000000 +0100 ++++ lua/src/lib/Makefile 2004-03-16 20:29:24.035141304 +0100 +@@ -4,6 +4,8 @@ + + include $(LUA)/config + ++CFLAGS= $(MYCFLAGS) $(PICFLAGS) $(WARN) $(INCS) $(DEFS) ++ + EXTRA_DEFS= $(POPEN) $(TMPNAM) $(DEGREES) $(LOADLIB) + + OBJS= lauxlib.o lbaselib.o ldblib.o liolib.o lmathlib.o ltablib.o lstrlib.o loadlib.o +diff -Naur lua-5.0.2/src/Makefile lua/src/Makefile +--- lua-5.0.2/src/Makefile 2002-12-13 13:12:11.000000000 +0100 ++++ lua/src/Makefile 2004-03-16 20:28:52.047004240 +0100 +@@ -4,6 +4,8 @@ + + include $(LUA)/config + ++CFLAGS= $(MYCFLAGS) $(PICFLAGS) $(WARN) $(INCS) $(DEFS) ++ + OBJS= \ + lapi.o \ + lcode.o \ |