1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-07-30 22:43:14 +03:00

- libxml.h: fixed an error in last commit

- doc/FAQ.html: added an entry for compilation from CVS
Daniel
This commit is contained in:
Daniel Veillard
2001-06-11 10:29:38 +00:00
parent 9cc6dc62f7
commit 6761eeea4d
3 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Tue Jun 12 06:29:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxml.h: fixed an error in last commit
* doc/FAQ.html: added an entry for compilation from CVS
Mon Jun 11 10:07:29 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> Mon Jun 11 10:07:29 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* xmlversion.h.in libxml.h: Cygwin patches * xmlversion.h.in libxml.h: Cygwin patches

View File

@ -148,6 +148,11 @@ href="http://xmlsoft.org/messages/">http://xmlsoft.org/messages/</a></p>
some platforms the diff return breaks the compilation process, if the diff some platforms the diff return breaks the compilation process, if the diff
is small this is probably not a serious problem</p> is small this is probably not a serious problem</p>
</li> </li>
<li><em>I use the CVS version and there is no configure script</em>
<p>The configure (and other Makefiles) are generated. Use the autogen.sh
script to regenerate the configure and Makefiles, like:</p>
<p><code>./autogen.sh --prefix=/usr --disable-shared</code></p>
</li>
</ol> </ol>
<h2><a name="Developer">Developer</a> corner</h2> <h2><a name="Developer">Developer</a> corner</h2>

View File

@ -9,7 +9,7 @@
#ifndef __XML_LIBXML_H__ #ifndef __XML_LIBXML_H__
#define __XML_LIBXML_H__ #define __XML_LIBXML_H__
#if !defined(WIN32) || defined(__CYGWIN__) #if defined(WIN32) && !defined(__CYGWIN__)
#include "win32config.h" #include "win32config.h"
#else #else
#include "config.h" #include "config.h"