~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/memcached_stats/plugin.ac

  • Committer: Padraig O'Sullivan
  • Date: 2009-09-29 19:34:58 UTC
  • mto: This revision was merged to the branch mainline in revision 1167.
  • Revision ID: osullivan.padraig@gmail.com-20090929193458-zs97say0t1t85b4h
Created plugin which simply adds I_S tables for querying memcached stats.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
AC_LIB_HAVE_LINKFLAGS(memcached,,
 
2
  [#include <libmemcached/memcached.h>],
 
3
  [
 
4
    memcached_st memc;
 
5
    memcached_lib_version();
 
6
  ])
 
7
AS_IF([test "x$ac_cv_libmemcached" = "xno"],
 
8
      AC_MSG_WARN([libmemcached not found: not building memcached engine.]))
 
9
DRIZZLED_PLUGIN_DEP_LIBS="${DRIZZLED_PLUGIN_DEP_LIBS} ${LTLIBMEMCACHED}"