~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/plugin.ac

  • Committer: Monty Taylor
  • Date: 2009-04-20 14:42:34 UTC
  • mto: (997.2.5 mordred)
  • mto: This revision was merged to the branch mainline in revision 1003.
  • Revision ID: mordred@inaugust.com-20090420144234-4k1x60fiag2l1y0n
Ported InnoDB to register_plugins.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
# Place, Suite 330, Boston, MA 02111-1307 USA
15
15
#
16
16
 
17
 
DRIZZLE_STORAGE_ENGINE(innobase,  innodb, [InnoDB Storage Engine],
18
 
        [Transactional Tables using InnoDB], [max,max-no-ndb])
19
 
DRIZZLE_PLUGIN_STATIC(innobase,   [libinnobase.la])
20
 
DRIZZLE_PLUGIN_DYNAMIC(innobase,   [ha_innodb.la])
21
 
DRIZZLE_PLUGIN_MANDATORY(innobase)  dnl Default
22
 
DRIZZLE_PLUGIN_ACTIONS(innobase,  [
23
 
  AC_PROG_LEX
24
 
  AC_FUNC_MMAP
 
17
AC_DEFUN([AC_INNODB_ACTIONS],[
 
18
  AC_REQUIRE([AC_PROG_LEX])
 
19
  AC_REQUIRE([AC_FUNC_MMAP])
 
20
 
25
21
  AC_CHECK_LIB(rt, aio_read, [innodb_system_libs="-lrt"])
26
22
  AC_SUBST(innodb_system_libs)
27
23
  AC_CHECK_HEADERS(aio.h sched.h)
82
78
    )
83
79
  ])
84
80
 
 
81
AC_INNODB_ACTIONS
85
82
# vim: set ft=config: