Check also for DLL_EXPORT as indication of being built as a DLL on Win32.
This commit is contained in:
parent
ee1d81259e
commit
e5206dbcb3
|
@ -10,6 +10,9 @@
|
||||||
end, not to confuse libtool, which expects the EXPORTS line to be
|
end, not to confuse libtool, which expects the EXPORTS line to be
|
||||||
the first. Add FcConfigEnableHome.
|
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>
|
2003-06-09 Keith Packard <keithp@keithp.com>
|
||||||
|
|
||||||
* Tag version 2.2.90
|
* Tag version 2.2.90
|
||||||
|
|
|
@ -30,6 +30,10 @@
|
||||||
#undef STRICT
|
#undef STRICT
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined (_WIN32) && !defined (R_OK)
|
||||||
|
#define R_OK 4
|
||||||
|
#endif
|
||||||
|
|
||||||
FcConfig *_fcConfig;
|
FcConfig *_fcConfig;
|
||||||
|
|
||||||
FcConfig *
|
FcConfig *
|
||||||
|
@ -1371,7 +1375,7 @@ FcConfigSubstitute (FcConfig *config,
|
||||||
return FcConfigSubstituteWithPat (config, p, 0, kind);
|
return FcConfigSubstituteWithPat (config, p, 0, kind);
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined (_WIN32) && defined (PIC)
|
#if defined (_WIN32) && (defined (PIC) || defined (DLL_EXPORT))
|
||||||
|
|
||||||
static FcChar8 fontconfig_path[1000] = "";
|
static FcChar8 fontconfig_path[1000] = "";
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue