diff options
author | Fred Drake <fdrake@acm.org> | 2000-06-28 03:54:48 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-06-28 03:54:48 (GMT) |
commit | e39607f27e3c9e3c1d0077b3f5870ba2824b2763 (patch) | |
tree | 4b9ce77f77c84a61380e3c334e5ff3842a1b8bb6 /PC/config.h | |
parent | 69db0e4a0b8ae0818c674a4c0df7aaed4c9ec2e1 (diff) | |
download | cpython-e39607f27e3c9e3c1d0077b3f5870ba2824b2763.zip cpython-e39607f27e3c9e3c1d0077b3f5870ba2824b2763.tar.gz cpython-e39607f27e3c9e3c1d0077b3f5870ba2824b2763.tar.bz2 |
Changed the #error to a #warning when checking gcc versions, and
noted the minimum recommended version in the message.
Diffstat (limited to 'PC/config.h')
-rw-r--r-- | PC/config.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PC/config.h b/PC/config.h index 7081551..6a1e4c1 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 /* |