|
From: Sergio <ser...@ya...> - 2012-07-06 12:34:39
|
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 and it configured without errors. Then when I ran 'make' it errored at: . . c -o libfm_gtk_la-fm-thumbnail.lo `test -f 'gtk/fm-thumbnail.c' || echo './'`gtk/fm-thumbnail.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I. -I./base -I./actions -I./job -I./gtk -I./demo -DPACKAGE_DATA_DIR=\"/usr/share/libfm\" -DPACKAGE_UI_DIR=\"/usr/share/libfm/ui\" -DPACKAGE_LIB_DIR=\"/usr/lib/libfm\" -DPACKAGE_LOCALE_DIR=\"/usr/share/locale\" -D_LARGEFILE_SOURCE -D_REENTRANT -D_FILE_OFFSET_BITS=64 -DG_ENABLE_DEBUG -O0 -g -Wall -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng15 -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/gio-unix-2.0/ -pthread -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/menu-cache -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include /usr/lib/libexif.so.12 -I. -I./base -I./job -Werror-implicit-function-declaration -g -O2 -MT libfm_gtk_la-fm-thumbnail.lo -MD -MP -MF .deps/libfm_gtk_la-fm-thumbnail.Tpo -c gtk/fm-thumbnail.c -fPIC -DPIC -o .libs/libfm_gtk_la-fm-thumbnail.o gtk/fm-thumbnail.c:38:33: fatal error: libexif/exif-loader.h: No such file or directory compilation terminated. make[4]: *** [libfm_gtk_la-fm-thumbnail.lo] Error 1 make[4]: Leaving directory `/home/first/src/libfm/src' make[3]: *** [all-recursive] Error 1 make[3]: Leaving directory `/home/first/src/libfm/src' make[2]: *** [all] Error 2 make[2]: Leaving directory `/home/first/src/libfm/src' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/home/first/src/libfm' make: *** [all] Error 2 I'm running Fedora 17. |