1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-12-24 21:33:51 +03:00

repositioned #include for libxml.h to avoid compilation error on some

* testAutomata.c, testRegexp.c, testThreads.c, testThreadsWin32.c,
  xmlwriter.c: repositioned #include for libxml.h to avoid
  compilation error on some architectures (bug #398277)

svn path=/trunk/; revision=3578
This commit is contained in:
William M. Brack 2007-01-31 18:38:56 +00:00
parent 72239bad3c
commit c1099be5eb
6 changed files with 14 additions and 5 deletions

View File

@ -1,3 +1,10 @@
Wed Jan 31 10:25:38 PST 2007 William Brack <wbrack@mmm.com.hk>
* testAutomata.c, testRegexp.c, testThreads.c, testThreadsWin32.c,
xmlwriter.c: repositioned #include for libxml.h to avoid
compilation error on some architectures (bug #398277)
* fixed screwed-up ChangeLog (deleted some duplicate entries)
Fri Jan 26 00:05:18 PST 2007 William Brack <wbrack@mmm.com.hk>
* implemented patch from Stéphane Bidoul for uri.c (bug #389767)

View File

@ -6,9 +6,9 @@
* Daniel Veillard <veillard@redhat.com>
*/
#include <string.h>
#include "libxml.h"
#ifdef LIBXML_AUTOMATA_ENABLED
#include <string.h>
#include <libxml/tree.h>
#include <libxml/xmlautomata.h>

View File

@ -6,9 +6,10 @@
* Daniel Veillard <veillard@redhat.com>
*/
#include <string.h>
#include "libxml.h"
#ifdef LIBXML_REGEXP_ENABLED
#include <string.h>
#include <libxml/tree.h>
#include <libxml/xmlregexp.h>

View File

@ -1,6 +1,7 @@
#include "libxml.h"
#include <stdlib.h>
#include <stdio.h>
#include "libxml.h"
#if defined(LIBXML_THREAD_ENABLED) && defined(LIBXML_CATALOG_ENABLED) && defined(LIBXML_SAX1_ENABLED)
#include <libxml/globals.h>

View File

@ -1,6 +1,6 @@
#include "libxml.h"
#include <stdlib.h>
#include <stdio.h>
#include "libxml.h"
#if defined(LIBXML_THREAD_ENABLED) && defined(LIBXML_CATALOG_ENABLED)
#include <libxml/globals.h>

View File

@ -9,9 +9,9 @@
*/
#define IN_LIBXML
#include "libxml.h"
#include <string.h>
#include "libxml.h"
#include <libxml/xmlmemory.h>
#include <libxml/parser.h>
#include <libxml/uri.h>