Build gnome-shell issue: jhbuild does not find libtiff -
i started tinkering gnome-shell kill time , can't jhbuild
work! followed instructions on jhbuild
guide on gnome-shell wiki.
i got part says run $ jhbuild sysdeps gnome-shell
.
txjoe@superpotato:~$ jhbuild sysdeps gnome-shell system installed packages new enough: libvpx (vpx.pc, installed=1.4.0) speex (speex.pc, required=1.2rc1, installed=1.2rc1) ruby libtool libtool-ltdl [...] gmime (gmime-2.6.pc, required=2.6.6, installed=2.6.20) docbook-xml mtdev (mtdev.pc, required=1.1.1, installed=1.1.5) required packages: system installed packages old: (none) no matching system package installed: libsystemd-journal (libsystemd-journal.pc, required=201) libtiff poppler (poppler-glib.pc, required=0.24.0) optional packages: (jhbuild build missing packages) system installed packages old: libical (libical.pc, required=1.0.1, installed=1.0) webkit (webkit2gtk-4.0.pc, required=2.11.3, installed=2.8.5) no matching system package installed:
i installed following packages manually
libsystemd-dev python-poppler libtiff5 python-libtiff
and got same output when ran same command again. checked other answers here, nothing seems work far. tips?
you need install development packages. possible installed runtime libraries, ones not have header files compile program.
the development libraries in debian-based distributions end in -dev. thus, installing libtiff5
not enough, because runtime library.
in specific case, must install libtiff5-dev
, libpoppler-glib-dev
, , libsystemd-dev
.
alternatively, can try:
$ sudo apt-get build-dep gnome-shell
this command install development libraries required build gnome-shell
. @ least, might start with, , fix particular issues/
Comments
Post a Comment