Commit 47ae0280 authored by Guido van Rossum's avatar Guido van Rossum

Call PyInitFrozenExtensions() as requested by Mark Hammond (his patch).

parent 504b0bf0
......@@ -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
......
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