diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-09-05 10:36:23 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-09-05 10:36:23 (GMT) |
commit | 9c1133678652e7c43f10f29cb3fa204665316860 (patch) | |
tree | d1cc00b76a0fcdda79003cec0c54bce99eb09f56 /pyconfig.h.in | |
parent | 8b939526215754a0317353f9e8d9ed85636101a0 (diff) | |
download | cpython-9c1133678652e7c43f10f29cb3fa204665316860.zip cpython-9c1133678652e7c43f10f29cb3fa204665316860.tar.gz cpython-9c1133678652e7c43f10f29cb3fa204665316860.tar.bz2 |
Merged revisions 74667 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74667 | mark.dickinson | 2009-09-05 11:27:00 +0100 (Sat, 05 Sep 2009) | 2 lines
Add configure-time checks for gamma and error functions.
........
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index a3e27ce..5225c7c 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -178,6 +178,12 @@ /* Define if you have the 'epoll' functions. */ #undef HAVE_EPOLL +/* Define to 1 if you have the `erf' function. */ +#undef HAVE_ERF + +/* Define to 1 if you have the `erfc' function. */ +#undef HAVE_ERFC + /* Define to 1 if you have the <errno.h> header file. */ #undef HAVE_ERRNO_H @@ -244,6 +250,9 @@ /* Define to 1 if you have the `gai_strerror' function. */ #undef HAVE_GAI_STRERROR +/* Define to 1 if you have the `gamma' function. */ +#undef HAVE_GAMMA + /* Define if we can use gcc inline assembler to get and set x87 control word */ #undef HAVE_GCC_ASM_FOR_X87 @@ -374,6 +383,9 @@ /* Define to 1 if you have the `lchown' function. */ #undef HAVE_LCHOWN +/* Define to 1 if you have the `lgamma' function. */ +#undef HAVE_LGAMMA + /* Define to 1 if you have the `dl' library (-ldl). */ #undef HAVE_LIBDL @@ -774,6 +786,9 @@ /* Define to 1 if you have the <term.h> header file. */ #undef HAVE_TERM_H +/* Define to 1 if you have the `tgamma' function. */ +#undef HAVE_TGAMMA + /* Define to 1 if you have the <thread.h> header file. */ #undef HAVE_THREAD_H |