Commit 7fe35ef3 authored by Guido van Rossum's avatar Guido van Rossum

Support JPEG option.

parent dff3b4ab
...@@ -112,6 +112,9 @@ extern void initstdwin(); ...@@ -112,6 +112,9 @@ extern void initstdwin();
#ifdef USE_SOCKET #ifdef USE_SOCKET
extern void initsocket(); extern void initsocket();
#endif #endif
#ifdef USE_JPEG
extern void initjpeg();
#endif
struct { struct {
char *name; char *name;
...@@ -164,5 +167,9 @@ struct { ...@@ -164,5 +167,9 @@ struct {
{"socket", initsocket}, {"socket", initsocket},
#endif #endif
#ifdef USE_JPEG
{"jpeg", initjpeg},
#endif
{0, 0} /* Sentinel */ {0, 0} /* Sentinel */
}; };
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment