function spell_ok_yesno {
  spell_ok $1 && echo -n y && return
  echo -n n
}

config_query SVN_PERL 'Install Subversion bindings for Perl?' $(spell_ok_yesno perl) &&
config_query SVN_PYTHON 'Install Subversion bindings for Python?' $(spell_ok_yesno python) &&
config_query SVN_RUBY 'Install Subversion bindings for Ruby?' $(spell_ok_yesno ruby) &&
config_query SVN_JAVA 'Install Subversion bindings for JAVA?' $(spell_ok_yesno JAVA) &&
config_query_option SVN_PLAINPW 'enable plaintext password storage?' n \
                                --enable-plaintext-password-storage    \
                                --disable-plaintext-password-storage   &&
config_query_option SVN_GIT 'support git svn?' n \
                            '--disable-runtime-module-search' \
                            '--enable-runtime-module-search'

