]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Support JPEG option.
authorGuido van Rossum <guido@python.org>
Tue, 12 Nov 1991 15:40:36 +0000 (15:40 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 12 Nov 1991 15:40:36 +0000 (15:40 +0000)
Modules/config.c.in

index 69eb4e67fbb7668044736a304cc618d1165e7ff8..103ee82fed12864f553dfc189447c5f846738602 100644 (file)
@@ -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 */
 };