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();
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},
......
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