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>
Wed, 19 Mar 2014 20:08:08 +0000 (21:08 +0100)
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 46835e5..6a44218 100644 (file)
@@ -50,9 +50,9 @@ if (HAVE_QCA2)
     set(SOURCES ${SOURCES} keyevent.cpp)
 endif(HAVE_QCA2)
 
     set(SOURCES ${SOURCES} keyevent.cpp)
 endif(HAVE_QCA2)
 
-if(NOT HAVE_ZLIB)
+if (NOT ZLIB_FOUND)
     set(SOURCES ${SOURCES} ../../3rdparty/miniz/miniz.c)
     set(SOURCES ${SOURCES} ../../3rdparty/miniz/miniz.c)
-endif(NOT HAVE_ZLIB)
+endif()
 
 if(APPLE)
   set(SOURCES ${SOURCES} mac_utils.cpp)
 
 if(APPLE)
   set(SOURCES ${SOURCES} mac_utils.cpp)