List:Commits« Previous MessageNext Message »
From:Hakan Kuecuekilmaz Date:October 18 2007 1:11am
Subject:bk commit into 6.0 tree (hakank:1.2632) BUG#31498
View as plain text  
Below is the list of changes that have just been committed into a local
6.0 repository of hakan. When hakan 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-10-18 03:11:01+02:00, hakank@stripped +1 -0
  Fix for Bug#31498 Error compiling Falcon tree on Mac OS X.
  Problem was that Falcon needs -fexeptions flag to get
  linked correctly.

  storage/falcon/plug.in@stripped, 2007-10-18 03:10:56+02:00, hakank@stripped +2 -2
    Fix for Bug#31498 Error compiling Falcon tree on Mac OS X.

diff -Nrup a/storage/falcon/plug.in b/storage/falcon/plug.in
--- a/storage/falcon/plug.in	2007-09-30 23:11:01 +02:00
+++ b/storage/falcon/plug.in	2007-10-18 03:10:56 +02:00
@@ -39,10 +39,10 @@ MYSQL_PLUGIN_ACTIONS(falcon,[
   ])
 
   # Falcon uses exceptions and STL.
-  CXXLDFLAGS="$CXXLDFLAGS -lstdc++"
+  CXXLDFLAGS="$CXXLDFLAGS -fexceptions -lstdc++"
   FALCON_CXXFLAGS="$falcon_cxx_no_invalid_offsetof -fexceptions"
   case "$with_debug" in
-    yes)  FALCON_CXXFLAGS="$FALCON_CXXFLAGS -D_DEBUG -DMEM_DEBUG" ;;
+    yes)  FALCON_CXXFLAGS="$FALCON_CXXFLAGS -D_DEBUG" ;;
     full) FALCON_CXXFLAGS="$FALCON_CXXFLAGS -D_DEBUG -DMEM_DEBUG" ;;
   esac
 
Thread
bk commit into 6.0 tree (hakank:1.2632) BUG#31498Hakan Kuecuekilmaz18 Oct