summaryrefslogtreecommitdiff
path: root/Modules/config.c.in
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1992-10-26 13:40:15 +0000
committerGuido van Rossum <guido@python.org>1992-10-26 13:40:15 +0000
commit7dd909a5a95ab38e704af2b7dfe46ef59c908233 (patch)
tree2ad0b16bf3c428235ad542b1ba28c42954902d5c /Modules/config.c.in
parent856b876f29d4200aa7dfcb4475cb1f7714c85189 (diff)
downloadcpython-7dd909a5a95ab38e704af2b7dfe46ef59c908233.tar.gz
Added imageopmodule.c, also added them to Makefile and config.c.
Fixed a bug in Addmodule.sh that caused a crash in Configure.py. Fixed the crash in Configure.py...
Diffstat (limited to 'Modules/config.c.in')
-rw-r--r--Modules/config.c.in7
1 files changed, 7 insertions, 0 deletions
diff --git a/Modules/config.c.in b/Modules/config.c.in
index 7edffbe9dc..b2ca0eb8ff 100644
--- a/Modules/config.c.in
+++ b/Modules/config.c.in
@@ -220,6 +220,9 @@ extern void initcl();
#ifdef USE_TIME
extern void inittime();
#endif
+#ifdef USE_IMAGEOP
+extern void initimageop();
+#endif
/* -- ADDMODULE MARKER 1 -- */
struct {
@@ -351,6 +354,10 @@ struct {
{"time", inittime},
#endif
+#ifdef USE_IMAGEOP
+ {"imageop", initimageop},
+#endif
+
/* -- ADDMODULE MARKER 2 -- */
{0, 0} /* Sentinel */