~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Monty Taylor
  • Date: 2010-10-08 17:32:00 UTC
  • mto: This revision was merged to the branch mainline in revision 1833.
  • Revision ID: mordred@inaugust.com-20101008173200-iq22jo2nic48noa3
Updated pandora-build files to version 0.157

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