[Python-checkins] CVS: python/dist/src configure.in,1.178,1.179 config.h.in,2.78,2.79

Fred L. Drake python-dev@python.org
Wed, 8 Nov 2000 12:23:02 -0800


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

Modified Files:
	configure.in config.h.in 
Log Message:

Remove AC_C_INLINE test from configure.in, since the only place the symbol
occurs in the Python sources appears to be as text in comments.  We do not
want to interfere with C++ keywords!

This closes bug #119851.


Index: configure.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure.in,v
retrieving revision 1.178
retrieving revision 1.179
diff -C2 -r1.178 -r1.179
*** configure.in	2000/11/07 15:44:21	1.178
--- configure.in	2000/11/08 20:22:59	1.179
***************
*** 1008,1012 ****
  AC_C_CHAR_UNSIGNED
  AC_C_CONST
- AC_C_INLINE
  
  works=no
--- 1008,1011 ----

Index: config.h.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/config.h.in,v
retrieving revision 2.78
retrieving revision 2.79
diff -C2 -r2.78 -r2.79
*** config.h.in	2000/10/09 21:48:02	2.78
--- config.h.in	2000/11/08 20:22:59	2.79
***************
*** 26,32 ****
  #undef HAVE_TZNAME
  
- /* Define as __inline if that's what the C compiler calls it.  */
- #undef inline
- 
  /* Define if on MINIX.  */
  #undef _MINIX
--- 26,29 ----