[Python-checkins] CVS: python/dist/src/PC config.h,1.36,1.37

Fred L. Drake python-dev@python.org
Tue, 27 Jun 2000 20:54:51 -0700


Update of /cvsroot/python/python/dist/src/PC
In directory slayer.i.sourceforge.net:/tmp/cvs-serv8581

Modified Files:
	config.h 
Log Message:

Changed the #error to a #warning when checking gcc versions, and
noted the minimum recommended version in the message.


Index: config.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/PC/config.h,v
retrieving revision 1.36
retrieving revision 1.37
diff -C2 -r1.36 -r1.37
*** config.h	2000/06/19 13:41:54	1.36
--- config.h	2000/06/28 03:54:48	1.37
***************
*** 32,36 ****
  */
  #if (__GNUC__==2) && (__GNUC_MINOR__<=91)
! #error "Please use an up-to-date version of gcc"
  #endif
  
--- 32,36 ----
  */
  #if (__GNUC__==2) && (__GNUC_MINOR__<=91)
! #warning "Please use an up-to-date version of gcc! (>2.91 recommended)"
  #endif