Commit 190878d9 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

mscms: Print a fixme when compiled without support for liblcms2.

parent 48908c13
...@@ -53,6 +53,8 @@ BOOL WINAPI DllMain( HINSTANCE hinst, DWORD reason, LPVOID reserved ) ...@@ -53,6 +53,8 @@ BOOL WINAPI DllMain( HINSTANCE hinst, DWORD reason, LPVOID reserved )
DisableThreadLibraryCalls( hinst ); DisableThreadLibraryCalls( hinst );
#ifdef HAVE_LCMS2 #ifdef HAVE_LCMS2
cmsSetLogErrorHandler( lcms_error_handler ); cmsSetLogErrorHandler( lcms_error_handler );
#else
FIXME( "Wine was built without support for liblcms2, expect problems\n" );
#endif #endif
break; break;
case DLL_PROCESS_DETACH: case DLL_PROCESS_DETACH:
......
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