Hardcode loading the Mac FOND driver here, as config/ftmodule.h sometimes gets regenerated.

This commit is contained in:
Just van Rossum 2000-07-23 16:23:12 +00:00
parent 70e5aa2320
commit d1ab7f5a4c
1 changed files with 6 additions and 0 deletions

View File

@ -55,6 +55,9 @@
#undef FT_USE_MODULE
#define FT_USE_MODULE( x ) extern const FT_Module_Class* x;
#ifdef macintosh
FT_USE_MODULE(fond_driver_class)
#endif
#include <freetype/config/ftmodule.h>
#undef FT_USE_MODULE
@ -63,6 +66,9 @@
static
const FT_Module_Class* ft_default_modules[] =
{
#ifdef macintosh
FT_USE_MODULE(fond_driver_class)
#endif
#include <freetype/config/ftmodule.h>
0
};