~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: lbieber
  • Date: 2010-10-02 19:48:35 UTC
  • mfrom: (1730.6.19 drizzle-make-lcov)
  • Revision ID: lbieber@orisndriz08-20101002194835-q5zd9qc4lvx1xnfo
Merge Hartmut - clean up lex, now require flex to build, also "make lcov" improvements

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
AS_IF([test "x$GPERF" = "x"],
59
59
      AC_MSG_ERROR("Drizzle requires gperf to build."))
60
60
 
 
61
AC_PATH_PROG(LCOV, lcov)
 
62
AC_PATH_PROG(LCOV_GENHTML, genhtml)
 
63
 
61
64
AC_CHECK_PROGS(YACC, ['bison -y'])
62
65
AS_IF([test "x$YACC" = "x" -a "$pandora_building_from_bzr" = "yes"],[
63
 
  AC_MSG_ERROR(["bison is required for Drizzle to build from a bzr branch"])
 
66
   AC_MSG_ERROR(["bison is required for Drizzle to build from a bzr branch"])
 
67
])
 
68
AS_IF([test "x$YACC" = "x"],[
 
69
  YACC='if test -f "$@"; then echo "WARNING: no proper bison binary found, ignoring changes to $<"; exit 0; else echo "ERROR: no proper bison binary found"; exit 1; fi;'
64
70
])
65
71
 
66
72
# libexecinfo provides backtrace_symbols on FreeBSD