|
From: Team T. <tea...@gm...> - 2005-09-09 18:40:45
|
Achim, This looks like a problem with your LUA compilation. Do you know which=20 version of Lua you're using? You can see the files you'll need (maybe you= =20 grabbed a wrong version?) at=20 http://kqlives.sourceforge.net/index.php/FrequentlyAskedQuestions which has= =20 all (or most, if I've forgotten any) the files needed to compile. I had noticed an error with Lua's source, however. They forgot to include= =20 empty folders in their tarball, so you have to manually create ones such as= =20 ./bin and so forth. On a Windows machine, it doesn't look like it will=20 properly install the libraries or .h files into your lib and include=20 directories (sorry, I don't know Linux or other OSes than Win/DOS, so I'm= =20 not much help with where those are exactly). In fact, the makefile sources= =20 barfed when I tried to even compile it without a little code tweaking... Anyway, to make a long story short, I'm going to do a code update here in= =20 about an hour (hopefully, if baby stops crying) and you can see if any=20 changes to src/intrface.c make (or break) anything. -TeamTerradactyl > src/intrface.c: In function `init_obj': > src/intrface.c:575: warning: implicit declaration of function `lua_newtag= ' > src/intrface.c:579: warning: implicit declaration of function `lua_settag= ' > src/intrface.c:581: warning: implicit declaration of function > `lua_pushuserdata' > src/intrface.c:586: warning: implicit declaration of function > `lua_settagmethod' > src/intrface.c: In function `do_luainit': > src/intrface.c:2972: too many arguments to function `lua_open' > src/intrface.c:2984: warning: implicit declaration of function=20 `lua_dofile' > src/intrface.c:2997: warning: implicit declaration of function `luaL_ref' > src/intrface.c: In function `do_luakill': > src/intrface.c:3044: warning: implicit declaration of function=20 `luaL_unref' > make: *** [obj/unix/intrface.o] Fehler 1 >=20 >=20 > is this a lua-version problem or any kind of that...? >=20 > bye > Achim |