Commit 7e935877 authored by Brett Cannon's avatar Brett Cannon

Try to remove rgbimg from Windows builds.

parent f8519c4d
...@@ -20,9 +20,6 @@ extern void initmath(void); ...@@ -20,9 +20,6 @@ extern void initmath(void);
extern void init_md5(void); extern void init_md5(void);
extern void initnt(void); extern void initnt(void);
extern void initoperator(void); extern void initoperator(void);
#ifndef MS_WINI64
extern void initrgbimg(void);
#endif
extern void initsignal(void); extern void initsignal(void);
extern void init_sha(void); extern void init_sha(void);
extern void init_sha256(void); extern void init_sha256(void);
...@@ -95,9 +92,6 @@ struct _inittab _PyImport_Inittab[] = { ...@@ -95,9 +92,6 @@ struct _inittab _PyImport_Inittab[] = {
{"_md5", init_md5}, {"_md5", init_md5},
{"nt", initnt}, /* Use the NT os functions, not posix */ {"nt", initnt}, /* Use the NT os functions, not posix */
{"operator", initoperator}, {"operator", initoperator},
#ifndef MS_WINI64
{"rgbimg", initrgbimg},
#endif
{"signal", initsignal}, {"signal", initsignal},
{"_sha", init_sha}, {"_sha", init_sha},
{"_sha256", init_sha256}, {"_sha256", init_sha256},
......
...@@ -712,9 +712,6 @@ ...@@ -712,9 +712,6 @@
<File <File
RelativePath="..\Objects\rangeobject.c"> RelativePath="..\Objects\rangeobject.c">
</File> </File>
<File
RelativePath="..\Modules\rgbimgmodule.c">
</File>
<File <File
RelativePath="..\Modules\rotatingtree.c"> RelativePath="..\Modules\rotatingtree.c">
</File> </File>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment