List:Commits« Previous MessageNext Message »
From:Hakan Kuecuekyilmaz Date:November 27 2008 9:22am
Subject:bzr commit into mysql-6.0-falcon branch (hky:2922)
View as plain text  
#At file:///home/hakan/work/mysql/mysql-6.0-falcon/ based on revid:hky@stripped

 2922 Hakan Kuecuekyilmaz	2008-11-27
      Added _cv_ for cached variables.
modified:
  storage/falcon/plug.in

=== modified file 'storage/falcon/plug.in'
--- a/storage/falcon/plug.in	2008-11-27 08:45:16 +0000
+++ b/storage/falcon/plug.in	2008-11-27 09:22:22 +0000
@@ -120,7 +120,7 @@ MYSQL_PLUGIN_ACTIONS(falcon,[
   # compiled program and throwing and catching an exception
   CXXFLAGS=$FALCON_CXXFLAGS
   AC_CACHE_CHECK([if compiler and compiler options support C++ exceptions for Falcon],
-	            falcon_supported_by_compiler,[
+	            falcon_cv_supported_by_compiler,[
   AC_TRY_RUN([
     int main() {
       try {
@@ -129,13 +129,13 @@ MYSQL_PLUGIN_ACTIONS(falcon,[
       catch (int) {
         return 0;
       }
-      return -1; 
+      return -1;
     }
-  ], falcon_supported_by_compiler="yes",
-     falcon_supported_by_compiler="no", )
+  ], falcon_cv_supported_by_compiler="yes",
+     falcon_cv_supported_by_compiler="no", )
   ])
 
-  if test "$falcon_supported_by_compiler" != "yes"; then
+  if test "$falcon_cv_supported_by_compiler" != "yes"; then
     echo "Falcon must be compiled with support for C++ exceptions enabled."
     echo "Please adjust your compiler flags or disable support for Falcon (--without-plugin-falcon)."
     exit 1

Thread
bzr commit into mysql-6.0-falcon branch (hky:2922) Hakan Kuecuekyilmaz27 Nov
  • Re: bzr commit into mysql-6.0-falcon branch (hky:2922)Olav Sandstaa27 Nov