mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-12-22 09:24:54 +01:00
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:
parent
8df28ec509
commit
b88e6abccd
1 changed files with 18 additions and 0 deletions
18
configure
vendored
18
configure
vendored
|
@ -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/"
|
||||
|
|
Loading…
Reference in a new issue