dnl= ########################################################################## dnl= # abiword-plugins: autogen.sh header dnl= # this file is executed as a shell script dnl= dnl= # 1. abi_plugin_macro is the name of the main macro defined here: dnl= abi_plugin_macro="ABIPGN_DEVELOP" dnl= abi_plugin_macro_init="ABIPGN_DEVELOP_INIT" dnl= abi_plugin_macro_end="ABIPGN_DEVELOP_END" dnl= dnl= # 2. abi_plugin_files is the list of files that configure must generate: dnl= abi_plugin_files="GNUmakefile xp/GNUmakefile gnu-regex/GNUmakefile" dnl= dnl= # 3. abi_plugin_desc is a short description of the plugin dnl= abi_plugin_desc="A plugin that contains various tools for source code editing, such as syntax highlighting" dnl= dnl= # 4. abi_plugin_enable - whether plugin should be enabled by default dnl= abi_plugin_enable="yes" dnl= dnl= return dnl= ########################################################################## AC_DEFUN([ABIPGN_DEVELOP_INIT],[ build_gnu_regex="no" ]) AC_DEFUN([ABIPGN_DEVELOP],[ _abi_cppflags_save="$CPPFLAGS" _abi_ldflags_save="$LDFLAGS" # Nothing to do at the moment CPPFLAGS="$_abi_cppflags_save" LDFLAGS="$_abi_ldflags_save" ]) AC_DEFUN([ABIPGN_DEVELOP_END],[ AM_CONDITIONAL(BUILD_GNU_REGEX, test "x$build_gnu_regex" = "xyes") ])