You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2011/07/19 17:03:31 UTC

svn commit: r1148379 - /subversion/branches/gpg-agent-password-store/configure.ac

Author: stsp
Date: Tue Jul 19 15:03:30 2011
New Revision: 1148379

URL: http://svn.apache.org/viewvc?rev=1148379&view=rev
Log:
On the gpg-agent-password-store branch:

* configure.ac: Rename the --with-gpg-agent option to --without-gpg-agent
   and compile GPG-Agent support by default.

Modified:
    subversion/branches/gpg-agent-password-store/configure.ac

Modified: subversion/branches/gpg-agent-password-store/configure.ac
URL: http://svn.apache.org/viewvc/subversion/branches/gpg-agent-password-store/configure.ac?rev=1148379&r1=1148378&r2=1148379&view=diff
==============================================================================
--- subversion/branches/gpg-agent-password-store/configure.ac (original)
+++ subversion/branches/gpg-agent-password-store/configure.ac Tue Jul 19 15:03:30 2011
@@ -565,8 +565,9 @@ fi
 dnl GPG Agent -------------------
 
 AC_ARG_WITH(gpg_agent,
-AS_HELP_STRING([--with-gpg-agent], 
-               [Enable use of GPG AGENT for auth credentials]))
+AS_HELP_STRING([--without-gpg-agent], 
+               [Disable support for GPG-Agent]),
+               [with_gpg_agent=no], [with_gpg_agent=yes])
 AC_MSG_CHECKING([whether to support GPG-Agent])
 if test "$with_gpg_agent" = "yes"; then
   AC_MSG_RESULT([yes])