Use default stack size on Windows
authorJan Dubois <jand@activestate.com>
Tue, 30 Nov 2010 01:10:02 +0000 (17:10 -0800)
committerJan Dubois <jand@activestate.com>
Tue, 30 Nov 2010 01:11:28 +0000 (17:11 -0800)
commit56a86867b86f603e24bea0daab37d0f2a978e03c
tree1286b2b9fa70f6a357c5947cda61d538f67ac761
parentceac08d31e451a6c38e90b0438d90faa777ca77c
Use default stack size on Windows

Perl used to request 16MB of stack instead of the default 1MB (when
compiling with VC++).  I believe this was done to accomodate the
recursive nature of the regex engine, which is no longer a concern
since 5.10.  The requested stack size will be reserved for each
thread created by the process, not just for the main thread.

Note also that we don't explicitly specify the stack size when
compiling with GCC on Windows (MinGW), which reserves a stack size of
2MB by default.
win32/Makefile
win32/makefile.mk