diff options
author | Guido van Rossum <guido@python.org> | 1992-05-15 11:06:12 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1992-05-15 11:06:12 (GMT) |
commit | 178969df92d11af9fcf34ef171b60ca06eb98d5e (patch) | |
tree | 6519598f8b0d4f9321c9b8f9bcf79d3d9f501b55 /Modules/config.c.in | |
parent | 86d2568e16f2cc4bc1c1b9fd5cd932c8a72ff14d (diff) | |
download | cpython-178969df92d11af9fcf34ef171b60ca06eb98d5e.zip cpython-178969df92d11af9fcf34ef171b60ca06eb98d5e.tar.gz cpython-178969df92d11af9fcf34ef171b60ca06eb98d5e.tar.bz2 |
Added support for CD module
Diffstat (limited to 'Modules/config.c.in')
-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 fdc8d25..d17e7de 100644 --- a/Modules/config.c.in +++ b/Modules/config.c.in @@ -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 */ }; |