summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1991-11-12 15:40:36 (GMT)
committerGuido van Rossum <guido@python.org>1991-11-12 15:40:36 (GMT)
commit56a5afc7ea3f168056bf7db6d259b27147e4d295 (patch)
tree9c8bc6444e2039b25fd1458a610c8794fa62f5f7 /Modules
parentddfb3ebdf617b9fbde4a7960fe85a4518adaa700 (diff)
downloadcpython-56a5afc7ea3f168056bf7db6d259b27147e4d295.zip
cpython-56a5afc7ea3f168056bf7db6d259b27147e4d295.tar.gz
cpython-56a5afc7ea3f168056bf7db6d259b27147e4d295.tar.bz2
Support JPEG option.
Diffstat (limited to 'Modules')
-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 69eb4e6..103ee82 100644
--- a/Modules/config.c.in
+++ b/Modules/config.c.in
@@ -112,6 +112,9 @@ extern void initstdwin();
#ifdef USE_SOCKET
extern void initsocket();
#endif
+#ifdef USE_JPEG
+extern void initjpeg();
+#endif
struct {
char *name;
@@ -164,5 +167,9 @@ struct {
{"socket", initsocket},
#endif
+#ifdef USE_JPEG
+ {"jpeg", initjpeg},
+#endif
+
{0, 0} /* Sentinel */
};