Changeset 3621 in MondoRescue for branches/3.3/mindi-busybox/archival/bzip2.c


Ignore:
Timestamp:
Dec 20, 2016, 4:07:32 PM (7 years ago)
Author:
Bruno Cornec
Message:

New 3?3 banch for incorporation of latest busybox 1.25. Changing minor version to handle potential incompatibilities.

Location:
branches/3.3
Files:
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branches/3.3/mindi-busybox/archival/bzip2.c

    r3232 r3621  
    77 * about bzip2 library code.
    88 */
     9
     10//config:config BZIP2
     11//config:   bool "bzip2"
     12//config:   default y
     13//config:   help
     14//config:     bzip2 is a compression utility using the Burrows-Wheeler block
     15//config:     sorting text compression algorithm, and Huffman coding. Compression
     16//config:     is generally considerably better than that achieved by more
     17//config:     conventional LZ77/LZ78-based compressors, and approaches the
     18//config:     performance of the PPM family of statistical compressors.
     19//config:
     20//config:     Unless you have a specific application which requires bzip2, you
     21//config:     should probably say N here.
     22
     23//applet:IF_BZIP2(APPLET(bzip2, BB_DIR_USR_BIN, BB_SUID_DROP))
     24//kbuild:lib-$(CONFIG_BZIP2) += bzip2.o
    925
    1026//usage:#define bzip2_trivial_usage
     
    112128
    113129static
    114 IF_DESKTOP(long long) int FAST_FUNC compressStream(transformer_aux_data_t *aux UNUSED_PARAM)
     130IF_DESKTOP(long long) int FAST_FUNC compressStream(transformer_state_t *xstate UNUSED_PARAM)
    115131{
    116132    IF_DESKTOP(long long) int total;
Note: See TracChangeset for help on using the changeset viewer.