diff options
Diffstat (limited to '')
-rw-r--r-- | src/stable/lzma.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/stable/lzma.cpp b/src/stable/lzma.cpp index d05c79f..c8e8960 100644 --- a/src/stable/lzma.cpp +++ b/src/stable/lzma.cpp | |||
@@ -8,6 +8,8 @@ | |||
8 | #include "bu/lzma.h" | 8 | #include "bu/lzma.h" |
9 | #include "bu/trace.h" | 9 | #include "bu/trace.h" |
10 | 10 | ||
11 | #ifdef BU_HAS_LZMA | ||
12 | |||
11 | #include <lzma.h> | 13 | #include <lzma.h> |
12 | 14 | ||
13 | #define pState ((lzma_stream *)prState) | 15 | #define pState ((lzma_stream *)prState) |
@@ -246,3 +248,5 @@ Bu::size Bu::Lzma::getCompressedSize() | |||
246 | return sTotalOut; | 248 | return sTotalOut; |
247 | } | 249 | } |
248 | 250 | ||
251 | #endif | ||
252 | |||