Re: [PATCH] Makefile.svn: Make stock SVN executable configurable

2011-01-09 Thread Ramkumar Ramachandra
Hi Stefan, Stefan Sperling writes: > LD_LIBRARY_PATH in the Makefile is only used by targets that are supposed > to run the executables compiled by the Makefile, and need to *dynamically* > load some libraries at run time (e.g. bindings) via dlopen(). > > This doesn't affect the checkout/export s

Re: [PATCH] Makefile.svn: Make stock SVN executable configurable

2011-01-08 Thread Stefan Sperling
On Sat, Jan 08, 2011 at 05:50:52PM +0530, Ramkumar Ramachandra wrote: > I had an issue with my stock SVN picking up the APR libraries I'd just > compiled, because LD_LIBRARY_PATH is set in Makefile.svn in several > places. Stock SVN (Debian) was compiled with threading support, and > the compiled A

Re: [PATCH] Makefile.svn: Make stock SVN executable configurable

2011-01-08 Thread Ramkumar Ramachandra
Hi Stefan, Stefan Sperling writes: > On Sat, Jan 08, 2011 at 02:33:46PM +0530, Ramkumar Ramachandra wrote: > > [[[ > > Makefile.svn: Make stock SVN binary configurable > > > > * tools/dev/unix-build/Makefile.svn: Introduce a new variable > > $STOCK_SVN that defaults to `env LD_LIBRARY_PATH= svn

Re: [PATCH] Makefile.svn: Make stock SVN executable configurable

2011-01-08 Thread Stefan Sperling
On Sat, Jan 08, 2011 at 02:33:46PM +0530, Ramkumar Ramachandra wrote: > [[[ > Makefile.svn: Make stock SVN binary configurable > > * tools/dev/unix-build/Makefile.svn: Introduce a new variable > $STOCK_SVN that defaults to `env LD_LIBRARY_PATH= svn`. Change > references to `svn export` and `sv

Re: [PATCH] Makefile.svn: Make stock SVN executable configurable

2011-01-08 Thread Ramkumar Ramachandra
Hi Daniel, Daniel Shahaf writes: > What problem does this fix? I had an issue with my stock SVN picking up the APR libraries I'd just compiled, because LD_LIBRARY_PATH is set in Makefile.svn in several places. Stock SVN (Debian) was compiled with threading support, and the compiled APR was compil

Re: [PATCH] Makefile.svn: Make stock SVN executable configurable

2011-01-08 Thread Daniel Shahaf
[ moving stsp to bcc ] What problem does this fix? Ramkumar Ramachandra wrote on Sat, Jan 08, 2011 at 14:33:46 +0530: > [[[ > Makefile.svn: Make stock SVN binary configurable > > * tools/dev/unix-build/Makefile.svn: Introduce a new variable > $STOCK_SVN that defaults to `env LD_LIBRARY_PATH= s

[PATCH] Makefile.svn: Make stock SVN executable configurable

2011-01-08 Thread Ramkumar Ramachandra
[[[ Makefile.svn: Make stock SVN binary configurable * tools/dev/unix-build/Makefile.svn: Introduce a new variable $STOCK_SVN that defaults to `env LD_LIBRARY_PATH= svn`. Change references to `svn export` and `svn co` to use $STOCK_SVN. ]]] Index: tools/dev/unix-build/Makefile.svn ===