diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-11-03 02:38:31 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-11-03 02:38:31 +0100 |
commit | 833d4e7f84f59099ee66eabfa3457ebb7d37eaa8 (patch) | |
tree | 3be84e1049707ce8077291065fe3689497c69b9c /archival/bzip2.c | |
parent | 5e9934028aa030312a1a2e2e32d5ceade8672beb (diff) | |
download | busybox-w32-833d4e7f84f59099ee66eabfa3457ebb7d37eaa8.tar.gz busybox-w32-833d4e7f84f59099ee66eabfa3457ebb7d37eaa8.tar.bz2 busybox-w32-833d4e7f84f59099ee66eabfa3457ebb7d37eaa8.zip |
rename archival/libunarchive -> archival/libarchive; move bz/ into it
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'archival/bzip2.c')
-rw-r--r-- | archival/bzip2.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/archival/bzip2.c b/archival/bzip2.c index fdb8b9306..a6abc931c 100644 --- a/archival/bzip2.c +++ b/archival/bzip2.c | |||
@@ -8,7 +8,7 @@ | |||
8 | */ | 8 | */ |
9 | 9 | ||
10 | #include "libbb.h" | 10 | #include "libbb.h" |
11 | #include "unarchive.h" | 11 | #include "archive.h" |
12 | 12 | ||
13 | #define CONFIG_BZIP2_FEATURE_SPEED 1 | 13 | #define CONFIG_BZIP2_FEATURE_SPEED 1 |
14 | 14 | ||
@@ -33,14 +33,14 @@ | |||
33 | /* Takes ~300 bytes, detects corruption caused by bad RAM etc */ | 33 | /* Takes ~300 bytes, detects corruption caused by bad RAM etc */ |
34 | #define BZ_LIGHT_DEBUG 0 | 34 | #define BZ_LIGHT_DEBUG 0 |
35 | 35 | ||
36 | #include "bz/bzlib.h" | 36 | #include "libarchive/bz/bzlib.h" |
37 | 37 | ||
38 | #include "bz/bzlib_private.h" | 38 | #include "libarchive/bz/bzlib_private.h" |
39 | 39 | ||
40 | #include "bz/blocksort.c" | 40 | #include "libarchive/bz/blocksort.c" |
41 | #include "bz/bzlib.c" | 41 | #include "libarchive/bz/bzlib.c" |
42 | #include "bz/compress.c" | 42 | #include "libarchive/bz/compress.c" |
43 | #include "bz/huffman.c" | 43 | #include "libarchive/bz/huffman.c" |
44 | 44 | ||
45 | /* No point in being shy and having very small buffer here. | 45 | /* No point in being shy and having very small buffer here. |
46 | * bzip2 internal buffers are much bigger anyway, hundreds of kbytes. | 46 | * bzip2 internal buffers are much bigger anyway, hundreds of kbytes. |