end, not to confuse libtool, which expects the EXPORTS line to be
the first. Add FcConfigEnableHome.
+ * src/fccfg.c: Check also for DLL_EXPORT as indication of being
+ built as a DLL on Win32.
+
2003-06-09 Keith Packard <keithp@keithp.com>
* Tag version 2.2.90
#undef STRICT
#endif
+#if defined (_WIN32) && !defined (R_OK)
+#define R_OK 4
+#endif
+
FcConfig *_fcConfig;
FcConfig *
return FcConfigSubstituteWithPat (config, p, 0, kind);
}
-#if defined (_WIN32) && defined (PIC)
+#if defined (_WIN32) && (defined (PIC) || defined (DLL_EXPORT))
static FcChar8 fontconfig_path[1000] = "";