]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Added font manager initialization.
authorGuido van Rossum <guido@python.org>
Wed, 3 Apr 1991 19:01:18 +0000 (19:01 +0000)
committerGuido van Rossum <guido@python.org>
Wed, 3 Apr 1991 19:01:18 +0000 (19:01 +0000)
Modules/config.c.in

index f81a5bd4c2fe6a5a6e5336c9a7c6d9e4dd3d57af..40facc271fd7734ac4ab3eb5b33d6405388a4669 100644 (file)
@@ -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