@edlutz: did you install the libneon27 package?

in which case, you should see the following when running ldd:
# the shell makes aliases work, so ldd won't setup the environment variable
$ ldd /usr/bin/svn | grep neon
        libsvn_ra_neon-1.so.1 => /usr/lib/libsvn_ra_neon-1.so.1 
(0x00002b936ab71000)
        libneon-gnutls.so.27 => /usr/lib/libneon-gnutls.so.27 
(0x00002b936ad94000)
# set it up explicitly
$ LD_PRELOAD=/usr/lib/libneon.so.27 ldd /usr/bin/svn | grep neon
        /usr/lib/libneon.so.27 (0x00002b435b90c000)
        libsvn_ra_neon-1.so.1 => /usr/lib/libsvn_ra_neon-1.so.1 
(0x00002b435d9db000)
        libneon-gnutls.so.27 => /usr/lib/libneon-gnutls.so.27 
(0x00002b435dbff000)

then add:
alias svn='LD_PRELOAD=/usr/lib/libneon.so.27 svn'
to /etc/profile to make it work for all users & shells

-- 
svn over https with client certificates broken (regression in intrepid)
https://bugs.launchpad.net/bugs/294648
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to