configure: Add explicit check for glib >= 2.14

For cases where GMime is present, but happy with glib 2.12, for example.
This commit is contained in:
Carl Worth 2010-11-16 09:00:34 -08:00
parent 8df28ec509
commit b88e6abccd

18
configure vendored
View file

@ -232,6 +232,20 @@ if [ "$have_gmime" = "0" ]; then
errors=$((errors + 1))
fi
# GMime already depends on Glib >= 2.12, but we use at least one Glib
# function that only exists as of 2.14, (g_hash_table_get_keys)
printf "Checking for Glib development files (>= 2.14)... "
have_glib=0
if pkg-config --exists 'glib-2.0 >= 2.14'; then
printf "Yes.\n"
have_glib=1
glib_cflags=$(pkg-config --cflags glib-2.0)
glib_ldflags=$(pkg-config --libs glib-2.0)
else
printf "No.\n"
errors=$((errors + 1))
fi
printf "Checking for talloc development files... "
if pkg-config --exists talloc; then
printf "Yes.\n"
@ -319,6 +333,10 @@ EOF
echo " GMime 2.4 library (including development files such as headers)"
echo " http://spruce.sourceforge.net/gmime/"
fi
if [ $have_glib -eq 0 ]; then
echo " Glib library >= 2.14 (including development files such as headers)"
echo " http://ftp.gnome.org/pub/gnome/sources/glib/"
fi
if [ $have_talloc -eq 0 ]; then
echo " The talloc library (including development files such as headers)"
echo " http://talloc.samba.org/"