~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Lee Bieber
  • Date: 2009-09-02 21:42:21 UTC
  • mto: This revision was merged to the branch mainline in revision 1137.
  • Revision ID: lbieber@lee-biebers-macbook-pro.local-20090902214221-fvq9muypl58oxz8d
add clean-local target to remove lcov .gcno files.  Also remove if HAVE_LCOV section from Makefile.am and lcov checks from configure.ac as they are not used nor needed

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
AS_IF([test "x$GPERF" = "x"],
44
44
      AC_MSG_ERROR("Drizzle requires gperf to build."))
45
45
 
46
 
AC_PATH_PROG(LCOV, lcov)
47
 
AC_PATH_PROG(GENHTML, genhtml)
48
 
 
49
 
AM_CONDITIONAL(HAVE_LCOV,[test "x$LCOV" != "x"])
50
 
 
51
46
AC_CHECK_PROGS(YACC, ['bison -y'])
52
47
AS_IF([test "x$YACC" = "x" -a "$building_from_bzr" = "yes"],[
53
48
  AC_MSG_ERROR(["bison is required for Drizzle to build from a bzr branch"])