lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> Attached is a patch to add dynamic loading to Lua 5.1 for AmigaOS.

Thanks!
 
> There are a couple of things worth noting about this patch:
> 1. Lua's Node type conflicts with AmigaOS's Node type in the loadlib.c
> file so I renamed Node -> TNode in Lua to work around the problem.

I think you can just add the line below to luaconf.h:
	`#define Node TNode
There is no need to patch the other files.
Please give it a try.
--lhf