~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/plugin.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:
15
15
#
16
16
 
17
17
AC_DEFUN([AC_INNODB_ACTIONS],[
18
 
  AC_CHECK_PROGS(LEX, ['flex'])
19
 
  AS_IF([test "x$LEX" = "x" -a "$pandora_building_from_bzr" = "yes"],[
20
 
     AC_MSG_ERROR(["flex is required for Drizzle to build from a bzr branch"])
21
 
  ])
22
 
  AS_IF([test "x$LEX" = "x"],[
23
 
    LEX='if test -f "$@"; then echo "WARNING: no proper flex binary found, ignoring changes to $<"; exit 0; else echo "ERROR: no proper flex binary found"; exit 1; fi;'
24
 
  ])
 
18
  PANDORA_REQUIRE_FLEX
25
19
 
26
20
  AC_REQUIRE([AC_FUNC_MMAP])
27
21