pkgsrc/textproc/lua-expat/patches/patch-ab
xtraeme e8d4952ea3 Initial import of lua-expat from pkgsrc-wip, packaged by pancake.
LuaExpat is a XML parser based on the Expat XML parser.
It allows Lua programs to:

- Process a XML document incrementally , thus being able to handle
  huge documents without memory penalties;

- Register handler functions wich are called by the parser during
  the processing of the document, handling the document elements or text.
2004-04-05 13:57:53 +00:00

13 lines
311 B
Text

$NetBSD: patch-ab,v 1.1.1.1 2004/04/05 13:57:53 xtraeme Exp $
--- lxplib.c.orig 2004-01-29 22:56:49.000000000 +0000
+++ lxplib.c 2004-01-29 22:56:56.000000000 +0000
@@ -9,7 +9,7 @@
#include <stdlib.h>
#include <string.h>
-#include <xmlparse.h>
+#include <expat.h>
#include <lua.h>
#include <lauxlib.h>