~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to m4/pandora_have_libgearman.m4

  • Committer: Padraig O'Sullivan
  • Date: 2009-09-18 00:22:38 UTC
  • mto: This revision was merged to the branch mainline in revision 1139.
  • Revision ID: osullivan.padraig@gmail.com-20090918002238-zq7mui4r2yzoidz1
Extracted KeyUse into its own header file and placed it within the
drizzled::optimizer namespace.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
dnl  Copyright (C) 2009 Sun Microsystems, Inc.
2
 
dnl This file is free software; Sun Microsystems, Inc.
 
1
dnl  Copyright (C) 2009 Sun Microsystems
 
2
dnl This file is free software; Sun Microsystems
3
3
dnl gives unlimited permission to copy and/or distribute it,
4
4
dnl with or without modifications, as long as this notice is preserved.
5
5
 
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
])