diff options
author | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-07-15 00:50:30 +0000 |
---|---|---|
committer | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-07-15 00:50:30 +0000 |
commit | bdd6bc86322d8769390ce81e74a9c2da103e3533 (patch) | |
tree | 3e65114a9ac46e278b06feb7b47fdb80e6e16be5 /configure.ac | |
parent | 30441ee004c0c23d42b76af09e58314aa2218fa3 (diff) |
Add dependency on zlib
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index c94581e..408f7cd 100644 --- a/configure.ac +++ b/configure.ac @@ -30,6 +30,9 @@ AM_CONFIG_HEADER(config.h) AC_PROG_CC AC_PROG_INSTALL +AC_CHECK_LIB(z, gzopen, [], + [AC_MSG_ERROR([zlib is required, but was not found.])]) + # Checks for pkg-config packages PKG_CHECK_MODULES(DEP, fontenc freetype2) AC_SUBST(DEP_CFLAGS) |