If you are a developer, please build MegaGlest on your own and get in touch to contribute (or post your patches on the forums).
the problem seems to beConfig &Config::getInstance(){ static Config config; return config;}
Config &Config::getInstance(){ static Config *config = NULL; if ( !config ) { config = new Config(); } return *config;}