--- plugins/project-wizard/autogen.c.orig 2014-01-08 11:56:26.000000000 +0200 +++ plugins/project-wizard/autogen.c 2014-01-08 11:55:46.000000000 +0200 @@ -99,12 +99,12 @@ gchar* ptr; /* Check autogen */ - if (strstr(output, "The Automated Program Generator") == NULL) return FALSE; + if (strstr(output, "(GNU AutoGen)") == NULL) return FALSE; /* Get version number */ - ptr = strstr(output, "Ver. "); + ptr = strstr(output, "(GNU AutoGen) "); if (ptr == NULL) return FALSE; - ptr += 5; + ptr += 14; sscanf(ptr,"%d.%d.%d", &ver[0], &ver[1], &ver[2]); return (ver[0] == 5);