summaryrefslogtreecommitdiffstats
path: root/PC
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2008-03-27 01:36:21 (GMT)
committerChristian Heimes <christian@cheimes.de>2008-03-27 01:36:21 (GMT)
commita82e8db5e4994dbad8b5f5a81c7397beb1517cb7 (patch)
tree3c94bc4b36434053e1d2df2b5de5ef493e7c3ab2 /PC
parent8113586723e98212a3ffc6aa83b6fc22a7ab5e70 (diff)
downloadcpython-a82e8db5e4994dbad8b5f5a81c7397beb1517cb7.zip
cpython-a82e8db5e4994dbad8b5f5a81c7397beb1517cb7.tar.gz
cpython-a82e8db5e4994dbad8b5f5a81c7397beb1517cb7.tar.bz2
Hopefully added _fileio module to the Windows build system
Diffstat (limited to 'PC')
-rw-r--r--PC/config.c2
-rw-r--r--PC/pyconfig.h5
2 files changed, 5 insertions, 2 deletions
diff --git a/PC/config.c b/PC/config.c
index f2d38ae..816edca 100644
--- a/PC/config.c
+++ b/PC/config.c
@@ -52,6 +52,7 @@ extern void initparser(void);
extern void init_winreg(void);
extern void init_struct(void);
extern void initdatetime(void);
+extern void init_fileio(void);
extern void init_functools(void);
extern void initzlib(void);
@@ -129,6 +130,7 @@ struct _inittab _PyImport_Inittab[] = {
{"_winreg", init_winreg},
{"_struct", init_struct},
{"datetime", initdatetime},
+ {"_fileio", init_fileio},
{"_functools", init_functools},
{"xxsubtype", initxxsubtype},
diff --git a/PC/pyconfig.h b/PC/pyconfig.h
index 1892cf1..7cba340 100644
--- a/PC/pyconfig.h
+++ b/PC/pyconfig.h
@@ -207,12 +207,13 @@ typedef _W64 int ssize_t;
#endif /* MS_WIN32 && !MS_WIN64 */
typedef int pid_t;
-#define hypot _hypot
#include <float.h>
#define Py_IS_NAN _isnan
#define Py_IS_INFINITY(X) (!_finite(X) && !_isnan(X))
#define Py_IS_FINITE(X) _finite(X)
+#define copysign _copysign
+#define hypot _hypot
#endif /* _MSC_VER */
@@ -392,7 +393,7 @@ Py_NO_ENABLE_SHARED to find out. Also support MS_NO_COREDLL for b/w compat */
/* Fairly standard from here! */
/* Define to 1 if you have the `copysign' function. */
-/* #define HAVE_COPYSIGN 1*/
+#define HAVE_COPYSIGN 1
/* Define to 1 if you have the `isinf' function. */
#define HAVE_ISINF 1