It appears that pkg-config doesn't look in /usr/lib64 by default. WebKitGtk looks for geoclue-2.0 and can't find the .pc file in /usr/lib64. Adding /usr/lib64 to the PKG_CONFIG_PATH allows for the WebKitGtk configure to complete.
The following fixes the problem for me. cat > /etc/profile.d/lib64.sh << EOF # Begin /etc/profile.d/lib64.sh pathappend /usr/lib64/pkgconfig PKG_CONFIG_PATH # End /etc/profile.d/lib64.sh EOF Thanks. Chris -- http://lists.linuxfromscratch.org/listinfo/blfs-support FAQ: http://www.linuxfromscratch.org/blfs/faq.html Unsubscribe: See the above information page
