List:Commits« Previous MessageNext Message »
From:Magne Mahre Date:November 11 2009 8:43pm
Subject:bzr commit into mysql-5.5-next-mr-runtime branch (magne.mahre:2932)
Bug#40700
View as plain text  
#At file:///data/z/mysql-next-mr-runtime/ based on revid:magne.mahre@stripped

 2932 Magne Mahre	2009-11-11
      Bug#40700: aclocal warnings for missing cache-id's
            
      Just change mysql_foo to mysql_cv_foo for one cache-id variable name.  There
      was only one bad variable name, present in 5.0 and 5.1, but not in the -pe
      branch.
      
      
      Backported to 5.6.0  (mysql-next-mr-runtime)

    modified:
      config/ac-macros/misc.m4
=== modified file 'config/ac-macros/misc.m4'
--- a/config/ac-macros/misc.m4	2009-07-30 15:24:09 +0000
+++ b/config/ac-macros/misc.m4	2009-11-11 20:43:31 +0000
@@ -601,15 +601,15 @@ dnl ------------------------------------
 
 dnl MYSQL_NEEDS_MYSYS_NEW
 AC_DEFUN([MYSQL_NEEDS_MYSYS_NEW],
-[AC_CACHE_CHECK([needs mysys_new helpers], mysql_use_mysys_new,
+[AC_CACHE_CHECK([needs mysys_new helpers], mysql_cv_use_mysys_new,
 [
 AC_LANG_PUSH(C++)
 AC_TRY_LINK([], [
 class A { public: int b; }; A *a=new A; a->b=10; delete a;
-], mysql_use_mysys_new=no, mysql_use_mysys_new=yes)
+], mysql_cv_use_mysys_new=no, mysql_cv_use_mysys_new=yes)
 AC_LANG_POP(C++)
 ])
-if test "$mysql_use_mysys_new" = "yes"
+if test "$mysql_cv_use_mysys_new" = "yes"
 then
   AC_DEFINE([USE_MYSYS_NEW], [1], [Needs to use mysys_new helpers])
 fi


Attachment: [text/bzr-bundle] bzr/magne.mahre@sun.com-20091111204331-qtrwu6fdccqb8ahy.bundle
Thread
bzr commit into mysql-5.5-next-mr-runtime branch (magne.mahre:2932)Bug#40700Magne Mahre11 Nov