On 6/22/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:

checking for gconftool-2... /usr/bin/gconftool-2
Using config source xml:merged:/etc/gnome/2.14.2/gconf/gconf.xml.defaults for 
schema installation
Using $(sysconfdir)/gconf/schemas as install directory for schema files
checking for gconf-sanity-check-2... no
configure: error: gconf-sanity-check-2 executable not found in your path - 
should be installed with GConf

gconf-sanity-check-2 is installed in ${libexecdir} during GConf.  On
my system, this is /usr/lib/GConf/gconf-sanity-check-2.  According to
configure.in, gnome-session should be finding this location from
pkg-config.  Here's the macro:

# gconf-sanity-check
GCONF_SERVERDIR=`$PKG_CONFIG --variable=gconf_serverdir gconf-2.0`
old_path=$PATH
if test x"$GCONF_SERVERDIR" != x; then
  PATH=$GCONF_SERVERDIR:$PATH
fi

AC_PATH_PROG(GCONF_SANITY_CHECK, gconf-sanity-check-2, no)
if test x"$GCONF_SANITY_CHECK" = xno; then
 AC_MSG_ERROR([gconf-sanity-check-2 executable not found in your path
- should be installed with GConf])
fi

So, Gena, what's the output from `pkg-config
--variable=gconf_serverdir gconf-2.0'?  Alternatively, you can just
look at the file /usr/lib/pkgconfig/gconf-2.0.pc.

--
Dan
--
http://linuxfromscratch.org/mailman/listinfo/blfs-support
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Reply via email to