Skip to content

Commit

Permalink
preparing 2.4.18 updated and rebuilt the web site implement the new
Browse files Browse the repository at this point in the history
* configure.in: preparing 2.4.18
* doc/*: updated and rebuilt the web site
* *.c libxml.h: implement the new IN_LIBXML scheme discussed with
  the Windows and Cygwin maintainers.
* parser.c: humm, changed the way the SAX parser work when
  xmlSubstituteEntitiesDefault(1) is set, it will then
  do the entity registration and loading by itself in case the
  user provided SAX getEntity() returns NULL.
* testSAX.c: added --noent to test the behaviour.
Daniel
  • Loading branch information
Daniel Veillard committed Mar 18, 2002
1 parent 5997aca commit 34ce8be
Show file tree
Hide file tree
Showing 36 changed files with 833 additions and 8 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
Mon Mar 18 19:18:13 CET 2002 Daniel Veillard <[email protected]>

* configure.in: preparing 2.4.18
* doc/*: updated and rebuilt the web site
* *.c libxml.h: implement the new IN_LIBXML scheme discussed with
the Windows and Cygwin maintainers.
* parser.c: humm, changed the way the SAX parser work when
xmlSubstituteEntitiesDefault(1) is set, it will then
do the entity registration and loading by itself in case the
Expand Down
1 change: 1 addition & 0 deletions DOCBparser.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
* [email protected]
*/

#define IN_LIBXML
#include "libxml.h"
#ifdef LIBXML_DOCB_ENABLED

Expand Down
1 change: 1 addition & 0 deletions HTMLparser.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
* [email protected]
*/

#define IN_LIBXML
#include "libxml.h"
#ifdef LIBXML_HTML_ENABLED

Expand Down
1 change: 1 addition & 0 deletions HTMLtree.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
*/


#define IN_LIBXML
#include "libxml.h"
#ifdef LIBXML_HTML_ENABLED

Expand Down
1 change: 1 addition & 0 deletions SAX.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
*/


#define IN_LIBXML
#include "libxml.h"
#include <stdlib.h>
#include <string.h>
Expand Down
1 change: 1 addition & 0 deletions c14n.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
*
* Author: Aleksey Sanin <[email protected]>
*/
#define IN_LIBXML
#include "libxml.h"
#ifdef LIBXML_C14N_ENABLED

Expand Down
1 change: 1 addition & 0 deletions catalog.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
* [email protected]
*/

#define IN_LIBXML
#include "libxml.h"

#ifdef LIBXML_CATALOG_ENABLED
Expand Down
2 changes: 1 addition & 1 deletion configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ AC_CANONICAL_HOST

LIBXML_MAJOR_VERSION=2
LIBXML_MINOR_VERSION=4
LIBXML_MICRO_VERSION=17
LIBXML_MICRO_VERSION=18
LIBXML_VERSION=$LIBXML_MAJOR_VERSION.$LIBXML_MINOR_VERSION.$LIBXML_MICRO_VERSION
LIBXML_VERSION_INFO=`expr $LIBXML_MAJOR_VERSION + $LIBXML_MINOR_VERSION`:$LIBXML_MICRO_VERSION:$LIBXML_MINOR_VERSION

Expand Down
1 change: 1 addition & 0 deletions debugXML.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
* Daniel Veillard <[email protected]>
*/

#define IN_LIBXML
#include "libxml.h"
#ifdef LIBXML_DEBUG_ENABLED

Expand Down
Loading

0 comments on commit 34ce8be

Please sign in to comment.