Temporarily fixed it locally:
Code: Select all
cd /usr/bin
for N in i686-linux-gnu-*;do X=${N/#i686-linux-gnu-}; ln -s $N ${X/%-10};done
drops some errors about existing symlinks...
Compiling sylpheed still fails. Tried several times with some symlinking header files but at least had to give up due to a missing header file glibconfig.h.
EDIT:
After having lunch and going for a walk i tried to compile sylpheed again. After some reading and several more attempts : success. What i missed was passing CFLAG to ./configure
I don't recall i ever had to pass a flag when compiling. There's always a first time...
When trying to retrieve CFLAG there were some missing files for pkg-config:
freetype2
libselinux
libpcre2-8
I found the dev-packages via ppm and installed them:
libfreetype-dev_2.10.1-2ubuntu0.1_i386.deb
libpcre2-dev_10.34-7_i386.deb
libselinux1-dev_3.0-1build2_i386.deb
Finally
Code: Select all
./configure --prefix=/usr CFLAGS="$(pkg-config --cflags --libs glib-2.0 gtk+-2.0)"
make
make install
mkdir sylpheed-3.7.0-focal
make DESTDIR=`pwd`/sylpheed-3.7.0-focal install
(second install for creating a .pet)