]> git.notmuchmail.org Git - notmuch/blobdiff - configure
configure: Add explicit check for glib >= 2.14
[notmuch] / configure
index fba075dd0e8a16371ba7c0e42cb2915b5dbeaeea..c58dd0fd471b98f7ebd716ae583e896f665db552 100755 (executable)
--- a/configure
+++ b/configure
@@ -232,6 +232,20 @@ if [ "$have_gmime" = "0" ]; then
     errors=$((errors + 1))
 fi
 
     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"
 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
        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/"
     if [ $have_talloc -eq 0 ]; then
        echo "  The talloc library (including development files such as headers)"
        echo "  http://talloc.samba.org/"