From 47ae028071d49f81e776fbc425f13917c77f5b58 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Sat, 2 Jan 1999 21:42:48 +0000 Subject: [PATCH] Call PyInitFrozenExtensions() as requested by Mark Hammond (his patch). --- Python/frozenmain.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Python/frozenmain.c b/Python/frozenmain.c index cb46d65944a..554f4da2173 100644 --- a/Python/frozenmain.c +++ b/Python/frozenmain.c @@ -36,6 +36,7 @@ PERFORMANCE OF THIS SOFTWARE. #ifdef MS_WIN32 extern void PyWinFreeze_ExeInit(); extern void PyWinFreeze_ExeTerm(); +extern int PyInitFrozenExtensions(); #endif #ifdef HAVE_UNISTD_H @@ -72,6 +73,9 @@ Py_FrozenMain(argc, argv) setbuf(stderr, (char *)NULL); } +#ifdef MS_WIN32 + PyInitFrozenExtensions(); +#endif /* MS_WIN32 */ Py_SetProgramName(argv[0]); Py_Initialize(); #ifdef MS_WIN32