Commit d1ab7f5a4ce3be98ebe4560aee260476c43ad6f6

Just van Rossum 2000-07-23T16:23:12

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

diff --git a/src/base/ftinit.c b/src/base/ftinit.c
index c5d81db..cc754eb 100644
--- a/src/base/ftinit.c
+++ b/src/base/ftinit.c
@@ -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
   };