diff options
Diffstat (limited to '')
-rw-r--r-- | src/stable/bzip2.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/stable/bzip2.cpp b/src/stable/bzip2.cpp index b48af37..b634a2c 100644 --- a/src/stable/bzip2.cpp +++ b/src/stable/bzip2.cpp | |||
@@ -8,6 +8,7 @@ | |||
8 | #include "bu/bzip2.h" | 8 | #include "bu/bzip2.h" |
9 | #include "bu/trace.h" | 9 | #include "bu/trace.h" |
10 | 10 | ||
11 | #ifdef BU_HAS_BZIP2 | ||
11 | #include <bzlib.h> | 12 | #include <bzlib.h> |
12 | 13 | ||
13 | #define pState ((bz_stream *)prState) | 14 | #define pState ((bz_stream *)prState) |
@@ -234,3 +235,5 @@ Bu::size Bu::BZip2::getCompressedSize() | |||
234 | return sTotalOut; | 235 | return sTotalOut; |
235 | } | 236 | } |
236 | 237 | ||
238 | #endif | ||
239 | |||