There's a comment in libsvn_ra_[neon|serf]/options.c saying "we should
probably remove it before 1.7 goes final". Should we remove or keep it?
#define SVN_IGNORE_V2_ENV_VAR "SVN_I_LIKE_LATENCY_SO_IGNORE_HTTPV2"
#ifdef SVN_DEBUG
/* ### This section is throw in here for development use. It
### allows devs the chance to force the client to speak v1,
### even if the server is capable of speaking v2. We should
### probably remove it before 1.7 goes final. */
char *ignore_v2_env_var = getenv(SVN_IGNORE_V2_ENV_VAR);
if (! (ignore_v2_env_var
&& apr_strnatcasecmp(ignore_v2_env_var, "yes") == 0))
ras->me_resource = apr_pstrdup(ras->pool, val);
#else
ras->me_resource = apr_pstrdup(ras->pool, val);
#endif
- Julian