aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2009-06-03 05:19:18 +0000
committerHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2009-06-03 05:19:18 +0000
commit6b0e51a08c66e5b4da4c1cc1fe35f99efa102cdc (patch)
treed3ac7700e8c6f108a3b5c3bf5691b8a0d3e8edf5 /PC/pyconfig.h
parentrange() doesn't return a list (diff)
downloadcpython-6b0e51a08c66e5b4da4c1cc1fe35f99efa102cdc.tar.gz
cpython-6b0e51a08c66e5b4da4c1cc1fe35f99efa102cdc.tar.bz2
cpython-6b0e51a08c66e5b4da4c1cc1fe35f99efa102cdc.zip
Issue #6183: Disables wcsftime on VC6.
Diffstat (limited to 'PC/pyconfig.h')
-rw-r--r--PC/pyconfig.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/PC/pyconfig.h b/PC/pyconfig.h
index d76846fe403..3c3c6f49eb7 100644
--- a/PC/pyconfig.h
+++ b/PC/pyconfig.h
@@ -638,7 +638,9 @@ Py_NO_ENABLE_SHARED to find out. Also support MS_NO_COREDLL for b/w compat */
/* #undef HAVE_WAITPID */
/* Define to 1 if you have the `wcsftime' function. */
+#if defined(_MSC_VER) && _MSC_VER >= 1310
#define HAVE_WCSFTIME 1
+#endif
/* Define to 1 if you have the `wcscoll' function. */
#ifndef MS_WINCE