Author: stsp
Date: Tue Sep 18 09:28:09 2012
New Revision: 1387070

URL: http://svn.apache.org/viewvc?rev=1387070&view=rev
Log:
* configure.ac: Don't require shared library support for the GPG-Agent password
   cache. Support for GPG-Agent is implemented directly in libsvn_subr, not in
   a shared library loaded at runtime.

Modified:
    subversion/trunk/configure.ac

Modified: subversion/trunk/configure.ac
URL: 
http://svn.apache.org/viewvc/subversion/trunk/configure.ac?rev=1387070&r1=1387069&r2=1387070&view=diff
==============================================================================
--- subversion/trunk/configure.ac (original)
+++ subversion/trunk/configure.ac Tue Sep 18 09:28:09 2012
@@ -545,9 +545,7 @@ AS_HELP_STRING([--without-gpg-agent], 
                [Disable support for GPG-Agent]),
                [], [with_gpg_agent=yes])
 AC_MSG_CHECKING([whether to support GPG-Agent])
-if test "$svn_enable_shared" != "yes"; then
-  AC_MSG_RESULT([no (shared library support is disabled)])
-elif test "$with_gpg_agent" = "yes"; then
+if test "$with_gpg_agent" = "yes"; then
   AC_MSG_RESULT([yes])
   AC_DEFINE([SVN_HAVE_GPG_AGENT], [1], 
             [Is GPG Agent support enabled?])


Reply via email to