diff options
author | Daniel Veillard <veillard@src.gnome.org> | 2008-06-13 09:01:11 +0000 |
---|---|---|
committer | Daniel Veillard <veillard@src.gnome.org> | 2008-06-13 09:01:11 +0000 |
commit | 9cafc6c6e9af7bdfe9c57b4e5678d588e7a1dd90 (patch) | |
tree | 4712223058b322f36f1cbee916286c9f436a6177 | |
parent | 80353190270f6b742aea1969cb1d1de899764fb1 (diff) | |
download | libxslt-9cafc6c6e9af7bdfe9c57b4e5678d588e7a1dd90.tar.gz libxslt-9cafc6c6e9af7bdfe9c57b4e5678d588e7a1dd90.tar.bz2 libxslt-9cafc6c6e9af7bdfe9c57b4e5678d588e7a1dd90.zip |
patch from Roumen Petrov fixing include path when compiling with MinGW
* libxslt/libxslt.h libexslt/libexslt.h libexslt/exslt.h: patch
from Roumen Petrov fixing include path when compiling with MinGW
Daniel
svn path=/trunk/; revision=1479
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | libexslt/exslt.h | 2 | ||||
-rw-r--r-- | libexslt/libexslt.h | 2 | ||||
-rw-r--r-- | libxslt/libxslt.h | 2 |
4 files changed, 8 insertions, 3 deletions
@@ -1,3 +1,8 @@ +Fri Jun 13 10:58:52 CEST 2008 Daniel Veillard <daniel@veillard.com> + + * libxslt/libxslt.h libexslt/libexslt.h libexslt/exslt.h: patch + from Roumen Petrov fixing include path when compiling with MinGW + Thu Jun 12 11:23:23 CEST 2008 Daniel Veillard <daniel@veillard.com> * libxslt/xsltconfig.h.in libxslt/xsltlocale.h configure.in diff --git a/libexslt/exslt.h b/libexslt/exslt.h index a50e95c3..52d09cfc 100644 --- a/libexslt/exslt.h +++ b/libexslt/exslt.h @@ -4,7 +4,7 @@ #include <libxml/tree.h> #include "exsltexports.h" -#include "exsltconfig.h" +#include <libexslt/exsltconfig.h> #ifdef __cplusplus extern "C" { diff --git a/libexslt/libexslt.h b/libexslt/libexslt.h index 4bdc047d..1f10f387 100644 --- a/libexslt/libexslt.h +++ b/libexslt/libexslt.h @@ -15,7 +15,7 @@ #include "config.h" #endif -#include "xsltconfig.h" +#include <libxslt/xsltconfig.h> #include <libxml/xmlversion.h> #if !defined LIBEXSLT_PUBLIC diff --git a/libxslt/libxslt.h b/libxslt/libxslt.h index 903f900c..2b9f52a9 100644 --- a/libxslt/libxslt.h +++ b/libxslt/libxslt.h @@ -16,7 +16,7 @@ #include "config.h" #endif -#include "xsltconfig.h" +#include <libxslt/xsltconfig.h> #include <libxml/xmlversion.h> #if !defined LIBXSLT_PUBLIC |