Jonathan Nieder wrote on Wed, 7 Jul 2010 at 11:25 -0500: > Ramkumar Ramachandra wrote: > > +svn_error_t *populate_context() > > +{ > > + const char *http_library; > > + > > + SVN_ERR(svn_config_get_config(&(ctx->config), NULL, pool)); > > + > > + http_library = getenv("SVN_HTTP_LIBRARY"); > > + if (http_library) > > + svn_config_set(apr_hash_get(ctx->config, "servers", APR_HASH_KEY_STRING), > > + "global", "http-library", http_library); > > I tried googling for this SVN_HTTP_LIBRARY setting, but no > useful hints. I take it that this overrides the [global] http-library > setting from ~/.subversion/servers? Do other commands honor this > environment variable or just svndumpr? Other commands use --config-option. SVN_HTTP_LIBRARY is not recognized by any released Subversion, nor by trunk@HEAD of Subversion. It's a debugging relic, anyway. Can be removed. The functionality is provided by editing $CONFIG_DIR/servers. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html