office-gobmx/lcms2/lcms2-windows-export.patch
Lubos Lunak 6ea1578264 Define CMS_DLL in the header as that is how we build it
Otherwise code using the lcms2 we build won't get the stdcall
decorations and linking will fail.
2012-03-19 09:51:07 +02:00

18 lines
655 B
Diff

--- misc/build/lcms2-2.3/include/lcms2.h.sav 2011-12-15 16:45:47.000000000 +0100
+++ misc/build/lcms2-2.3/include/lcms2.h 2012-03-17 22:53:28.731585981 +0100
@@ -192,6 +192,15 @@ typedef int cmsBool;
# endif
#endif
+// LibreOffice always builds this as DLL and with the stdcall calling
+// convention, so make this usable from outside without having to
+// specify CMS_DLL manually whenever the library is used.
+#ifndef CMS_DLL_BUILD
+#ifndef CMS_DLL
+#define CMS_DLL
+#endif
+#endif
+
// Calling convention -- this is hardly platform and compiler dependent
#ifdef CMS_IS_WINDOWS_
# if defined(CMS_DLL) || defined(CMS_DLL_BUILD)