aboutsummaryrefslogtreecommitdiffstats
path: root/testSAX.c
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2001-10-13 09:15:48 +0000
committerDaniel Veillard <veillard@src.gnome.org>2001-10-13 09:15:48 +0000
commitd0463560300f1d8b3e41d70c3728ed84fdc8dd30 (patch)
tree559d845bad18c3c44cf7d08cc738efc9ea573b78 /testSAX.c
parentb847864fc2f7151c81e57d02ca3b523dc5d8cf72 (diff)
downloadandroid_external_libxml2-d0463560300f1d8b3e41d70c3728ed84fdc8dd30.tar.gz
android_external_libxml2-d0463560300f1d8b3e41d70c3728ed84fdc8dd30.tar.bz2
android_external_libxml2-d0463560300f1d8b3e41d70c3728ed84fdc8dd30.zip
Applied the last patches from Gary, cleanup, activated threading all user
* include/libxml/SAX.h include/libxml/globals.h include/libxml/parser.h include/libxml/parserInternals.h include/libxml/tree.h include/libxml/xmlerror.h HTMLparser.c SAX.c error.c globals.c nanoftp.c nanohttp.c parser.c parserInternals.c testDocbook.c testHTML.c testSAX.c tree.c uri.c xlink.c xmlmemory.c: Applied the last patches from Gary, cleanup, activated threading all user accessible global variables are now handled in globals.[ch] Still a bit rought but make tests passes with either --with-threads defined at configure time or not. * Makefile.am example/Makefile.am: added globals.[ch] and threads linking options Daniel
Diffstat (limited to 'testSAX.c')
-rw-r--r--testSAX.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/testSAX.c b/testSAX.c
index 47b100a0..a6a0d799 100644
--- a/testSAX.c
+++ b/testSAX.c
@@ -31,6 +31,7 @@
#endif
+#include <libxml/globals.h>
#include <libxml/xmlerror.h>
#include <libxml/parser.h>
#include <libxml/parserInternals.h> /* only for xmlNewInputFromFile() */
@@ -71,7 +72,8 @@ xmlSAXHandler emptySAXHandlerStruct = {
NULL, /* xmlParserError */
NULL, /* getParameterEntity */
NULL, /* cdataBlock; */
- NULL /* externalSubset; */
+ NULL, /* externalSubset; */
+ 1
};
xmlSAXHandlerPtr emptySAXHandler = &emptySAXHandlerStruct;
@@ -597,7 +599,8 @@ xmlSAXHandler debugSAXHandlerStruct = {
fatalErrorDebug,
getParameterEntityDebug,
cdataBlockDebug,
- externalSubsetDebug
+ externalSubsetDebug,
+ 1
};
xmlSAXHandlerPtr debugSAXHandler = &debugSAXHandlerStruct;