diff options
author | Daniel Veillard <veillard@src.gnome.org> | 2001-10-19 14:47:24 +0000 |
---|---|---|
committer | Daniel Veillard <veillard@src.gnome.org> | 2001-10-19 14:47:24 +0000 |
commit | ae93ba0741f26738a73bf452d0b90d6cc26bff85 (patch) | |
tree | e30418b1399e602eb9a4652dcedb95056f1c0794 /libexslt/functions.c | |
parent | 9bfb7953c1ce36314774eca9c57bfae516e3a2fb (diff) | |
download | libxslt-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
Diffstat (limited to 'libexslt/functions.c')
-rw-r--r-- | libexslt/functions.c | 6 |
1 files changed, 6 insertions, 0 deletions
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> |