diff options
author | Guido van Rossum <guido@python.org> | 1997-05-09 02:40:44 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-05-09 02:40:44 (GMT) |
commit | f4eb63ef9a5541b63aa2c0c28ebbd2ee9ef914ab (patch) | |
tree | c74a315b5a51e5ef35ccd78e138bf30a390d70b4 /config.h.in | |
parent | 33fde573009d1c564a8bf7ac4869fef4d7d0c8a4 (diff) | |
download | cpython-f4eb63ef9a5541b63aa2c0c28ebbd2ee9ef914ab.zip cpython-f4eb63ef9a5541b63aa2c0c28ebbd2ee9ef914ab.tar.gz cpython-f4eb63ef9a5541b63aa2c0c28ebbd2ee9ef914ab.tar.bz2 |
Add HAVE_PTHREAD_H; move WANT_SIGFPE_HANDLER.
Diffstat (limited to 'config.h.in')
-rw-r--r-- | config.h.in | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/config.h.in b/config.h.in index 51eb723..b7942d4 100644 --- a/config.h.in +++ b/config.h.in @@ -118,6 +118,9 @@ /* Define to empty if the keyword does not work. */ #undef volatile +/* Define if you want SIGFPE handled (see Include/pyfpe.h). */ +#undef WANT_SIGFPE_HANDLER + /* 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. @@ -295,6 +298,9 @@ /* Define if you have the <ndir.h> header file. */ #undef HAVE_NDIR_H +/* Define if you have the <pthread.h> header file. */ +#undef HAVE_PTHREAD_H + /* Define if you have the <signal.h> header file. */ #undef HAVE_SIGNAL_H @@ -343,9 +349,6 @@ /* Define if you have the <sys/wait.h> header file. */ #undef HAVE_SYS_WAIT_H -/* Define if you want SIGFPE handled (see Include/pyfpe.h). */ -#undef WANT_SIGFPE_HANDLER - /* Define if you have the <thread.h> header file. */ #undef HAVE_THREAD_H |