comparison Core/Compression/DeflateBaseCompressor.h @ 2508:91ee08d986f9

possibility to disable zlib support in the Orthanc framework
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 28 Mar 2018 11:24:17 +0200
parents 878b59270859
children 4e43e67f8ecf
comparison
equal deleted inserted replaced
2507:99116ed6f38c 2508:91ee08d986f9
32 32
33 33
34 #pragma once 34 #pragma once
35 35
36 #include "IBufferCompressor.h" 36 #include "IBufferCompressor.h"
37
38 #if !defined(ORTHANC_ENABLE_ZLIB)
39 # error The macro ORTHANC_ENABLE_ZLIB must be defined
40 #endif
41
42 #if ORTHANC_ENABLE_ZLIB != 1
43 # error ZLIB support must be enabled to include this file
44 #endif
45
37 46
38 #include <stdint.h> 47 #include <stdint.h>
39 48
40 namespace Orthanc 49 namespace Orthanc
41 { 50 {