From: Jameson Graef Rollins Date: Sat, 28 Nov 2009 23:27:57 +0000 (-0500) Subject: add checking for zlib development libraries to configure script X-Git-Tag: debian-0.1-1~19^2~23 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=80483a92bef8dab659f81c1ae0eda05656a82510 add checking for zlib development libraries to configure script --- diff --git a/configure b/configure index ab28fa30..1010799d 100755 --- a/configure +++ b/configure @@ -63,6 +63,15 @@ else errors=$((errors + 1)) fi +if printf 'int main(){return 0;}' | gcc -x c -lz -o /dev/null - > /dev/null 2>&1; then + echo "Checking for zlib development files... Yes." + have_zlib=1 +else + echo "Checking for zlib development files... No." + have_zlib=0 + errors=$((errors + 1)) +fi + if pkg-config --modversion valgrind > /dev/null 2>&1; then echo "Checking for valgrind development files... Yes." have_valgrind=-DHAVE_VALGRIND @@ -91,13 +100,16 @@ EOF echo " The talloc library (including development files such as headers)" echo " http://talloc.samba.org/" fi + if [ $have_zlib -eq 0 ]; then + echo " The zlib library (including development files such as headers)" + fi cat <