summaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorBenedikt Meurer <benny@xfce.org>2006-03-21 23:26:56 +0000
committerBenedikt Meurer <benny@xfce.org>2006-03-21 23:26:56 +0000
commit1d7d408f5524280975a7bab50b26829b6febe7cc (patch)
tree839db3432df3298f80acaf730b514fc3dbd0e470 /acinclude.m4
parentf2827ae8dd17a516c66093dd5d53e67e456d96f3 (diff)
downloadthunar-1d7d408f5524280975a7bab50b26829b6febe7cc.tar.gz
2006-03-21 Benedikt Meurer <benny@xfce.org>
* plugins/thunar-uca/README: Fix typos. * thunarx/thunarx-private.{c,h}: Import new helper function thunarx_param_spec_get_option_name(). * thunarx/Makefile.am, thunarx/thunarx.h, thunarx/thunarx-renamer.{c,h}, thunarx/thunarx-renamer-provider.{c,h}, thunarx/thunarx.symbols: Merge the ThunarxRenamer extension point, which can be used to hook additional bulk renamers into Thunar. Bug #1416. * thunar/thunar-renamer-dialog.{c,h}, thunar/thunar-renamer-model.{c,h}, thunar/thunar-renamer-pair.{c,h},thunar/thunar-renamer-progress.{c,h}, thunar/Makefile.am, thunar/thunar-standard-view.c: Merge the bulk rename framework for Thunar, which uses the ThunarxRenamers to rename multiple files at once. Bug #1416. * acinclude.m4, configure.in.in, plugins/thunar-sbr/, plugins/Makefile.am: Merge stable version of the thunar-sbr exten- sion ("Simple Builtin Renamers"), which provides "Search & Replace", which optionally uses PCRE to support regular expressions, and "Convert upper/lowercase". Additional renamers will be merged once ready. Bug #1416. * po/POTFILES.in: Add new files. * po/Thunar.pot, po/*.po: Merge new strings. * po/de.po: Update german translations. (Old svn revision: 20517)
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m419
1 files changed, 19 insertions, 0 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index db7a1083..4ded3bc1 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -8,6 +8,25 @@ dnl
+dnl # BM_THUNAR_PLUGIN_SBR()
+dnl #
+dnl # Check whether the "Simple Builtin Renamers" plugin
+dnl # should be built and installed.
+dnl #
+AC_DEFUN([BM_THUNAR_PLUGIN_SBR],
+[
+AC_ARG_ENABLE([sbr-plugin], AC_HELP_STRING([--disable-sbr-plugin], [Don't build the thunar-sbr plugin, see plugins/thunar-sbr/README]),
+ [ac_bm_thunar_plugin_sbr=$enable_val], [ac_bm_thunar_plugin_sbr=yes])
+AC_MSG_CHECKING([whether to build the thunar-sbr plugin])
+AM_CONDITIONAL([THUNAR_PLUGIN_SBR], [test x"$ac_bm_thunar_plugin_sbr" = x"yes"])
+AC_MSG_RESULT([$ac_bm_thunar_plugin_sbr])
+
+dnl Check for PCRE (for the "Search & Replace" renamer)
+XDT_CHECK_OPTIONAL_PACKAGE([PCRE], [libpcre], [6.0], [pcre], [Regular expression support])
+])
+
+
+
dnl # BM_THUNAR_PLUGIN_UCA()
dnl #
dnl # Check whether the "User Customizable Actions" plugin