Support JPEG option.

This commit is contained in:
Guido van Rossum 1991-11-12 15:40:36 +00:00
parent ddfb3ebdf6
commit 56a5afc7ea
1 changed files with 7 additions and 0 deletions

View 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 */
};