summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)