On Fri, Nov 21, 2014 at 8:40 PM, Yegor Yefremov <yegorsli...@googlemail.com> wrote: > Set enable_password_save to "yes", if the option is not given, > as stated in the description. > > Signed-off-by: Yegor Yefremov <yegorsli...@googlemail.com> > --- > configure.ac | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/configure.ac b/configure.ac > index 608ab6d..9dcd2ab 100644 > --- a/configure.ac > +++ b/configure.ac > @@ -166,7 +166,7 @@ AC_ARG_ENABLE( > [password-save], > [AS_HELP_STRING([--enable-password-save], [allow --askpass and > --auth-user-pass passwords to be read from a file @<:@default=yes@:>@])], > , > - [enable_password_save="no"] > + [enable_password_save="yes"] > ) > > AC_ARG_ENABLE(
This patch is a result of our IRC discussion with Arne. Alternative approach were to always build with password-save functionality without configure option at all. Yegor