Commit 049e9b67 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

Fixed msxml compilation when libxml is not available.

parent 950a23e8
......@@ -38,6 +38,8 @@
WINE_DEFAULT_DEBUG_CHANNEL(msxml);
#ifdef HAVE_LIBXML2
typedef struct _domelem
{
const struct IXMLDOMElementVtbl *lpVtbl;
......@@ -566,3 +568,5 @@ HRESULT DOMElement_create( IXMLDOMElement** DOMElement, xmlDocPtr xmldoc )
return S_OK;
}
#endif
......@@ -21,7 +21,7 @@
#ifndef __MSXML_PRIVATE__
#define __MSXML_PRIVATE__
#ifdef HAVE_LIBXML_PARSER_H
#ifdef HAVE_LIBXML2
#include <libxml/parser.h>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment