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