Don't actually build miniz if we have zlib
authorManuel Nickschas <sputnick@quassel-irc.org>
Wed, 19 Mar 2014 20:08:08 +0000 (21:08 +0100)
committerManuel Nickschas <sputnick@quassel-irc.org>
Mon, 5 May 2014 18:48:34 +0000 (20:48 +0200)
We don't use miniz if we have zlib; but it was still being built, because
we never actually set HAVE_ZLIB as a build system variable.

Use ZLIB_FOUND instead.

src/common/CMakeLists.txt

index 4e835cd..c968eb4 100644 (file)
@@ -93,9 +93,9 @@ if (HAVE_QCA2)
     set(HEADERS ${HEADERS} keyevent.h)
 endif(HAVE_QCA2)
 
-if(NOT HAVE_ZLIB)
+if (NOT ZLIB_FOUND)
     set(SOURCES ${SOURCES} ../../3rdparty/miniz/miniz.c)
-endif(NOT HAVE_ZLIB)
+endif()
 
 if(APPLE)
   set(SOURCES ${SOURCES} mac_utils.cpp)