1
0
mirror of https://gitlab.gnome.org/GNOME/libxslt synced 2025-08-08 21:42:07 +03:00

moved the config.h include out of exsltconfig.h since this header is

* libexslt/*.c libexslt/exsltconfig.h.in: moved the
  config.h include out of exsltconfig.h since this header is
  exported and config.h is not.
Daniel
This commit is contained in:
Daniel Veillard
2001-10-19 14:47:24 +00:00
parent 9bfb7953c1
commit ae93ba0741
10 changed files with 54 additions and 6 deletions

View File

@@ -1,3 +1,9 @@
Fri Oct 19 16:46:06 CEST 2001 Daniel Veillard <daniel@veillard.com>
* libexslt/*.c libexslt/exsltconfig.h.in: moved the
config.h include out of exsltconfig.h since this header is
exported and config.h is not.
Wed Oct 17 21:20:55 CEST 2001 Daniel Veillard <daniel@veillard.com> Wed Oct 17 21:20:55 CEST 2001 Daniel Veillard <daniel@veillard.com>
* libxslt/attributes.c libxslt/extensions.c libxslt/preproc.c * libxslt/attributes.c libxslt/extensions.c libxslt/preproc.c

View File

@@ -1,3 +1,9 @@
#ifdef WIN32
#include <win32config.h>
#else
#include "config.h"
#endif
#include <libxml/tree.h> #include <libxml/tree.h>
#include <libxml/xpath.h> #include <libxml/xpath.h>
#include <libxml/xpathInternals.h> #include <libxml/xpathInternals.h>

View File

@@ -17,6 +17,12 @@
#include <stdlib.h> #include <stdlib.h>
#ifdef WIN32
#include <win32config.h>
#else
#include "config.h"
#endif
#include <libxml/tree.h> #include <libxml/tree.h>
#include <libxml/xpath.h> #include <libxml/xpath.h>
#include <libxml/xpathInternals.h> #include <libxml/xpathInternals.h>

View File

@@ -1,5 +1,11 @@
#include <libxml/xmlversion.h> #include <libxml/xmlversion.h>
#ifdef WIN32
#include <win32config.h>
#else
#include "config.h"
#endif
#if defined(WIN32) && defined(_MSC_VER) #if defined(WIN32) && defined(_MSC_VER)
#include <libxslt/xsltwin32config.h> #include <libxslt/xsltwin32config.h>
#else #else

View File

@@ -9,12 +9,6 @@
#ifndef __XML_EXSLTCONFIG_H__ #ifndef __XML_EXSLTCONFIG_H__
#define __XML_EXSLTCONFIG_H__ #define __XML_EXSLTCONFIG_H__
#ifdef WIN32
#include <win32config.h>
#else
#include "config.h"
#endif
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
#endif #endif

View File

@@ -1,5 +1,11 @@
#include "libxslt/libxslt.h" #include "libxslt/libxslt.h"
#ifdef WIN32
#include <win32config.h>
#else
#include "config.h"
#endif
#include <string.h> #include <string.h>
#include <libxml/tree.h> #include <libxml/tree.h>

View File

@@ -1,3 +1,9 @@
#ifdef WIN32
#include <win32config.h>
#else
#include "config.h"
#endif
#include <libxml/tree.h> #include <libxml/tree.h>
#include <libxml/xpath.h> #include <libxml/xpath.h>
#include <libxml/xpathInternals.h> #include <libxml/xpathInternals.h>

View File

@@ -1,3 +1,9 @@
#ifdef WIN32
#include <win32config.h>
#else
#include "config.h"
#endif
#include <libxml/tree.h> #include <libxml/tree.h>
#include <libxml/xpath.h> #include <libxml/xpath.h>
#include <libxml/xpathInternals.h> #include <libxml/xpathInternals.h>

View File

@@ -1,3 +1,9 @@
#ifdef WIN32
#include <win32config.h>
#else
#include "config.h"
#endif
#include <libxml/tree.h> #include <libxml/tree.h>
#include <libxml/xpath.h> #include <libxml/xpath.h>
#include <libxml/xpathInternals.h> #include <libxml/xpathInternals.h>

View File

@@ -1,3 +1,9 @@
#ifdef WIN32
#include <win32config.h>
#else
#include "config.h"
#endif
#include <libxml/tree.h> #include <libxml/tree.h>
#include <libxml/xpath.h> #include <libxml/xpath.h>
#include <libxml/xpathInternals.h> #include <libxml/xpathInternals.h>