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 /mk/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 'mk/configure')
-rw-r--r-- | mk/configure | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/mk/configure b/mk/configure index 61f73e6..6351380 100644 --- a/mk/configure +++ b/mk/configure @@ -220,12 +220,14 @@ for option; do feature="WITH_${feature}" echo "${feature}" = yes >&20 export "${feature}"=yes + option="${option}=x" ;; (--without-*) feature="WITHOUT_${feature}" echo "${feature}" = yes >&20 export "${feature}"=yes + option="${option}=x" ;; (--enable-*=*) @@ -245,12 +247,14 @@ for option; do feature="DISABLE_${feature}" echo "${feature}" = yes >&20 export "${feature}"=yes + option="${option}=x" ;; (--disable-*) feature="DISABLE_${feature}" echo "${feature}" = yes >&20 export "${feature}"=yes + option="${option}=x" ;; # unrecognised @@ -711,7 +715,10 @@ test_enable () # # Enabled features, see ${0} for more infomation: # -# Internationalisation $(test_with GETTEXT yes) +# Internationalisation $(test_with GETTEXT yes) +# GNU Bash tab-completion $(test_with BASH yes) +# Fish tab-completion $(test_with FISH yes) +# Z shell tab-completion $(test_with ZSH yes) # # You can now run 'make && make install'. # |