summaryrefslogtreecommitdiffstats
path: root/Modules/config.c.in
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1992-10-26 13:40:15 (GMT)
committerGuido van Rossum <guido@python.org>1992-10-26 13:40:15 (GMT)
commit0317a4719b6b08b8eb3210675b75ecc736a8f02d (patch)
tree2ad0b16bf3c428235ad542b1ba28c42954902d5c /Modules/config.c.in
parenta1b51f374f440645d9f8139f696180ae24d74db5 (diff)
downloadcpython-0317a4719b6b08b8eb3210675b75ecc736a8f02d.zip
cpython-0317a4719b6b08b8eb3210675b75ecc736a8f02d.tar.gz
cpython-0317a4719b6b08b8eb3210675b75ecc736a8f02d.tar.bz2
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 7edffbe..b2ca0eb 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 */
value='bug_3613671'>bug_3613671 Tcl is a high-level, general-purpose, interpreted, dynamic programming language. It was designed with the goal of being very simple but powerful.
summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* fix warningsdas2006-06-211-22/+22
* * generic/tclIOUtil.c: Changed default configuration todgp2006-06-21