Removed _stringio from Windows build.
authorAlexandre Vassalotti <alexandre@peadrop.com>
Thu, 12 Jun 2008 18:35:39 +0000 (18:35 +0000)
committerAlexandre Vassalotti <alexandre@peadrop.com>
Thu, 12 Jun 2008 18:35:39 +0000 (18:35 +0000)
For some yet unknown reason, MSVC's linker fails to resolve
_stringio's module initializer (PyInit__stringio). This probably means
the module is not build correctly. Therefore, I am removing Windows
support temporarily until I find how to add new modules properly for
MSVC.

PC/VC6/pythoncore.dsp
PC/VS7.1/pythoncore.vcproj
PC/VS8.0/pythoncore.vcproj
PC/config.c

index 2ee18d45f2048673fa0ba40c1d13e6487c6377aa..89ab515e0dfc5cca80c241007c30b9871ad83553 100644 (file)
@@ -141,10 +141,6 @@ SOURCE=..\..\Modules\_bytesio.c
 # End Source File\r
 # Begin Source File\r
 \r
-SOURCE=..\..\Modules\_stringio.c\r
-# End Source File\r
-# Begin Source File\r
-\r
 SOURCE=..\..\Modules\_functoolsmodule.c\r
 # End Source File\r
 # Begin Source File\r
index 6e821a3f9a4947d19ed0811b9ee1e77d8ba1b679..f02c2a2b69f34b57e3e4d19950c3883ccadc250e 100644 (file)
                <File
                        RelativePath="..\..\Modules\_bytesio.c">
                </File>
-               <File
-                       RelativePath="..\..\Modules\_stringio.c">
-               </File>
                <File
                        RelativePath="..\..\Modules\_functoolsmodule.c">
                </File>
index 213d13a2c16d21d219b9178e082f32e52e3ae40c..af004f4c1fe4a839c257d1c6a53f0fb582a37a54 100644 (file)
                                RelativePath="..\..\Modules\_bytesio.c"\r
                                >\r
                        </File>\r
-                       <File\r
-                               RelativePath="..\..\Modules\_stringio.c"\r
-                               >\r
-                       </File>\r
                        <File\r
                                RelativePath="..\..\Modules\_functoolsmodule.c"\r
                                >\r
index eca207252d7746d84cfe00255c030cb05b06ca63..a7f2ede9d492e4c7764ebec2af728bfe3396ae69 100644 (file)
@@ -60,8 +60,6 @@ extern PyObject* PyInit__lsprof(void);
 extern PyObject* PyInit__ast(void);
 extern PyObject* PyInit__fileio(void);
 extern PyObject* PyInit__bytesio(void);
-extern PyObject* PyInit__stringio(void);
-extern PyObject* PyInit__pickle(void);
 extern PyObject* PyInit_atexit(void);
 extern PyObject* _PyWarnings_Init(void);