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:13:50 UTC

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

Author: stsp
Date: Tue Jul 19 15:13:49 2011
New Revision: 1148388

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

* configure.ac: Only compile GPG-Agent support if shared library support
   is enabled.

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=1148388&r1=1148387&r2=1148388&view=diff
==============================================================================
--- subversion/branches/gpg-agent-password-store/configure.ac (original)
+++ subversion/branches/gpg-agent-password-store/configure.ac Tue Jul 19 15:13:49 2011
@@ -569,7 +569,9 @@ 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
+if test "$svn_enable_shared" != "yes"; then
+  AC_MSG_RESULT([no (shared library support is disabled)])
+elif test "$with_gpg_agent" = "yes"; then
   AC_MSG_RESULT([yes])
   AC_DEFINE([SVN_HAVE_GPG_AGENT], [1], 
             [Is GPG Agent support enabled?])