~brianaker/libmemcached/gear-clean

« back to all changes in this revision

Viewing changes to m4/gearmand.m4

  • Committer: Brian Aker
  • Date: 2012-09-24 01:36:01 UTC
  • mto: This revision was merged to the branch mainline in revision 1072.
  • Revision ID: brian@tangent.org-20120924013601-4f0zeykol10ka6so
Updates from ddm4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
AX_WITH_PROG(GEARMAND_BINARY,gearmand)
 
2
AS_IF([test -f "$ac_cv_path_GEARMAND_BINARY"],
 
3
      [
 
4
        AC_DEFINE([HAVE_GEARMAND_BINARY], [1], [If Gearmand binary is available])
 
5
        AC_DEFINE_UNQUOTED([GEARMAND_BINARY], "$ac_cv_path_GEARMAND_BINARY", [Name of the gearmand binary used in make test])
 
6
       ],
 
7
       [
 
8
        AC_DEFINE([HAVE_GEARMAND_BINARY], [0], [If Gearmand binary is available])
 
9
        AC_DEFINE([GEARMAND_BINARY], [0], [Name of the gearmand binary used in make test])
 
10
      ])
 
11