From ae93ba0741f26738a73bf452d0b90d6cc26bff85 Mon Sep 17 00:00:00 2001 From: Daniel Veillard Date: Fri, 19 Oct 2001 14:47:24 +0000 Subject: [PATCH] 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 --- ChangeLog | 6 ++++++ libexslt/common.c | 6 ++++++ libexslt/date.c | 6 ++++++ libexslt/exslt.c | 6 ++++++ libexslt/exsltconfig.h.in | 6 ------ libexslt/functions.c | 6 ++++++ libexslt/math.c | 6 ++++++ libexslt/saxon.c | 6 ++++++ libexslt/sets.c | 6 ++++++ libexslt/strings.c | 6 ++++++ 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 + + * 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 * 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 +#else +#include "config.h" +#endif + #include #include #include 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 +#ifdef WIN32 +#include +#else +#include "config.h" +#endif + #include #include #include 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 +#ifdef WIN32 +#include +#else +#include "config.h" +#endif + #if defined(WIN32) && defined(_MSC_VER) #include #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 -#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 +#else +#include "config.h" +#endif + #include #include 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 +#else +#include "config.h" +#endif + #include #include #include 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 +#else +#include "config.h" +#endif + #include #include #include 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 +#else +#include "config.h" +#endif + #include #include #include 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 +#else +#include "config.h" +#endif + #include #include #include