List:Commits« Previous MessageNext Message »
From:Daniel Fischer Date:May 4 2007 7:46am
Subject:bk commit into 5.0-community tree (df:1.2475)
View as plain text  
Below is the list of changes that have just been committed into a local
5.0-community 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:46:33+02:00, df@stripped +1 -0
  backport a manifest fix

  CMakeLists.txt@stripped, 2007-05-04 09:46:31+02:00, df@stripped +5 -0
    backported fix

# 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.41

--- 1.9/CMakeLists.txt	2007-05-02 15:53:15 +02:00
+++ 1.10/CMakeLists.txt	2007-05-04 09:46:31 +02:00
@@ -150,6 +150,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") 
Thread
bk commit into 5.0-community tree (df:1.2475)Daniel Fischer4 May