diff options
author | Sjoerd Mullender <sjoerd@acm.org> | 1993-10-11 12:54:31 (GMT) |
---|---|---|
committer | Sjoerd Mullender <sjoerd@acm.org> | 1993-10-11 12:54:31 (GMT) |
commit | a9c3c22c33762699b362e7598268442fd2df9eb6 (patch) | |
tree | 7ff6bdfb7228abf0a566b6d3215a383796bd5cbf /Modules/config.c.in | |
parent | 35fe6ec4cf6e192829a5bd28c080761157258e3e (diff) | |
download | cpython-a9c3c22c33762699b362e7598268442fd2df9eb6.zip cpython-a9c3c22c33762699b362e7598268442fd2df9eb6.tar.gz cpython-a9c3c22c33762699b362e7598268442fd2df9eb6.tar.bz2 |
* Extended X interface: pixmap objects, colormap objects visual objects,
image objects, and lots of new methods.
* Added counting of allocations and deallocations of builtin types if
COUNT_ALLOCS is defined. Had to move calls to NEWREF down in some
files.
* Bug fix in sorting lists.
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 484381e..f19655f 100644 --- a/Modules/config.c.in +++ b/Modules/config.c.in @@ -310,6 +310,9 @@ extern void initGlx(); #ifdef USE_HTML extern void initHTML(); #endif +#ifdef USE_XLIB +extern void initXlib(); +#endif /* -- ADDMODULE MARKER 1 -- */ struct { @@ -485,6 +488,10 @@ struct { {"HTML", initHTML}, #endif +#ifdef USE_XLIB + {"Xlib", initXlib}, +#endif + /* -- ADDMODULE MARKER 2 -- */ {0, 0} /* Sentinel */ |