summaryrefslogtreecommitdiff
path: root/lang/lua/patches/patch-ae
diff options
context:
space:
mode:
authorjtb <jtb>2003-02-22 00:51:58 +0000
committerjtb <jtb>2003-02-22 00:51:58 +0000
commit285a32994e0f13888464228662dc55cb9e779778 (patch)
treea1884dd6c74d5e15e00b9215d7961d88881c61dc /lang/lua/patches/patch-ae
parent22a304296015ac7f54a9aa7e8f5035047b210200 (diff)
downloadpkgsrc-285a32994e0f13888464228662dc55cb9e779778.tar.gz
Update to version 4.0.1.
Added my own makefiles to create shared versions of the libraries using bsd.lib.mk. Changes in Lua itself: lua/src/lapi.c lua/src/lstring.c Fixed a bug in lua_pushuserdata(L, NULL) lua/src/ldo.c lua/src/lgc.c lua/src/lgc.h Give a good chance for GC before parsing lua/src/lparser.c Fixed a bug (did not accept `;' after a `return') lua/src/lvm.c Fixed a bug (linehook off by 1) lua/src/lib/lbaselib.c Fixed a bug in rawget and rawset (seg. fault if given extra arguments) Fixed a bug in dostring (identification of precompiled chunks)
Diffstat (limited to 'lang/lua/patches/patch-ae')
-rw-r--r--lang/lua/patches/patch-ae21
1 files changed, 21 insertions, 0 deletions
diff --git a/lang/lua/patches/patch-ae b/lang/lua/patches/patch-ae
new file mode 100644
index 00000000000..bc6d6319051
--- /dev/null
+++ b/lang/lua/patches/patch-ae
@@ -0,0 +1,21 @@
+$NetBSD: patch-ae,v 1.1 2003/02/22 00:51:59 jtb Exp $
+
+--- /dev/null Sat Feb 22 00:18:04 2003
++++ build/luac/Makefile
+@@ -0,0 +1,16 @@
++PROG= luac
++
++SRCS= dump.c luac.c opt.c print.c stubs.c
++
++BINDIR= ${PREFIX}/bin
++MANDIR= ${PREFIX}/man
++
++CPPFLAGS+= -D_POSIX_SOURCE -I${.CURDIR}/../../include -I${.CURDIR}/../../src
++
++LDFLAGS+= -R${PREFIX}/lib -L${.CURDIR}/../liblua
++
++LDADD+= -llua
++
++.PATH: ${.CURDIR}/../../src/luac
++
++.include <bsd.prog.mk>