~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Brian Aker
  • Date: 2010-10-10 02:09:29 UTC
  • mfrom: (1823.5.3 update-pandora)
  • Revision ID: brian@tangent.org-20101010020929-4t99k61avvhsgv1f
Merge in Monty.

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
 
 
64
 
AC_CHECK_PROGS(YACC, ['bison -y'])
65
 
AS_IF([test "x$YACC" = "x" -a "$pandora_building_from_bzr" = "yes"],[
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;'
70
 
])
71
 
 
72
61
# libexecinfo provides backtrace_symbols on FreeBSD
73
62
AC_SEARCH_LIBS(backtrace_symbols, [execinfo])
74
63