[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Which version of Expat is LuaExpat designed against?
- From: Tomas <tomas@...>
- Date: Fri, 17 Dec 2004 07:05:22 -0200 (BRDT)
> 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