Skip including lzma.h if not available (#2858)
This fixes compilation with -Duse_lzma=false
This commit is contained in:
parent
f1b2e7bd75
commit
f47ab1bc26
1 changed files with 3 additions and 0 deletions
|
|
@ -3,7 +3,10 @@
|
|||
|
||||
#include <rz_util.h>
|
||||
#include <zlib.h>
|
||||
|
||||
#if HAVE_LZMA
|
||||
#include <lzma.h>
|
||||
#endif
|
||||
|
||||
// set a maximum output buffer of 50MB
|
||||
#define MAXOUT 50000000
|
||||
|
|
|
|||
Loading…
Reference in a new issue