diff options
author | Guido van Rossum <guido@python.org> | 1991-11-12 15:40:36 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1991-11-12 15:40:36 (GMT) |
commit | 56a5afc7ea3f168056bf7db6d259b27147e4d295 (patch) | |
tree | 9c8bc6444e2039b25fd1458a610c8794fa62f5f7 /Modules | |
parent | ddfb3ebdf617b9fbde4a7960fe85a4518adaa700 (diff) | |
download | cpython-56a5afc7ea3f168056bf7db6d259b27147e4d295.zip cpython-56a5afc7ea3f168056bf7db6d259b27147e4d295.tar.gz cpython-56a5afc7ea3f168056bf7db6d259b27147e4d295.tar.bz2 |
Support JPEG option.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/config.c.in | 7 |
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 */ }; |