Add sections for PIL (Fred Lundh).

This commit is contained in:
Guido van Rossum 1997-05-14 19:22:11 +00:00
parent 4a0694d235
commit 1cbdfb9187
1 changed files with 15 additions and 1 deletions

View File

@ -27,9 +27,23 @@ Tcl_AppInit (interp)
(ClientData) main, NULL);
}
#endif
#ifdef WITH_PIL /* 0.2b5 and later -- not yet released as of May 14 */
{
extern void TkImaging_Init(Tcl_Interp *interp);
TkImaging_Init(interp);
}
#endif
#ifdef WITH_PIL_OLD /* 0.2b4 and earlier */
{
extern void TkImaging_Init(void);
TkImaging_Init();
}
#endif
#ifdef WITH_XXX
#endif
return TCL_OK;
}