From: Date: July 19 2007 10:46pm Subject: bk commit into 5.0 tree (df:1.2529) BUG#20815 List-Archive: http://lists.mysql.com/commits/31203 X-Bug: 20815 Message-Id: <200707192046.l6JKkkc8009705@mail.mysql.com> Below is the list of changes that have just been committed into a local 5.0 repository of df. When df does a push these changes will be propagated to the main repository and, within 24 hours after the push, to the public repository. For information on how to access the public repository see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html ChangeSet@stripped, 2007-07-19 22:46:34+02:00, df@stripped +1 -0 BUG#20815 Errno 12 on Windows after 197 connections CMakeLists.txt@stripped, 2007-07-19 22:46:32+02:00, df@stripped +3 -0 BUG#20815 Set stack size. This value is really supposed to be the linker's default. I'm not quite sure why we have to specify it manually too. diff -Nrup a/CMakeLists.txt b/CMakeLists.txt --- a/CMakeLists.txt 2007-06-26 17:25:59 +02:00 +++ b/CMakeLists.txt 2007-07-19 22:46:32 +02:00 @@ -123,6 +123,9 @@ IF(CMAKE_GENERATOR MATCHES "Visual Studi # generate map files SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /MAP /MAPINFO:EXPORTS") + # set stack size (see bug#20815) + SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /STACK:1048576") + # remove support for Exception handling STRING(REPLACE "/GX" "" CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS}) STRING(REPLACE "/EHsc" "" CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS})