You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ph...@apache.org on 2010/05/14 13:40:04 UTC

svn commit: r944208 - /subversion/trunk/subversion/libsvn_wc/deprecated.c

Author: philip
Date: Fri May 14 11:40:04 2010
New Revision: 944208

URL: http://svn.apache.org/viewvc?rev=944208&view=rev
Log:
* subversion/libsvn_wc/deprecated.c
  (svn_wc__entry_versioned_internal): Only define this function
   if SVN_DISABLE_FULL_VERSION_MATCH is defined.

Modified:
    subversion/trunk/subversion/libsvn_wc/deprecated.c

Modified: subversion/trunk/subversion/libsvn_wc/deprecated.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_wc/deprecated.c?rev=944208&r1=944207&r2=944208&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/deprecated.c (original)
+++ subversion/trunk/subversion/libsvn_wc/deprecated.c Fri May 14 11:40:04 2010
@@ -3808,9 +3808,12 @@ svn_wc_process_committed_queue(svn_wc_co
   return SVN_NO_ERROR;
 }
 
+#ifdef SVN_DISABLE_FULL_VERSION_MATCH
 /* This double underscore name is used by the 1.6 libsvn_client.
    Keeping this name is sufficient for the 1.6 libsvn_client to link
-   against the 1.7 libraries. */
+   against the 1.7 libraries.  This is only needed for pre-release
+   testing, it's not needed when all the Subversion libraries are
+   upgraded together together. */
 svn_error_t *
 svn_wc__entry_versioned_internal(const svn_wc_entry_t **entry,
                                  const char *path,
@@ -3846,3 +3849,4 @@ svn_wc__entry_versioned_internal(const s
 
   return SVN_NO_ERROR;
 }
+#endif