Fix the Windows build by removing references to the cStringIO module
which no longer exists.
This commit is contained in:
parent
97cf99fc7e
commit
12f8a0538b
|
@ -293,10 +293,6 @@ SOURCE=..\..\Modules\zlib\crc32.c
|
|||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Modules\cStringIO.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Modules\datetimemodule.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
|
|
@ -478,9 +478,6 @@
|
|||
<File
|
||||
RelativePath="..\..\PC\config.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\Modules\cStringIO.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\Modules\datetimemodule.c">
|
||||
</File>
|
||||
|
|
|
@ -990,10 +990,10 @@
|
|||
RelativePath="..\..\Modules\_fileio.c"
|
||||
>
|
||||
</File>
|
||||
<File^M
|
||||
RelativePath="..\..\Modules\_bytesio.c"^M
|
||||
>^M
|
||||
</File>^M
|
||||
<File^M
|
||||
RelativePath="..\..\Modules\_bytesio.c"^M
|
||||
>^M
|
||||
</File>^M
|
||||
<File
|
||||
RelativePath="..\..\Modules\_functoolsmodule.c"
|
||||
>
|
||||
|
@ -1050,10 +1050,6 @@
|
|||
RelativePath="..\..\Modules\cmathmodule.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\Modules\cStringIO.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\Modules\datetimemodule.c"
|
||||
>
|
||||
|
|
|
@ -23,7 +23,6 @@ extern void init_sha256(void);
|
|||
extern void init_sha512(void);
|
||||
extern void inittime(void);
|
||||
extern void init_thread(void);
|
||||
extern void initcStringIO(void);
|
||||
#ifdef WIN32
|
||||
extern void initmsvcrt(void);
|
||||
extern void init_locale(void);
|
||||
|
@ -95,7 +94,6 @@ struct _inittab _PyImport_Inittab[] = {
|
|||
#ifdef WITH_THREAD
|
||||
{"_thread", init_thread},
|
||||
#endif
|
||||
{"cStringIO", initcStringIO},
|
||||
#ifdef WIN32
|
||||
{"msvcrt", initmsvcrt},
|
||||
{"_locale", init_locale},
|
||||
|
|
|
@ -287,7 +287,6 @@ SRC.MODULES= $(addprefix $(TOP), \
|
|||
Modules/cmathmodule.c \
|
||||
Modules/_codecsmodule.c \
|
||||
Modules/collectionsmodule.c \
|
||||
Modules/cStringIO.c \
|
||||
Modules/_csv.c \
|
||||
Modules/datetimemodule.c \
|
||||
Modules/errnomodule.c \
|
||||
|
|
|
@ -1054,10 +1054,6 @@
|
|||
RelativePath="..\Modules\cmathmodule.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\Modules\cStringIO.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\Modules\datetimemodule.c"
|
||||
>
|
||||
|
|
Loading…
Reference in New Issue