summaryrefslogtreecommitdiff
path: root/devel/lua-pty/files/patch-pty.lua
diff options
context:
space:
mode:
authorPhilip Paeps <philip@FreeBSD.org>2006-12-05 22:51:12 +0000
committerPhilip Paeps <philip@FreeBSD.org>2006-12-05 22:51:12 +0000
commit463177d875fdc8a962404d4bb9f13030d5ea8b26 (patch)
tree434fb08852bdff09c2c5942a2841697de81f10ab /devel/lua-pty/files/patch-pty.lua
parentWell, this file is actually written by me almost from scratch. (diff)
Add devel/lua-pty to work with Lua 5.0 and Lua 5.1 and turn devel/lua50-pty
into a slave port of it. PR: ports/106347 Submitted by: Andrew Turner <andrew+ports@fubar.geek.nz> (maintainer) Repocopy by: marcus
Notes
Notes: svn path=/head/; revision=178983
Diffstat (limited to 'devel/lua-pty/files/patch-pty.lua')
-rw-r--r--devel/lua-pty/files/patch-pty.lua13
1 files changed, 13 insertions, 0 deletions
diff --git a/devel/lua-pty/files/patch-pty.lua b/devel/lua-pty/files/patch-pty.lua
new file mode 100644
index 000000000000..deabb00649e8
--- /dev/null
+++ b/devel/lua-pty/files/patch-pty.lua
@@ -0,0 +1,13 @@
+--- pty.lua.orig Wed Nov 29 22:38:08 2006
++++ pty.lua Wed Nov 29 22:39:00 2006
+@@ -1,9 +1,8 @@
+ -- $Id: pty.lua,v 1.2 2005/08/13 20:00:40 cpressey Exp $
+ -- Lua wrapper functions for Lua 5.0.x Pty (pseudo-terminal) binding.
+
++local Pty = require("lpty")
+ module("pty")
+-
+-Pty = require("lpty")
+
+ --[[------------]]--
+ --[[ Pty.Logged ]]--