List:Commits« Previous MessageNext Message »
From:Daniel Fischer Date:April 23 2007 3:44pm
Subject:bk commit into 6.0-falcon tree (df:1.2640)
View as plain text  
Below is the list of changes that have just been committed into a local
6.0-falcon 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-04-23 17:44:46+02:00, df@stripped +2 -0
  falcon fixes

  CMakeLists.txt@stripped, 2007-04-23 17:44:44+02:00, df@stripped +8 -0
    windows build fix

  support-files/mysql.spec.sh@stripped, 2007-04-23 17:44:44+02:00, df@stripped +2 -0
    build with falcon engine by default

# 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.1-falcon

--- 1.189/support-files/mysql.spec.sh	2007-04-05 16:13:46 +02:00
+++ 1.190/support-files/mysql.spec.sh	2007-04-23 17:44:44 +02:00
@@ -319,6 +319,7 @@
 CFLAGS=`echo "${MYSQL_BUILD_CFLAGS:-$RPM_OPT_FLAGS} -g" | sed -e 's/-O[0-9]*//g'` \
 CXXFLAGS=`echo "${MYSQL_BUILD_CXXFLAGS:-$RPM_OPT_FLAGS -felide-constructors -fno-exceptions -fno-rtti} -g" | sed -e 's/-O[0-9]*//g'` \
 BuildMySQL "--enable-shared \
+                --with-falcon \
 		--with-debug \
 		--with-innodb \
 		--with-ndbcluster \
@@ -349,6 +350,7 @@
 CFLAGS="${MYSQL_BUILD_CFLAGS:-$RPM_OPT_FLAGS} -g" \
 CXXFLAGS="${MYSQL_BUILD_CXXFLAGS:-$RPM_OPT_FLAGS -felide-constructors -fno-exceptions -fno-rtti} -g" \
 BuildMySQL "--enable-shared \
+                --with-falcon \
 		--with-innodb \
 		--with-ndbcluster \
 		--with-archive-storage-engine \

--- 1.26/CMakeLists.txt	2007-03-29 11:26:30 +02:00
+++ 1.27/CMakeLists.txt	2007-04-23 17:44:44 +02:00
@@ -118,6 +118,14 @@
 	STRING(REPLACE "/MDd" "/MTd" CMAKE_CXX_FLAGS_DEBUG 
 	       ${CMAKE_CXX_FLAGS_DEBUG})
 
+	STRING(REPLACE "/MD" "/MT" CMAKE_CXX_FLAGS_RELWITHDEBINFO 
+	       ${CMAKE_CXX_FLAGS_RELWITHDEBINFO})
+	STRING(REPLACE "/MD" "/MT" CMAKE_C_FLAGS_RELWITHDEBINFO 
+	       ${CMAKE_C_FLAGS_RELWITHDEBINFO})
+
+	# generate .map files  
+	SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /MAP /MAPINFO:EXPORTS")
+
 	# remove support for Exception handling
 	STRING(REPLACE "/GX" "" CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS})
 	STRING(REPLACE "/EHsc" "" CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS})
Thread
bk commit into 6.0-falcon tree (df:1.2640)Daniel Fischer23 Apr