diff options
author | Mattias Andrée <maandree@member.fsf.org> | 2015-12-11 15:22:26 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@member.fsf.org> | 2015-12-11 15:22:26 +0100 |
commit | eb53e8f87133640e891719ac9974b82869105f06 (patch) | |
tree | 1086af2dfeccd47c313ea8994bc7e468750c9d76 /configure | |
parent | png conversion is no longer done in a separate process. (diff) | |
download | scrotty-eb53e8f87133640e891719ac9974b82869105f06.tar.gz scrotty-eb53e8f87133640e891719ac9974b82869105f06.tar.bz2 scrotty-eb53e8f87133640e891719ac9974b82869105f06.tar.xz |
add shell tab-completion + fix translation
Signed-off-by: Mattias Andrée <maandree@member.fsf.org>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -20,6 +20,9 @@ list_optional_features_help () { cat <<EOF --without-gettext Do not support internationalisation. + --with-bash Include tab-completion for GNU Bash, requires the auto-auto-complete package. + --with-fish Include tab-completion for fish, requires the auto-auto-complete package. + --with-zsh Include tab-completion for Z shell, requires the auto-auto-complete package. EOF } @@ -47,7 +50,10 @@ cat <<EOF Enabled features, see ${0} for more infomation: - Internationalisation $(test_with GETTEXT yes) + Internationalisation $(test_with GETTEXT yes) + GNU Bash tab-completion $(test_with BASH no) + Fish tab-completion $(test_with FISH no) + Z shell tab-completion $(test_with ZSH no) You can now run 'make && make install'. |