mscms: make missing lcms2 an error, not a fixme

Austin English austinenglish at gmail.com
Wed Jan 22 23:28:27 CST 2014


It breaks applications (e.g., the Adobe Flash installer), it should be an
error.

-- 
-Austin
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.winehq.org/pipermail/wine-patches/attachments/20140122/58d0bf42/attachment-0001.html>
-------------- next part --------------
diff --git a/dlls/mscms/mscms_main.c b/dlls/mscms/mscms_main.c
index 4653cc7..e4c5f28 100644
--- a/dlls/mscms/mscms_main.c
+++ b/dlls/mscms/mscms_main.c
@@ -54,7 +54,7 @@ BOOL WINAPI DllMain( HINSTANCE hinst, DWORD reason, LPVOID reserved )
 #ifdef HAVE_LCMS2
         cmsSetLogErrorHandler( lcms_error_handler );
 #else
-        FIXME( "Wine was built without support for liblcms2, expect problems\n" );
+        ERR( "Wine was built without support for liblcms2, expect problems\n" );
 #endif
         break;
     case DLL_PROCESS_DETACH:


More information about the wine-patches mailing list