List:Commits« Previous MessageNext Message »
From:Timothy Smith Date:November 4 2009 11:37pm
Subject:bzr commit into mysql-5.0-bugteam branch (timothy.smith:2839) Bug#40700
View as plain text  
#At file:///home/tsmith/m/bzr/bugteam/b40700-50/ based on
revid:davi.arnaut@stripped

 2839 Timothy Smith	2009-11-04
      Fix for 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.

    modified:
      config/ac-macros/misc.m4
=== modified file 'config/ac-macros/misc.m4'
--- a/config/ac-macros/misc.m4	2009-07-30 14:12:26 +0000
+++ b/config/ac-macros/misc.m4	2009-11-04 22:34:42 +0000
@@ -726,15 +726,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/timothy.smith@sun.com-20091104223442-hsa1iwznjv1whxl0.bundle
Thread
bzr commit into mysql-5.0-bugteam branch (timothy.smith:2839) Bug#40700Timothy Smith4 Nov 2009