From: Date: May 4 2007 9:37am Subject: bk commit into 5.0 tree (df:1.2476) BUG#24732 List-Archive: http://lists.mysql.com/commits/26067 X-Bug: 24732 Message-Id: <200705040741.l447fXm9011493@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-05-04 09:37:50+02:00, df@stripped +1 -0 BUG#24732 manifest file was not included in VS2005 amd64 builds CMakeLists.txt@stripped, 2007-05-04 09:37:49+02:00, df@stripped +5 -0 BUG#24732 prevent VS2005 from overwriting our generated manifest # This is a BitKeeper patch. What follows are the unified diffs for the # set of deltas contained in the patch. The rest of the patch, the part # that BitKeeper cares about, is below these diffs. # User: df # Host: pippilotta.erinye.com # Root: /shared/home/df/mysql/build/mysql-5.0-build-work --- 1.12/CMakeLists.txt 2007-05-02 19:21:47 +02:00 +++ 1.13/CMakeLists.txt 2007-05-04 09:37:49 +02:00 @@ -154,6 +154,11 @@ # Disable automatic manifest generation. STRING(REPLACE "/MANIFEST" "/MANIFEST:NO" CMAKE_EXE_LINKER_FLAGS ${CMAKE_EXE_LINKER_FLAGS}) + # Explicitly disable it since it is the default for newer versions of VS + STRING(REGEX MATCH "MANIFEST:NO" tmp_manifest ${CMAKE_EXE_LINKER_FLAGS}) + IF(NOT tmp_manifest) + SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /MANIFEST:NO") + ENDIF(tmp_manifest) # Set the processor architecture. IF(CMAKE_GENERATOR MATCHES "Visual Studio 8 2005 Win64") SET(PROCESSOR_ARCH "X64")