~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to m4/pandora_have_libgearman.m4

  • Committer: Monty Taylor
  • Date: 2009-09-22 21:56:03 UTC
  • mto: This revision was merged to the branch mainline in revision 1144.
  • Revision ID: mordred@inaugust.com-20090922215603-yf2itjcwbndu2m4k
pandora-build v0.62 - cleaned up some copyright header mistakes. Merged in trond's innodb detection.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
      #include <libgearman/gearman.h>
22
22
    ],[
23
23
      gearman_client_st gearman_client;
24
 
      gearman_client_context(&gearman_client);
 
24
      gearman_version();
25
25
    ])
26
26
  ],[
27
27
    ac_cv_libgearman="no"
37
37
AC_DEFUN([PANDORA_REQUIRE_LIBGEARMAN],[
38
38
  AC_REQUIRE([PANDORA_HAVE_LIBGEARMAN])
39
39
  AS_IF([test "x${ac_cv_libgearman}" = "xno"],
40
 
      AC_MSG_ERROR([At least version 0.10 of libgearman is required for ${PACKAGE}]))
 
40
      AC_MSG_ERROR([libgearman is required for ${PACKAGE}]))
41
41
])