diff options
author | Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de> | 2005-06-30 13:21:11 +0000 |
---|---|---|
committer | Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de> | 2005-06-30 13:21:11 +0000 |
commit | f6c6acf593686015fa639e3583f70cc6d5f5d7b3 (patch) | |
tree | 3b2e79bd57b611369429f84bc19a03c9b6ad9b5f | |
parent | 092271385632708fb5dd53dca3dcfc3ead06ef6c (diff) |
Check for zlib
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.ac | 4 |
2 files changed, 8 insertions, 0 deletions
@@ -0,0 +1,4 @@ +2005-06-30 Alexander Gottwald <ago at freedesktop dot org> + + * configure.ac: + Check for zlib diff --git a/configure.ac b/configure.ac index cf0cc3c..029d0dd 100644 --- a/configure.ac +++ b/configure.ac @@ -49,6 +49,10 @@ if [[ -z $GZIP ]]; then AC_MSG_ERROR([gzip is needed to compress font encodings]) fi +# zlib + +AC_CHECK_LIB(z, gzclose) + # Check for dependencies PKG_CHECK_MODULES(DEP, x11) |