msxml3: complain louder if libxslt was missing at compile time (try 2)

Austin English austinenglish at gmail.com
Fri Apr 25 19:37:08 CDT 2014


-- 
-Austin
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.winehq.org/pipermail/wine-patches/attachments/20140425/131a5b13/attachment.html>
-------------- next part --------------
diff --git a/dlls/msxml3/node.c b/dlls/msxml3/node.c
index b49f46c..b579d9e 100644
--- a/dlls/msxml3/node.c
+++ b/dlls/msxml3/node.c
@@ -54,6 +54,7 @@
 #include "wine/debug.h"
 
 WINE_DEFAULT_DEBUG_CHANNEL(msxml);
+WINE_DECLARE_DEBUG_CHANNEL(winediag);
 
 #ifdef HAVE_LIBXML2
 
@@ -1308,7 +1309,8 @@ HRESULT node_transform_node_params(const xmlnode *This, IXMLDOMNode *stylesheet,
 
     return hr;
 #else
-    FIXME("libxslt headers were not found at compile time\n");
+    ERR_(winediag)("libxslt headers were not found at compile time. Expect problems.\n");
+
     return E_NOTIMPL;
 #endif
 }


More information about the wine-patches mailing list