~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to m4/plugins.m4

  • Committer: Monty Taylor
  • Date: 2008-12-16 01:53:06 UTC
  • mto: (685.1.38 devel) (713.1.1 devel)
  • mto: This revision was merged to the branch mainline in revision 713.
  • Revision ID: monty@inaugust.com-20081216015306-ktydngppg16tyq5k
Put depends on plug.in files into the make process.

Show diffs side-by-side

added added

removed removed

Lines of Context:
301
301
    _DRIZZLE_CHECK_PLUGIN_ARGS([$1])
302
302
    _DRIZZLE_CONFIGURE_PLUGINS(m4_bpatsubst(__mysql_plugin_list__, :, [,]))
303
303
    _DRIZZLE_EMIT_PLUGIN_ACTIONS(m4_bpatsubst(__mysql_plugin_list__, :, [,]))
 
304
    AC_SUBST([drizzle_plugin_files])
304
305
    AC_SUBST([mysql_se_dirs])
305
306
    AC_SUBST([mysql_pg_dirs])
306
307
    AC_SUBST([mysql_se_unittest_dirs])
803
804
AC_DEFUN([_DRIZZLE_INCLUDE_LIST],[
804
805
 ifelse([$1], [], [], [
805
806
  m4_define([__mysql_include__],[$1])
806
 
  dnl We have to use builtin(), because sinclude would generate an error
807
 
  dnl "file $1 does not exists" in aclocal-1.8 - which is a bug, clearly
808
 
  dnl violating m4 specs, and which is fixed in aclocal-1.9
809
 
  builtin([include],$1)
 
807
  sinclude($1)
810
808
  m4_undefine([__mysql_include__])
811
809
  _DRIZZLE_INCLUDE_LIST(m4_shift($@))
 
810
  drizzle_plugin_files="\${top_srcdir}/$1 ${drizzle_plugin_files}"
812
811
 ])
813
812
])
814
813