#! /bin/sh cat < so that we can hopefully make future versions of notmuch easier for you to use. We'll now investigate your system to find verify that various software components that notmuch relies on are available. EOF errors=0 if pkg-config --version > /dev/null 2>&1; then have_pkg_config=1 else have_pkg_config=0 fi if xapian-config --version > /dev/null 2>&1; then echo "Checking for Xapian development files... Yes." have_xapian=1 else echo "Checking for Xapian development files... No." have_xapian=0 errors=$((errors + 1)) fi if pkg-config --modversion gmime-2.4 > /dev/null 2>&1; then echo "Checking for GMime 2.4 development files... Yes." have_gmime=1 else echo "Checking for GMime 2.4 development files... No." have_gmime=0 errors=$((errors + 1)) fi if pkg-config --modversion talloc > /dev/null 2>&1; then echo "Checking for talloc development files... Yes." have_talloc=1 else echo "Checking for talloc development files... No." have_talloc=0 errors=$((errors + 1)) fi if [ $errors -gt 0 ]; then cat <