~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to m4/plugins.m4

  • Committer: Brian Aker
  • Date: 2008-12-17 23:37:33 UTC
  • mfrom: (685.1.41 devel)
  • Revision ID: brian@tangent.org-20081217233733-ra30lk7ju04k7re9
Merge from Monty

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