You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by Daniel Shahaf <da...@elego.de> on 2013/06/18 15:01:01 UTC

Re: How to find out the Serf/Neon version being used by SVN on Windows?

Johan Corveleyn wrote on Tue, Jun 18, 2013 at 10:46:51 +0200:
> On Tue, Jun 18, 2013 at 9:55 AM, Branko Čibej <br...@wandisco.com> wrote:
> > On 18.06.2013 09:22, gadamiak wrote:
> >> How can I find out which version of Serf/Neon library is being used by
> >> SVN on Windows?
> >
> > In Subversion 1.8 you can say "svn --version --verbose" to get a list of
> > dependent libraries and their versions. Unfortunately something like
> > that isn't available for 1.7 or earlier.
> 
> Seems that on Windows one cannot really find out the serf version from
> that output. Or am I missing something? Perhaps it depends on how it's
> build (static vs. dynamic)?
> 

You don't get the compile-time version of APR, either:

    svn-qavm,1:~% svn --version --verbose | grep -i apr 
      - APR 1.3.8 (compiled with 1.3.8)
      - APR-Util 1.3.9 (compiled with 1.3.9)

That said, even on unix I don't get the serf compile-time/run-time
version numbers:

    svn-qavm,1:~% svn --version --verbose | grep -i serf
    * ra_serf : Module for accessing a repository via WebDAV protocol using serf.

So these would appear to be two separate problems.