From: Guido van Rossum Date: Tue, 12 Nov 1991 15:40:36 +0000 (+0000) Subject: Support JPEG option. X-Git-Tag: v0.9.8~750 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=56a5afc7ea3f168056bf7db6d259b27147e4d295;p=thirdparty%2FPython%2Fcpython.git Support JPEG option. --- diff --git a/Modules/config.c.in b/Modules/config.c.in index 69eb4e67fbb7..103ee82fed12 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 */ };