X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=m4%2Fpandora_plugins.m4;h=25ed1e9153d7b523c53864cede292f3644eab017;hb=61b5e9c68b7e931ed4e79a39ab9e5b1031d0030d;hp=53b5ebfd59eabbd2b5050746ee22a9d3ccdd979d;hpb=1b18496b3d1399d90cfba1975f23aee9c747445a;p=m6w6%2Flibmemcached diff --git a/m4/pandora_plugins.m4 b/m4/pandora_plugins.m4 index 53b5ebfd..25ed1e91 100644 --- a/m4/pandora_plugins.m4 +++ b/m4/pandora_plugins.m4 @@ -9,15 +9,34 @@ dnl-------------------------------------------------------------------- AC_DEFUN([PANDORA_PLUGINS],[ - m4_include(config/plugin.ac) - dnl Add code here to read set plugin lists and set drizzled_default_plugin_list - AC_DEFINE_UNQUOTED([PANDORA_PLUGIN_LIST],[$pandora_default_plugin_list], - [List of plugins that should be loaded on startup if no - value is given for --plugin-load]) + dnl We do this to prime the files from a fresh checkout. Normally we want + dnl these commands to be executed by make. Perhaps we should split them into + dnl a few shell script snippets in config and make Make call them... we're + dnl going to get there... + dnl ANYWAY - syscmd gets called during aclocal - so before automake. It will + dnl get called probably during autoconf too, so it's important to protect + dnl with test -f ... if the files exist, we don't have the chicken/egg + dnl problem and therefore don't need to do anything here + m4_syscmd([python config/pandora-plugin > /dev/null]) + m4_syscmd([test -f config/plugin.stamp || touch config/plugin.stamp aclocal.m4]) + + m4_sinclude(config/pandora-plugin.ac) + dnl Add code here to read set plugin lists and set drizzled_default_plugin_list pandora_builtin_list=`echo $pandora_builtin_list | sed 's/, *$//'` - AC_DEFINE_UNQUOTED([PANDORA_BUILTIN_LIST],[$pandora_builtin_list], - [List of plugins to be built in]) + AS_IF([test "x$pandora_builtin_list" = "x"], pandora_builtin_list="NULL") + AC_SUBST([PANDORA_BUILTIN_LIST],[$pandora_builtin_list]) + AC_SUBST([PANDORA_PLUGIN_LIST],[$pandora_default_plugin_list]) + m4_ifval(m4_normalize([$1]),[ + AC_CONFIG_FILES($*) + ],[ + AC_DEFINE_UNQUOTED([PANDORA_BUILTIN_LIST],[$pandora_builtin_list], + [List of plugins to be built in]) + AC_DEFINE_UNQUOTED([PANDORA_PLUGIN_LIST],["$pandora_default_plugin_list"], + [List of plugins that should be loaded on startup if no + value is given for --plugin-load]) + ]) + AC_SUBST(pandora_plugin_test_list) AC_SUBST(pandora_plugin_libs)