diff options
author | Guido van Rossum <guido@python.org> | 1994-01-04 22:02:27 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1994-01-04 22:02:27 (GMT) |
commit | 79556aab8124ad7b7f5a76f6f8811ba14ba32908 (patch) | |
tree | 215d4dfe5d90bd6000281897103f6e26a802abe9 /acconfig.h | |
parent | e182fe5342e91f4df06e89fde56b37b92b6c0360 (diff) | |
download | cpython-79556aab8124ad7b7f5a76f6f8811ba14ba32908.zip cpython-79556aab8124ad7b7f5a76f6f8811ba14ba32908.tar.gz cpython-79556aab8124ad7b7f5a76f6f8811ba14ba32908.tar.bz2 |
redid build process; added --with-svr4; renamed USE_THREAD to
WITH_THREAD; bumped version to 1.0.0 BETA 3
Diffstat (limited to 'acconfig.h')
-rw-r--r-- | acconfig.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/acconfig.h b/acconfig.h new file mode 100644 index 0000000..a73785c --- /dev/null +++ b/acconfig.h @@ -0,0 +1,29 @@ +/* Leave this blank line here -- autoheader needs it! */ + + +/* Define if your <unistd.h> contains bad prototypes for exec*() + (as it does on SGI IRIX 4.x) */ +#undef BAD_EXEC_PROTOTYPES + +/* Define if getpgrp() must be called as getpgrp(0) + and (consequently) setpgrp() as setpgrp(0, 0). */ +#undef GETPGRP_HAVE_ARGS + +/* Define if your compiler supports function prototypes */ +#undef HAVE_PROTOTYPES + +/* Define for SOLARIS 2.x */ +#undef SOLARIS + +/* Define if it's a bad idea to include <sys/select.h> and <sys/time.h> + in the same file (as it is on SCO ODT 3.0) */ +#undef SYS_SELECT_WITH_SYS_TIME + +/* Define if you want to compile in rudimentary thread support */ +#undef WITH_THREAD + +/* Define if you want to use the GNU readline library */ +#undef WITH_READLINE + + +/* Leave that blank line there-- autoheader needs it! */ |