|
From: Andrej N. G. <an...@re...> - 2012-07-06 13:01:48
|
Hello! Sergio has written on Friday, 6 July, at 5:34: >I'm trying to build pcmanfm from git. >First, at git://pcmanfm.git.sourceforge.net/gitroot/pcmanfm/libfm it's missing as dependencies for libfm gtk-doc and vala. >Then when running ./configure I got an error because pkgconfig didn't find 'libexif'. ># locate libexif >/usr/lib/libexif.so.12 >/usr/lib/libexif.so.12.3.2 >. >. >So (here's where I'm not sure if I did right) I ran: > ./configure --sysconfdir=/etc --prefix=/usr --enable-debug EXIF_CFLAGS=/usr/lib/libexif.so.12 EXIF_LIBS=/usr/lib/libexif.so.12 It seems you don't have neither libexif.so nor libexif headers. You can never compile anything that uses /usr/lib/libexif.so.12 without them. Since you have problems with libexif you can try add --disable-exif into configure parameters, i.e. ./configure --prefix=/usr --enable-debug --disable-exif That should work. With best wishes. Andriy. |