From: Fred Drake Date: Wed, 28 Jun 2000 03:54:48 +0000 (+0000) Subject: Changed the #error to a #warning when checking gcc versions, and X-Git-Tag: v2.0b1~1383 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e39607f27e3c9e3c1d0077b3f5870ba2824b2763;p=thirdparty%2FPython%2Fcpython.git Changed the #error to a #warning when checking gcc versions, and noted the minimum recommended version in the message. --- diff --git a/PC/config.h b/PC/config.h index 7081551cc74e..6a1e4c101b1d 100644 --- a/PC/config.h +++ b/PC/config.h @@ -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 /*