Added font manager initialization.
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 @@
 #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 @@
 
 #ifdef USE_GL
 	{"gl",		initgl},
+#ifdef USE_FM
+	{"fm",		initfm},
+#endif
 #ifdef USE_PANEL
 	{"pnl",		initpanel},
 #endif