set minimum req. gcc version to 3.4.2

svn path=/trunk/; revision=25074
This commit is contained in:
Christoph von Wittich 2006-12-06 16:22:32 +00:00
parent 45f26cb114
commit e6219a7ac8

View file

@ -760,7 +760,7 @@ MingwBackend::GetCompilerVersion ( const string& compilerCommand )
bool
MingwBackend::IsSupportedCompilerVersion ( const string& compilerVersion )
{
if ( strcmp ( compilerVersion.c_str (), "3.4.5") < 0 )
if ( strcmp ( compilerVersion.c_str (), "3.4.2") < 0 )
return false;
else
return true;