Time to work on helping the Gnome Doc project, first step is reintegrating
the SGML DocBook parser in libxml2 distrib:
- DOCBparser.c DOCBparser.h testDocbook.c configure.in Makefile.am
  xmlversion.h.in: started (re)integrating the DocBook SGML parser.
- SAX.[ch]: cleanup and updates for DocBook
- debugXML.c parser.h tree.[ch] valid.c xpath.c: small macro or
  ex SGML identifier changes
- valid.c: removed a static unused function.
Daniel
diff --git a/Makefile.am b/Makefile.am
index 2bfb812..d66fe22 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -4,7 +4,7 @@
 
 INCLUDES = -I@srcdir@/include -I./include @Z_CFLAGS@ @CORBA_CFLAGS@ 
 
-noinst_PROGRAMS=testSAX testHTML testXPath testURI
+noinst_PROGRAMS=testSAX testHTML testXPath testURI testDocbook
 
 bin_PROGRAMS = xmllint
 
@@ -18,7 +18,7 @@
 libxml2_la_SOURCES = SAX.c entities.c encoding.c error.c parserInternals.c  \
 		parser.c tree.c hash.c list.c xmlIO.c xmlmemory.c uri.c  \
 		valid.c xlink.c HTMLparser.c HTMLtree.c debugXML.c xpath.c  \
-		xpointer.c xinclude.c nanohttp.c nanoftp.c  \
+		xpointer.c xinclude.c nanohttp.c nanoftp.c DOCBparser.c \
 		strio.c strio.h trio.c trio.h triop.h libxml.h
 
 DEPS = $(top_builddir)/libxml2.la
@@ -44,6 +44,11 @@
 testHTML_DEPENDENCIES = $(DEPS)
 testHTML_LDADD= $(LDADDS)
 
+testDocbook_SOURCES=testDocbook.c
+testDocbook_LDFLAGS = 
+testDocbook_DEPENDENCIES = $(DEPS)
+testDocbook_LDADD= $(LDADDS)
+
 testXPath_SOURCES=testXPath.c
 testXPath_LDFLAGS = 
 testXPath_DEPENDENCIES = $(DEPS)