summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouglas Mencken <dougmencken@gmail.com>2015-12-17 04:55:26 -0500
committerDavid Tardon <dtardon@redhat.com>2015-12-17 16:11:22 +0000
commit6d115dd67632d6c3f7e00cce4797331eabb61272 (patch)
tree2404a2e48bc5d4c3e10442d5b9140924fb78715d
parentdf4a196b8f1e97d8a45d1d517942e01bd13182e7 (diff)
configure.ac: it is ZLIB_LIBS that's needed here
Change-Id: I1bdd2fcb0fc20f47ba4cbad52fccb6f4ada968ea Reviewed-on: https://gerrit.libreoffice.org/20752 Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> Reviewed-by: David Tardon <dtardon@redhat.com> Tested-by: David Tardon <dtardon@redhat.com>
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index ecff3719f11f..79625e2f26b7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -7526,7 +7526,7 @@ if test "$with_system_zlib" = "yes"; then
# Emscripten provides its own zlib, don't check for that
AC_CHECK_HEADER(zlib.h, [],
[AC_MSG_ERROR(zlib.h not found. install zlib)], [])
- AC_CHECK_LIB(z, deflate, [ ZLIB=-lz ],
+ AC_CHECK_LIB(z, deflate, [ ZLIB_LIBS=-lz ],
[AC_MSG_ERROR(zlib not found or functional)], [])
fi
else