Comment 9 for bug 1020591

Revision history for this message
topaz (top4z) wrote :

Hi Christopher,

Ok, it works for me, but I forgot to mention that the most important step is definitely the libneon without gnutls.
As the bug seems to be linked with gnutls, not evicting it means not circumventing the bug.

So I basically downloaded libneon sources and compiled them by hand. The easiest way is to use apt-get source:

here is the list of operation to recompile libneon27 without gnutls:

apt-get install build-essentials checkinstall
apt-get build-dep neon27
apt-get source neon27
cd /var/lib/neon27-0.29.6
./configure --with-ssl=openssl --prefix=/usr/local --enable-shared
fakeroot checkinstall --stripso=yes
dpkg -i libneon27-0.29.6....deb

# now replace the gnutls lib with the one compiled (to be redone upon upgrades)
rm /usr/lib/libneon-gnutls.so.27
ln -s /usr/local/lib/libneon.so.27 /usr/lib/libneon-gnutls.so.27

Enjoy :)
Topaz