Index: distinfo =================================================================== RCS file: /cvsroot/pkgsrc/databases/mysql51-server/distinfo,v retrieving revision 1.14 diff -p -r1.14 distinfo *** distinfo 16 Dec 2010 03:42:50 -0000 1.14 --- distinfo 4 Jan 2011 00:31:28 -0000 *************** SHA1 (patch-ay) = f70896ae71e0ca7840e996 *** 29,31 **** --- 29,32 ---- SHA1 (patch-az) = cfe77df58645dfad65ce4ff8eae868f059231233 SHA1 (patch-ba) = f595d2063ff18c0afb7e45c41d84a22ca9c99b44 SHA1 (patch-bb) = 11f23c63a14d301a7dfa67d6c399a748ec5631b2 + SHA1 (patch-bc) = b5f2f454a6127b2e6422ba87f6e8291c311775fe Index: patches/patch-bc =================================================================== RCS file: patches/patch-bc diff -N patches/patch-bc *** /dev/null 1 Jan 1970 00:00:00 -0000 --- patches/patch-bc 4 Jan 2011 00:31:28 -0000 *************** *** 0 **** --- 1,33 ---- + $NetBSD$ + + AC_CHECK_FUNCS() executes the true clause if any function matches. + + + --- storage/innodb_plugin/plug.in.orig 2010-11-29 02:37:58.000000000 -0800 + +++ storage/innodb_plugin/plug.in 2011-01-03 07:06:51.000000000 -0800 + @@ -137,16 +137,15 @@ + + AC_MSG_CHECKING(whether Solaris libc atomic functions are available) + # either define HAVE_IB_SOLARIS_ATOMICS or not + - AC_CHECK_FUNCS(atomic_cas_ulong \ + - atomic_cas_32 \ + - atomic_cas_64 \ + - atomic_add_long_nv \ + - atomic_swap_uchar, + - + - AC_DEFINE([HAVE_IB_SOLARIS_ATOMICS], [1], + - [Define to 1 if Solaris libc atomic functions \ + - are available]) + - ) + + AC_CHECK_FUNC(atomic_cas_ulong, + + AC_CHECK_FUNC(atomic_cas_32, + + AC_CHECK_FUNC(atomic_cas_64, + + AC_CHECK_FUNC(atomic_add_long_nv, + + AC_CHECK_FUNC(atomic_swap_uchar, + + AC_DEFINE([HAVE_IB_SOLARIS_ATOMICS], [1], + + [Define to 1 if Solaris libc atomic functions \ + + are available]) + + ))))) + + AC_MSG_CHECKING(whether pthread_t can be used by Solaris libc atomic functions) + # either define HAVE_IB_ATOMIC_PTHREAD_T_SOLARIS or not