diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-09-05 00:09:07 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-09-05 00:09:07 (GMT) |
commit | d7f73e913d90fdf0bab7baef51816926b42e4ed9 (patch) | |
tree | 148fa98c3a300bb8bb4c8f7e0caa2976209b6c87 /pyconfig.h.in | |
parent | f95b199339183de10521f18e2bc53a733328a1fa (diff) | |
download | cpython-d7f73e913d90fdf0bab7baef51816926b42e4ed9.zip cpython-d7f73e913d90fdf0bab7baef51816926b42e4ed9.tar.gz cpython-d7f73e913d90fdf0bab7baef51816926b42e4ed9.tar.bz2 |
run autoreconf
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index 50c2127..309332f 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -1040,11 +1040,10 @@ /* Define to 1 if your <sys/time.h> declares `struct tm'. */ #undef TM_IN_SYS_TIME -/* Define to 0 if you don't want to use computed gotos in ceval.c. - (The default is to use them if HAVE_COMPUTED_GOTOS is defined.) */ +/* Define if you want to use computed gotos in ceval.c. */ #undef USE_COMPUTED_GOTOS -/* Define if the compiler supports the inline keyword */ +/* Define to use the C99 inline keyword. */ #undef USE_INLINE /* Enable extensions on AIX 3, Interix. */ @@ -1200,6 +1199,12 @@ /* Define to `int' if <sys/types.h> doesn't define. */ #undef gid_t +/* Define to `__inline__' or `__inline' if that's what the C compiler + calls it, or to nothing if 'inline' is not supported under any name. */ +#ifndef __cplusplus +#undef inline +#endif + /* Define to the type of a signed integer type of width exactly 32 bits if such a type exists and the standard includes do not define it. */ #undef int32_t |