diff options
author | Brett Cannon <bcannon@gmail.com> | 2007-05-20 19:05:06 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2007-05-20 19:05:06 (GMT) |
commit | 7e93587746374693b10b3c8cade7a0bc8c7eb100 (patch) | |
tree | 1bfdcb1ff4b63adc16136a61aa7bad3e0b566cbe /PC | |
parent | f8519c4d3db861f8abd865ab04f7c03201711f56 (diff) | |
download | cpython-7e93587746374693b10b3c8cade7a0bc8c7eb100.zip cpython-7e93587746374693b10b3c8cade7a0bc8c7eb100.tar.gz cpython-7e93587746374693b10b3c8cade7a0bc8c7eb100.tar.bz2 |
Try to remove rgbimg from Windows builds.
Diffstat (limited to 'PC')
-rw-r--r-- | PC/config.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/PC/config.c b/PC/config.c index 6860211..9961efa 100644 --- a/PC/config.c +++ b/PC/config.c @@ -20,9 +20,6 @@ extern void initmath(void); extern void init_md5(void); extern void initnt(void); extern void initoperator(void); -#ifndef MS_WINI64 -extern void initrgbimg(void); -#endif extern void initsignal(void); extern void init_sha(void); extern void init_sha256(void); @@ -95,9 +92,6 @@ struct _inittab _PyImport_Inittab[] = { {"_md5", init_md5}, {"nt", initnt}, /* Use the NT os functions, not posix */ {"operator", initoperator}, -#ifndef MS_WINI64 - {"rgbimg", initrgbimg}, -#endif {"signal", initsignal}, {"_sha", init_sha}, {"_sha256", init_sha256}, |