Re: Static compile of subversion 1.8.3

2013-10-08 Thread Nico Kadel-Garcia
Maybe you should rethink your "I have to compile a subversion 1.8 in static" When you build things like this in your home directory, it can be *very* difficult to to manage all hte other library dependencies statically..

RE: Branch changes

2013-10-08 Thread John Maher
Thanks Andrew. That is an even better way to get the version than the way I found. -Original Message- From: Andrew Reedick [mailto:andrew.reed...@cbeyond.net] Sent: Tuesday, October 08, 2013 11:00 AM To: John Maher Cc: Subversion help Subject: RE: Branch changes > -Original Message

Re: logging externals commit

2013-10-08 Thread Johan Corveleyn
On Tue, Oct 8, 2013 at 5:38 PM, Ryan Schmidt wrote: > Remember to reply to the list too, not just to individual users. > > > On Oct 8, 2013, at 00:34, Zvika Castel wrote: > >> Hi, >> >> Thanks for your response. >> If it would be easy to implement, than we were out of job :) >> >> I'm part of the

svn 1.8 client segmentation fault when checking out Subversion trunk repository

2013-10-08 Thread Martin Zibricky
Hi everyone, I'm trying to compile svn 1.8.3 with lsbcc (Linux Standard Base). Everything compiles fine but when trying to checkout Subversion trunk ( http://svn.apache.org/repos/asf/subversion/trunk/ ) the svn client crashes with the segmentation fault in the middle of checkout and I get broken

Re: logging externals commit

2013-10-08 Thread Ryan Schmidt
Remember to reply to the list too, not just to individual users. On Oct 8, 2013, at 00:34, Zvika Castel wrote: > Hi, > > Thanks for your response. > If it would be easy to implement, than we were out of job :) > > I'm part of the half that thinks that a sharing is important and essential in

Re: svn backup

2013-10-08 Thread rvaede
Thanks for the info. I have used hotcopy command and that worked fine for a backup. On Monday, October 7, 2013 3:37:07 PM UTC-4, rvaede wrote: > > > >I am confused on how to backup my repositary. >There is an /export/svn directory that holds all the projects > directories, hook, format l

RE: Branch changes

2013-10-08 Thread Andrew Reedick
> -Original Message- > From: John Maher [mailto:jo...@rotair.com] > Sent: Tuesday, October 08, 2013 10:14 AM > To: Andy Levy > Cc: Subversion help > Subject: RE: Branch changes > > Thanks for your reply Andy, that was helpful. For anyone else interested, to > get the revision where the b

RE: Branch changes

2013-10-08 Thread John Maher
Thanks for your reply Andy, that was helpful. For anyone else interested, to get the revision where the branch was created you can do this: "svn log --verbose --stop-on-copy URL_TO_BRANCH" The last line indicates what revision the branch was created. -Original Message- From: Andy Levy [m

Static compile of subversion 1.8.3

2013-10-08 Thread krusaf
Hello, For some reasons, I have to compile a subversion 1.8 in static. I'm trying but I always have a problem with the linker. Here the (last ?) instruction with the error : cd subversion/svn && /bin/sh /home/user/pour-svn/subversion-1.8.3/libtool --tag=CC --silent --mode=link gcc -all-static -

Re: Branch changes

2013-10-08 Thread Andy Levy
On Tue, Oct 8, 2013 at 8:26 AM, John Maher wrote: > Is there a way to find out all the files that changed since a branch was > created? svn diff --summarize URL_TO_BRANCH -r BRANCHCREATED:HEAD Where BRANCHCREATED is the revision where you created the branch.

Branch changes

2013-10-08 Thread John Maher
Is there a way to find out all the files that changed since a branch was created? Thanks John