~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Hartmut Holzgraefe
  • Date: 2010-08-30 19:06:55 UTC
  • mto: (1730.6.3 drizzle-make-lcov)
  • mto: This revision was merged to the branch mainline in revision 1810.
  • Revision ID: hartmut@hartmut-laptop-20100830190655-huox6mk5a2pvbscr
various lcov related changes

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
 
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"])
 
65
dnl AS_IF([test "x$YACC" = "x" -a "$pandora_building_from_bzr" = "yes"],[
 
66
dnl   AC_MSG_ERROR(["bison is required for Drizzle to build from a bzr branch"])
 
67
dnl ])
 
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
 
 
66
71
# libexecinfo provides backtrace_symbols on FreeBSD
67
72
AC_SEARCH_LIBS(backtrace_symbols, [execinfo])
68
73