lua-users home
lua-l archive

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


> I was playing around with trying to get LuaExpat to build on a WinXP box
> with Lua 5.0.2 and the latest version of Expat, version 1.95.8. The C
> files shipped with LuaExpat #include xmlparse.h, which apparently has been
> depricated and eradicated many moons ago.
	The filename changed but its content is compatible.
Change

#include "xmlparse.h"

to

#include "expat.h"

	Tomas