Changed the #error to a #warning when checking gcc versions, and

noted the minimum recommended version in the message.
This commit is contained in:
Fred Drake 2000-06-28 03:54:48 +00:00
parent 69db0e4a0b
commit e39607f27e
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ compiler specific". Therefore, these should be very rare.
compiler don't exhibit this bug.
*/
#if (__GNUC__==2) && (__GNUC_MINOR__<=91)
#error "Please use an up-to-date version of gcc"
#warning "Please use an up-to-date version of gcc! (>2.91 recommended)"
#endif
/*