diff options
author | Guido van Rossum <guido@python.org> | 1991-08-16 08:58:56 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1991-08-16 08:58:56 (GMT) |
commit | 3fecef73d923b1c59d20f06fd9371cc8dc182771 (patch) | |
tree | e5926c5f7561294e51bab2c3f5b34ec58e6f64a8 /Modules | |
parent | 831632507a47eb5050d1f02fcb9f26aa1b1c6855 (diff) | |
download | cpython-3fecef73d923b1c59d20f06fd9371cc8dc182771.zip cpython-3fecef73d923b1c59d20f06fd9371cc8dc182771.tar.gz cpython-3fecef73d923b1c59d20f06fd9371cc8dc182771.tar.bz2 |
Added initfl() call when USE_FL is define.
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 96e93c9..bfe0ed9 100644 --- a/Modules/config.c.in +++ b/Modules/config.c.in @@ -95,6 +95,9 @@ extern void initamoeba(); extern void initgl(); #ifdef USE_FM extern void initfm(); +#ifdef USE_FL +extern void initfl(); +#endif #endif #ifdef USE_PANEL extern void initpanel(); @@ -137,6 +140,9 @@ struct { {"gl", initgl}, #ifdef USE_FM {"fm", initfm}, +#ifdef USE_FL + {"fl", initfl}, +#endif #endif #ifdef USE_PANEL {"pnl", initpanel}, |