]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Added support for CD module
authorGuido van Rossum <guido@python.org>
Fri, 15 May 1992 11:06:12 +0000 (11:06 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 15 May 1992 11:06:12 +0000 (11:06 +0000)
Modules/config.c.in

index fdc8d2514cea745cded061b0d12952ab6c079594..d17e7de507aec445324b055371af855419350d5e 100644 (file)
@@ -139,6 +139,9 @@ extern void initsocket();
 #ifdef USE_JPEG
 extern void initjpeg();
 #endif
+#ifdef USE_CD
+extern void initcd();
+#endif
 
 struct {
        char *name;
@@ -195,5 +198,9 @@ struct {
        {"jpeg",        initjpeg},
 #endif
 
+#ifdef USE_CD
+       {"cd",          initcd},
+#endif
+
        {0,             0}              /* Sentinel */
 };