I can't compile ML with plugins=y when in console.c the line #179 begins with static.
Without it works, but I dont't know, if it's important for console_vprintf to be static.
static int console_vprintf(const char* fmt, va_list ap) // don't DebugMsg from here!
{
char buf[256];
int len = vsnprintf( buf, 255, fmt, ap );
console_puts(buf);
return len;
}