Saulius Krasuckas wrote:
bash-3.00$ grep XML2INCL config.status config.log dlls/msxml3/Makefile.in
config.status:s,@XML2INCL@,-I/usr/include/libxml2,;t t
config.status:s,@XML2INCL@,,;t t
I think that the problem is your libxml2 library is not being detected
properly. You might check that in the config.log.
The attached patch should help, but your msxml3 won't be able to use
libxml2.
Mike
Index: dlls/msxml3/msxml_private.h
===================================================================
RCS file: /home/wine/wine/dlls/msxml3/msxml_private.h,v
retrieving revision 1.2
diff -u -p -r1.2 msxml_private.h
--- dlls/msxml3/msxml_private.h 3 Aug 2005 10:58:47 -0000 1.2
+++ dlls/msxml3/msxml_private.h 4 Aug 2005 07:32:55 -0000
@@ -21,7 +21,7 @@
#ifndef __MSXML_PRIVATE__
#define __MSXML_PRIVATE__
-#ifdef HAVE_LIBXML_PARSER_H
+#if defined (HAVE_LIBXML_PARSER_H) && defined (HAVE_LIBXML2)
#include <libxml/parser.h>