summaryrefslogtreecommitdiff
path: root/pyconfig.h.in
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-01-04 13:57:26 +0000
committerMark Dickinson <dickinsm@gmail.com>2009-01-04 13:57:26 +0000
commit2f799c03c5fab50b0222c4837f8a9f710b15e611 (patch)
treef7450df853fcb1151d207451fd6ac4e470b8cb56 /pyconfig.h.in
parenta698de2638d581addc574be189d663c59df8ffb9 (diff)
downloadcpython-2f799c03c5fab50b0222c4837f8a9f710b15e611.tar.gz
isinf and isnan are macros, not functions; fix configure script
to use AC_CHECK_DECLS instead of AC_CHECK_FUNCS for these. (See discussion in issue #4506)
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r--pyconfig.h.in18
1 files changed, 12 insertions, 6 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in
index e3fb0a5857..82285bd36a 100644
--- a/pyconfig.h.in
+++ b/pyconfig.h.in
@@ -115,6 +115,18 @@
/* Define if you have the 'resize_term' function. */
#undef HAVE_CURSES_RESIZE_TERM
+/* Define to 1 if you have the declaration of `isfinite', and to 0 if you
+ don't. */
+#undef HAVE_DECL_ISFINITE
+
+/* Define to 1 if you have the declaration of `isinf', and to 0 if you don't.
+ */
+#undef HAVE_DECL_ISINF
+
+/* Define to 1 if you have the declaration of `isnan', and to 0 if you don't.
+ */
+#undef HAVE_DECL_ISNAN
+
/* Define to 1 if you have the declaration of `tzname', and to 0 if you don't.
*/
#undef HAVE_DECL_TZNAME
@@ -315,12 +327,6 @@
/* Define to 1 if you have the <io.h> header file. */
#undef HAVE_IO_H
-/* Define to 1 if you have the `isinf' function. */
-#undef HAVE_ISINF
-
-/* Define to 1 if you have the `isnan' function. */
-#undef HAVE_ISNAN
-
/* Define to 1 if you have the `kill' function. */
#undef HAVE_KILL