diff options
author | Sjoerd Mullender <sjoerd@acm.org> | 1993-12-21 17:06:12 (GMT) |
---|---|---|
committer | Sjoerd Mullender <sjoerd@acm.org> | 1993-12-21 17:06:12 (GMT) |
commit | c4f169cc5a990c9015782733b26bca4b2616ac24 (patch) | |
tree | 40a340d8aa2188408a475fb7efd21c9c44227296 /Modules/config.c.in | |
parent | 7030b1ff2dea3012e044e521748444c9c53a40dd (diff) | |
download | cpython-c4f169cc5a990c9015782733b26bca4b2616ac24.zip cpython-c4f169cc5a990c9015782733b26bca4b2616ac24.tar.gz cpython-c4f169cc5a990c9015782733b26bca4b2616ac24.tar.bz2 |
rgbimgmodule.c, Makefile, config.c: new module to read RGB image files.
Does not need any SGI-specific libraries.
cgen.py, cstubs, Makefile: Generate glmodule.c differently so that it
can be compiled using an ANSI compiler.
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 b8fc15f..b4f7d3d 100644 --- a/Modules/config.c.in +++ b/Modules/config.c.in @@ -299,6 +299,9 @@ extern void initXlib(); #ifdef USE_PARSER extern void initparser(); #endif +#ifdef USE_RGBIMG +extern void initrgbimg(); +#endif /* -- ADDMODULE MARKER 1 -- */ struct { @@ -482,6 +485,10 @@ struct { {"parser", initparser}, #endif +#ifdef USE_RGBIMG + {"rgbimg", initrgbimg}, +#endif + /* -- ADDMODULE MARKER 2 -- */ {0, 0} /* Sentinel */ |