Kaydet (Commit) 3fecef73 authored tarafından Guido van Rossum's avatar Guido van Rossum

Added initfl() call when USE_FL is define.

üst 83163250
...@@ -95,6 +95,9 @@ extern void initamoeba(); ...@@ -95,6 +95,9 @@ extern void initamoeba();
extern void initgl(); extern void initgl();
#ifdef USE_FM #ifdef USE_FM
extern void initfm(); extern void initfm();
#ifdef USE_FL
extern void initfl();
#endif
#endif #endif
#ifdef USE_PANEL #ifdef USE_PANEL
extern void initpanel(); extern void initpanel();
...@@ -137,6 +140,9 @@ struct { ...@@ -137,6 +140,9 @@ struct {
{"gl", initgl}, {"gl", initgl},
#ifdef USE_FM #ifdef USE_FM
{"fm", initfm}, {"fm", initfm},
#ifdef USE_FL
{"fl", initfl},
#endif
#endif #endif
#ifdef USE_PANEL #ifdef USE_PANEL
{"pnl", initpanel}, {"pnl", initpanel},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment