X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcommon%2Fcompressor.cpp;h=84b8f7fead4112d3153e46a6171b5204563a0917;hb=d4b81a6d777de45611034b26bd89973d19e60c96;hp=fd3108dc251076097b7dc32a396f44305a761519;hpb=0a43227b8cd44625f4881cc1545d42c8c8a4876c;p=quassel.git diff --git a/src/common/compressor.cpp b/src/common/compressor.cpp index fd3108dc..84b8f7fe 100644 --- a/src/common/compressor.cpp +++ b/src/common/compressor.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2016 by the Quassel Project * + * Copyright (C) 2005-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -23,13 +23,6 @@ #include #include -#ifdef HAVE_ZLIB -# include -#else -# define MINIZ_HEADER_FILE_ONLY -# include "../../3rdparty/miniz/miniz.c" -#endif - const int maxBufferSize = 64 * 1024 * 1024; // protect us from zip bombs const int ioBufferSize = 64 * 1024; // chunk size for inflate/deflate; should not be too large as we preallocate that space!