summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2001-10-19 14:47:24 +0000
committerDaniel Veillard <veillard@src.gnome.org>2001-10-19 14:47:24 +0000
commitae93ba0741f26738a73bf452d0b90d6cc26bff85 (patch)
treee30418b1399e602eb9a4652dcedb95056f1c0794
parent9bfb7953c1ce36314774eca9c57bfae516e3a2fb (diff)
downloadlibxslt-ae93ba0741f26738a73bf452d0b90d6cc26bff85.tar.gz
libxslt-ae93ba0741f26738a73bf452d0b90d6cc26bff85.tar.bz2
libxslt-ae93ba0741f26738a73bf452d0b90d6cc26bff85.zip
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
-rw-r--r--ChangeLog6
-rw-r--r--libexslt/common.c6
-rw-r--r--libexslt/date.c6
-rw-r--r--libexslt/exslt.c6
-rw-r--r--libexslt/exsltconfig.h.in6
-rw-r--r--libexslt/functions.c6
-rw-r--r--libexslt/math.c6
-rw-r--r--libexslt/saxon.c6
-rw-r--r--libexslt/sets.c6
-rw-r--r--libexslt/strings.c6
10 files changed, 54 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 5521b703..4a01069e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>
* libxslt/attributes.c libxslt/extensions.c libxslt/preproc.c
diff --git a/libexslt/common.c b/libexslt/common.c
index f34a77b4..437df065 100644
--- a/libexslt/common.c
+++ b/libexslt/common.c
@@ -1,3 +1,9 @@
+#ifdef WIN32
+#include <win32config.h>
+#else
+#include "config.h"
+#endif
+
#include <libxml/tree.h>
#include <libxml/xpath.h>
#include <libxml/xpathInternals.h>
diff --git a/libexslt/date.c b/libexslt/date.c
index 997022e5..81d4b41f 100644
--- a/libexslt/date.c
+++ b/libexslt/date.c
@@ -17,6 +17,12 @@
#include <stdlib.h>
+#ifdef WIN32
+#include <win32config.h>
+#else
+#include "config.h"
+#endif
+
#include <libxml/tree.h>
#include <libxml/xpath.h>
#include <libxml/xpathInternals.h>
diff --git a/libexslt/exslt.c b/libexslt/exslt.c
index 50082fde..d36e0d2c 100644
--- a/libexslt/exslt.c
+++ b/libexslt/exslt.c
@@ -1,5 +1,11 @@
#include <libxml/xmlversion.h>
+#ifdef WIN32
+#include <win32config.h>
+#else
+#include "config.h"
+#endif
+
#if defined(WIN32) && defined(_MSC_VER)
#include <libxslt/xsltwin32config.h>
#else
diff --git a/libexslt/exsltconfig.h.in b/libexslt/exsltconfig.h.in
index a5c28b48..4e305e78 100644
--- a/libexslt/exsltconfig.h.in
+++ b/libexslt/exsltconfig.h.in
@@ -9,12 +9,6 @@
#ifndef __XML_EXSLTCONFIG_H__
#define __XML_EXSLTCONFIG_H__
-#ifdef WIN32
-#include <win32config.h>
-#else
-#include "config.h"
-#endif
-
#ifdef __cplusplus
extern "C" {
#endif
diff --git a/libexslt/functions.c b/libexslt/functions.c
index 8d93f30d..7af36915 100644
--- a/libexslt/functions.c
+++ b/libexslt/functions.c
@@ -1,5 +1,11 @@
#include "libxslt/libxslt.h"
+#ifdef WIN32
+#include <win32config.h>
+#else
+#include "config.h"
+#endif
+
#include <string.h>
#include <libxml/tree.h>
diff --git a/libexslt/math.c b/libexslt/math.c
index afefed6f..2e64b802 100644
--- a/libexslt/math.c
+++ b/libexslt/math.c
@@ -1,3 +1,9 @@
+#ifdef WIN32
+#include <win32config.h>
+#else
+#include "config.h"
+#endif
+
#include <libxml/tree.h>
#include <libxml/xpath.h>
#include <libxml/xpathInternals.h>
diff --git a/libexslt/saxon.c b/libexslt/saxon.c
index e4390dd0..3fe2c885 100644
--- a/libexslt/saxon.c
+++ b/libexslt/saxon.c
@@ -1,3 +1,9 @@
+#ifdef WIN32
+#include <win32config.h>
+#else
+#include "config.h"
+#endif
+
#include <libxml/tree.h>
#include <libxml/xpath.h>
#include <libxml/xpathInternals.h>
diff --git a/libexslt/sets.c b/libexslt/sets.c
index bb427b50..d2cc9acb 100644
--- a/libexslt/sets.c
+++ b/libexslt/sets.c
@@ -1,3 +1,9 @@
+#ifdef WIN32
+#include <win32config.h>
+#else
+#include "config.h"
+#endif
+
#include <libxml/tree.h>
#include <libxml/xpath.h>
#include <libxml/xpathInternals.h>
diff --git a/libexslt/strings.c b/libexslt/strings.c
index d38827a0..4515fb82 100644
--- a/libexslt/strings.c
+++ b/libexslt/strings.c
@@ -1,3 +1,9 @@
+#ifdef WIN32
+#include <win32config.h>
+#else
+#include "config.h"
+#endif
+
#include <libxml/tree.h>
#include <libxml/xpath.h>
#include <libxml/xpathInternals.h>