diff options
author | Guido van Rossum <guido@python.org> | 1991-04-03 19:01:18 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1991-04-03 19:01:18 (GMT) |
commit | 2abc7a6a9a36a6ae1b605973467ad10a67962573 (patch) | |
tree | 98ebc5e38ef5d7cc7e77b223893507df1a5e5688 /Modules | |
parent | e543a94746ec2e51b2821cd739291c8d5f7c7f6a (diff) | |
download | cpython-2abc7a6a9a36a6ae1b605973467ad10a67962573.zip cpython-2abc7a6a9a36a6ae1b605973467ad10a67962573.tar.gz cpython-2abc7a6a9a36a6ae1b605973467ad10a67962573.tar.bz2 |
Added font manager initialization.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/config.c.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Modules/config.c.in b/Modules/config.c.in index f81a5bd..40facc2 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 |