On Sat, 16 Apr 2011 17:05 +1000, "Gavin Beau Baumanis" <gavin.bauma...@palcare.com.au> wrote: > Hi Konstantin, > > Thanks for all your recent help... > > Turns out your suspicion is correct. > It was compiler without serf. > > Here is what I had a as a directory hierarchy; > Subversion > |-Trunk > |-serf > |-apr > |-apr-util etc > > And because during configure it said that it found apr and apr-util - I > simply assumed all was good with the world. > In fact - it was finding a compiled version of apr / apr-util elsewhere > on the system. >
Is apr/ a sibling of trunk/? If you have an 'apr' directory (or symlink-to-directory) as a child of trunk/ (sibling to INSTALL et al), then configure *should* be prefering that to your system-wide APR. Same for serf. > Now I have an issue getting APR to compile for MAC - but this is a whole > other story.... - Thanks, again! > > Beau. > > > > On 16/04/2011, at 2:49 PM, Konstantin Kolinko wrote: > > > 2011/4/16 Gavin Beau <gavin.bauma...@palcare.com.au>: > >> Hi Everyone, > >> > >> I have built SVN from trunk. > >> using the 1.6.16 deps archove for apr/apr-util/sqlite etc. > >> > >> I did; > >> sudo sh ./autogen.sh > ~/Desktop/autogen_output.txt > >> sudo ./configure > ~/Desktop/configure_output.txt > >> sudo make > ~/Desktop/make_output.txt > >> sudo make install > ~/Desktop/make_install_output.txt > >> > >> (and have included the text files here; > >> as well as a copy/paste of any errors returned the console, a cursory > >> glance at the txt files seems that the error messages did NOT get > >> included.) > >> > >> There were no errors that I could tell and the exit code was 0 at the > >> completion of make install using; > >> echo $? > >> > >> I then did svn upgrade path/to/WC > >> > >> Which seemingly worked without error. > >> > >> However if I attempt to do an svn update - I get the following; > >> > >> Updating '/Users/gavin/SVN/trunk': > >> svn: E170000: Unrecognized URL scheme for > >> 'http://svn.apache.org/repos/asf/subversion/trunk' > >> > >> I am not sure if it is a compile issue or something else, > >> It's all greek to me, > >> > >> so if anyone has any ideas I would be most grateful. > > > > When you do "svn --version", what modules are listed there? > > > > There are several repository access modules in subversion and the > > http/https protocols are implemented by ra_neon and ra_serf . I guess > > that neither of them was built for you. > > > > neon is mentioned in your configure_output: > > > > [[[ > > An appropriate version of neon could not be found, so libsvn_ra_neon > > will not be built. If you want to build libsvn_ra_neon, please > > install neon 0.29.0 on this system. > > ]]] > > > > serf is not mentioned at all. > > > > Best regards, > > Konstantin Kolinko >