From: Guido van Rossum Date: Wed, 3 Apr 1991 19:01:18 +0000 (+0000) Subject: Added font manager initialization. X-Git-Tag: v0.9.8~1021 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2abc7a6a9a36a6ae1b605973467ad10a67962573;p=thirdparty%2FPython%2Fcpython.git Added font manager initialization. --- diff --git a/Modules/config.c.in b/Modules/config.c.in index f81a5bd4c2fe..40facc271fd7 100644 --- a/Modules/config.c.in +++ b/Modules/config.c.in @@ -134,6 +134,9 @@ extern void initamoeba(); #endif #ifdef USE_GL extern void initgl(); +#ifdef USE_FM +extern void initfm(); +#endif #ifdef USE_PANEL extern void initpanel(); #endif @@ -167,6 +170,9 @@ struct { #ifdef USE_GL {"gl", initgl}, +#ifdef USE_FM + {"fm", initfm}, +#endif #ifdef USE_PANEL {"pnl", initpanel}, #endif