-
if test -n "org.gtk.Settings.FileChooser.gschema.xml org.gtk.Settings.ColorChooser.gschema.xml"; then \
-
test -z "/opt/gimp-2.8/share/glib-2.0/schemas" || /bin/mkdir -p "/opt/gimp-2.8/share/glib-2.0/schemas"; \
-
/usr/bin/install -c -m 644 org.gtk.Settings.FileChooser.gschema.xml org.gtk.Settings.ColorChooser.gschema.xml "/opt/gimp-2.8/share/glib-2.0/schemas"; \
-
test -n "" || glib-compile-schemas /opt/gimp-2.8/share/glib-2.0/schemas; \
-
fi
-
/bin/bash: line 3: glib-compile-schemas: command not found
-
make[4]: *** [install-gsettings-schemas] Error 127
-
make[4]: Leaving directory `/home/rahl/gimp-compile/gtk+-3.4.3/gtk'
-
make[3]: *** [install-am] Error 2
-
make[3]: Leaving directory `/home/rahl/gimp-compile/gtk+-3.4.3/gtk'
-
make[2]: *** [install-recursive] Error 1
-
make[2]: Leaving directory `/home/rahl/gimp-compile/gtk+-3.4.3/gtk'
-
make[1]: *** [install] Error 2
-
make[1]: Leaving directory `/home/rahl/gimp-compile/gtk+-3.4.3/gtk'
-
make: *** [install-recursive] Error 1
It says "glib-compile-schemas: command not found". Is that
the issue that's creating all the rest of the errors?
I compiled glib-2.32.1 from source and placed it in
/opt/gimp-2.8/. It must have found glib there because it
didn't complain about the version at configure or compile
time, but maybe its trying to use the system's glib at install
time for some reason?
My configure options for GTK+ were:
-
rahl ubuntu:~/gimp-compile/gtk+-3.4.3$ export PKG_CONFIG_PATH=/opt/gimp-2.8/lib/pkgconfig
-
rahl ubuntu:~/gimp-compile/gtk+-3.4.3$ export PATH=/opt/gimp-2.8/bin:$PATH
-
rahl ubuntu:~/gimp-compile/gtk+-3.4.3$ export LD_LIBRARY_PATH=/opt/gimp-2.8/lib
-
rahl ubuntu:~/gimp-compile/gtk+-3.4.3$ CPPFLAGS="-I/opt/gimp-2.8/include"
-
rahl ubuntu:~/gimp-compile/gtk+-3.4.3$ LDFLAGS="-L/opt/gimp-2.8/lib"
-
rahl ubuntu:~/gimp-compile/gtk+-3.4.3$ export CPPFLAGS LDFLAGS
./configure --prefix=/opt/gimp-2.8 LDFLAGS="-L/opt/gimp-2.8/lib" CPPFLAGS="-I/opt/gimp-2.8/include"
Any suggestions on what to try?
Thanks,
Nick