Skip to content
Snippets Groups Projects
Commit 049e9b67 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard
Browse files

Fixed msxml compilation when libxml is not available.

parent 950a23e8
No related branches found
No related tags found
No related merge requests found
......@@ -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>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment