diff options
author | Guido van Rossum <guido@python.org> | 1995-01-02 18:33:54 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-01-02 18:33:54 (GMT) |
commit | 76be6eda96252cc978bd7c1c35dd4184c4aba8e1 (patch) | |
tree | d5ba2ca951c5389d667224c5181287557ddfe64e /acconfig.h | |
parent | a6c707c67944f7928cff34a1745cf1a94efc5925 (diff) | |
download | cpython-76be6eda96252cc978bd7c1c35dd4184c4aba8e1.zip cpython-76be6eda96252cc978bd7c1c35dd4184c4aba8e1.tar.gz cpython-76be6eda96252cc978bd7c1c35dd4184c4aba8e1.tar.bz2 |
The usual changes when a release is nearing...
Diffstat (limited to 'acconfig.h')
-rw-r--r-- | acconfig.h | 17 |
1 files changed, 12 insertions, 5 deletions
@@ -15,8 +15,9 @@ /* Define if getpgrp() must be called as getpgrp(0). */ #undef GETPGRP_HAVE_ARG -/* Define if setpgrp() must be called as setpgrp(0, 0). */ -#undef SETPGRP_HAVE_ARG +/* Define if gettimeofday() does not have second (timezone) argument + This is the case on Motorola V4 (R40V4.2) */ +#undef GETTIMEOFDAY_NO_TZ /* Define this if your time.h defines altzone */ #undef HAVE_ALTZONE @@ -31,6 +32,9 @@ /* Define if you have POSIX threads */ #undef _POSIX_THREADS +/* Define if setpgrp() must be called as setpgrp(0, 0). */ +#undef SETPGRP_HAVE_ARG + /* Define to empty if the keyword does not work. */ #undef signed @@ -41,6 +45,12 @@ (which you can't on SCO ODT 3.0). */ #undef SYS_SELECT_WITH_SYS_TIME +/* Define if a va_list is an array of some kind */ +#undef VA_LIST_IS_ARRAY + +/* Define to empty if the keyword does not work. */ +#undef volatile + /* Define if you want to use SGI (IRIX 4) dynamic linking. This requires the "dl" library by Jack Jansen, ftp://ftp.cwi.nl/pub/dynload/dl-1.6.tar.Z. @@ -65,8 +75,5 @@ /* Define if you want to use the GNU readline library */ #undef WITH_READLINE -/* Define to empty if the keyword does not work. */ -#undef volatile - /* Leave that blank line there-- autoheader needs it! */ |