summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de>2005-06-30 13:21:11 +0000
committerAlexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de>2005-06-30 13:21:11 +0000
commitf6c6acf593686015fa639e3583f70cc6d5f5d7b3 (patch)
tree3b2e79bd57b611369429f84bc19a03c9b6ad9b5f
parent092271385632708fb5dd53dca3dcfc3ead06ef6c (diff)
Check for zlib
-rw-r--r--ChangeLog4
-rw-r--r--configure.ac4
2 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index e69de29..82547e4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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)