On Thu, Jul 08, 2010 at 08:06:18AM +0200, Onno van der Straaten wrote: > svn co https://myrepos/svn/project1 /home/ostraaten/project1 -N > causes > Segmentation fault > > My repos is Subversion version 1.6.9 (r901367) > I created my client from the trunk this morning revision 961534.
Try neon instead of serf: echo 'http-library = neon' >> ~/.subversion/servers That usually fixes this for me (ra_serf and serf devs know about the crash I am seeing and have the backtrace). To find out if you have the same problem with serf, run Subversion's configure script with the --enable-maintainer-mode option and recompile all of svn to get debugging symbols: make clean ./configure ---enable-maintainer-mode ... make && make install Then run svn up within gdb: gdb svn run co https://myrepos/svn/project1 /home/ostraaten/project1 -N # it will crash bt Post the output of gdb's bt command here. > I was warned for segmentation fault with regards to the way I set > LD_LIBRARY_PATH. I used ldconfig when I compiled my first client, I > didn't know at the time that I shouldn't have done that. Is the > problem related to use of ldconfig? Can I undo what I have done with > ldconfig? How? > > Onno