~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/gearman_udf/plugin.ac

  • Committer: Brian Aker
  • Date: 2009-05-20 23:51:08 UTC
  • mfrom: (1022.2.18 mordred)
  • Revision ID: brian@gaz-20090520235108-nb5he1em112798pb
Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
PANDORA_HAVE_LIBGEARMAN
 
1
AC_LIB_HAVE_LINKFLAGS(gearman,,
 
2
  [#include <libgearman/gearman.h>],
 
3
  [
 
4
     gearman_client_st gearman_client;
 
5
     gearman_version();
 
6
  ])
2
7
AS_IF([test "x$ac_cv_libgearman" = "xno"],
3
8
      AC_MSG_WARN([libgearman not found: not building gearman_udf plugin.]))
4
 
 
5
 
PANDORA_ADD_PLUGIN_DEP_LIB([${LTLIBGEARMAN}])
 
9
DRIZZLED_PLUGIN_DEP_LIBS="${DRIZZLED_PLUGIN_DEP_LIBS} ${LTLIBGEARMAN}"