diff options
author | Guido van Rossum <guido@python.org> | 1996-05-28 22:51:24 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-05-28 22:51:24 (GMT) |
commit | 554e96fd3d5762aa0391385e93b1e66f4915ac21 (patch) | |
tree | 50b715636ba8c9f0ec85e23ddf11770e7eb30425 | |
parent | 87d5e705c330417db768297bdba675a10dbd0ddb (diff) | |
download | cpython-554e96fd3d5762aa0391385e93b1e66f4915ac21.zip cpython-554e96fd3d5762aa0391385e93b1e66f4915ac21.tar.gz cpython-554e96fd3d5762aa0391385e93b1e66f4915ac21.tar.bz2 |
Added HAVE_ symbols for mkfifo, sigaction, sigrelse, ncurses.h.
-rw-r--r-- | config.h.in | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/config.h.in b/config.h.in index 0a33fbe..98ff9e6 100644 --- a/config.h.in +++ b/config.h.in @@ -175,6 +175,9 @@ /* Define if you have the lstat function. */ #undef HAVE_LSTAT +/* Define if you have the mkfifo function. */ +#undef HAVE_MKFIFO + /* Define if you have the nice function. */ #undef HAVE_NICE @@ -202,9 +205,15 @@ /* Define if you have the setvbuf function. */ #undef HAVE_SETVBUF +/* Define if you have the sigaction function. */ +#undef HAVE_SIGACTION + /* Define if you have the siginterrupt function. */ #undef HAVE_SIGINTERRUPT +/* Define if you have the sigrelse function. */ +#undef HAVE_SIGRELSE + /* Define if you have the strftime function. */ #undef HAVE_STRFTIME @@ -241,6 +250,9 @@ /* Define if you have the <limits.h> header file. */ #undef HAVE_LIMITS_H +/* Define if you have the <ncurses.h> header file. */ +#undef HAVE_NCURSES_H + /* Define if you have the <ndir.h> header file. */ #undef HAVE_NDIR_H |