[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

[PATCH] Ability to disable automatic WC upgrades from configure.

From: Nicolás Lichtmaier <nick_at_reloco.com.ar>
Date: 2006-07-11 00:27:37 CEST

May I commit this? Thanks!

[[[
Ability to disable automatic WC upgrades from configure.

* subversion/configure.in: Add --disable-wc-upgrades which defines
  SVN_DISABLE_WC_UPGRADE, so that automatic WC upgrades are disabled. This
  is useful for development.
]]]
Index: configure.in
===================================================================
--- configure.in (revisión: 20519)
+++ configure.in (copia de trabajo)
@@ -447,6 +447,14 @@
   fi
 fi
 
+AC_ARG_ENABLE(wc-upgrades,
+AC_HELP_STRING([--disable-wc-upgrades],
+ [Disable automatic WC upgrades]),
+[
+ if test "$enableval" = "no" ; then
+ AC_DEFINE(SVN_DISABLE_WC_UPGRADE, 1, If defined client will refuse to upgrade working copies)
+ fi
+])
 
 AC_ARG_WITH(editor,
 AC_HELP_STRING([--with-editor=PATH],

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Tue Jul 11 00:28:33 2006

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.