1
0
Fork 0

Merging upstream version 1.6.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-20 20:29:07 +01:00
parent bfae39f718
commit 404e96e1c5
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
22 changed files with 90 additions and 95 deletions

View file

@ -1,35 +1,14 @@
2014-06-19 Antonio Diaz Diaz <antonio@gnu.org> 2014-08-27 Antonio Diaz Diaz <antonio@gnu.org>
* Version 1.6-rc2 released. * Version 1.6 released.
* License changed to "GPL version 2 or later with link exception".
2014-05-06 Antonio Diaz Diaz <antonio@gnu.org>
* Version 1.6-rc1 released.
* Compression ratio of option -9 has been slightly increased.
2014-04-25 Antonio Diaz Diaz <antonio@gnu.org>
* Version 1.6-pre4 released.
* Makefile.in: Use 'CFLAGS' in every invocation of 'CC'.
2014-03-30 Antonio Diaz Diaz <antonio@gnu.org>
* Version 1.6-pre3 released.
* Compression ratio of option -9 has been slightly increased. * Compression ratio of option -9 has been slightly increased.
* configure: Added new option '--disable-static'. * configure: Added new option '--disable-static'.
2014-01-30 Antonio Diaz Diaz <antonio@gnu.org>
* Version 1.6-pre2 released.
* main.c (close_and_set_permissions): Behave like 'cp -p'.
* lzlib.texinfo: Renamed to lzlib.texi.
2013-10-07 Antonio Diaz Diaz <antonio@gnu.org>
* Version 1.6-pre1 released.
* configure: Added new option '--disable-ldconfig'. * configure: Added new option '--disable-ldconfig'.
* Makefile.in: Ignore errors from ldconfig. * Makefile.in: Ignore errors from ldconfig.
* Makefile.in: Use 'CFLAGS' in every invocation of 'CC'.
* main.c (close_and_set_permissions): Behave like 'cp -p'.
* lzlib.texinfo: Renamed to lzlib.texi.
* License changed to "GPL version 2 or later with link exception".
2013-09-15 Antonio Diaz Diaz <antonio@gnu.org> 2013-09-15 Antonio Diaz Diaz <antonio@gnu.org>
@ -167,7 +146,7 @@
* Version 0.1 released. * Version 0.1 released.
Copyright (C) 2009, 2010, 2011, 2012, 2013, 2014 Antonio Diaz Diaz. Copyright (C) 2009-2014 Antonio Diaz Diaz.
This file is a collection of facts, and thus it is not copyrightable, This file is a collection of facts, and thus it is not copyrightable,
but just in case, you have unlimited permission to copy, distribute and but just in case, you have unlimited permission to copy, distribute and

View file

@ -1,7 +1,7 @@
Requirements Requirements
------------ ------------
You will need a C compiler. You will need a C compiler.
I use gcc 4.8.1 and 3.3.6, but the code should compile with any I use gcc 4.9.1 and 3.3.6, but the code should compile with any
standards compliant compiler. standards compliant compiler.
Gcc is available at http://gcc.gnu.org. Gcc is available at http://gcc.gnu.org.
@ -32,7 +32,7 @@ the main archive.
5. Type 'make install' to install the library and any data files and 5. Type 'make install' to install the library and any data files and
documentation. (You might have to run ldconfig also). documentation. (You might have to run ldconfig also).
You can install only the library, the info manual or the man page You can install only the library, the info manual or the man page by
typing 'make install-bin', 'make install-info' or 'make install-man' typing 'make install-bin', 'make install-info' or 'make install-man'
respectively. respectively.
@ -58,7 +58,7 @@ After running 'configure', you can run 'make' and 'make install' as
explained above. explained above.
Copyright (C) 2009, 2010, 2011, 2012, 2013, 2014 Antonio Diaz Diaz. Copyright (C) 2009-2014 Antonio Diaz Diaz.
This file is free documentation: you have unlimited permission to copy, This file is free documentation: you have unlimited permission to copy,
distribute and modify it. distribute and modify it.

7
README
View file

@ -24,6 +24,11 @@ into account both data integrity and decoder availability:
* Additionally lzip is copylefted, which guarantees that it will * Additionally lzip is copylefted, which guarantees that it will
remain free forever. remain free forever.
A nice feature of the lzip format is that a corrupt byte is easier to
repair the nearer it is from the beginning of the file. Therefore, with
the help of lziprecover, losing an entire archive just because of a
corrupt byte near the beginning is a thing of the past.
The functions and variables forming the interface of the compression The functions and variables forming the interface of the compression
library are declared in the file 'lzlib.h'. Usage examples of the library are declared in the file 'lzlib.h'. Usage examples of the
library are given in the files 'main.c' and 'bbexample.c' from the library are given in the files 'main.c' and 'bbexample.c' from the
@ -74,7 +79,7 @@ range encoding), Igor Pavlov (for putting all the above together in
LZMA), and Julian Seward (for bzip2's CLI). LZMA), and Julian Seward (for bzip2's CLI).
Copyright (C) 2009, 2010, 2011, 2012, 2013, 2014 Antonio Diaz Diaz. Copyright (C) 2009-2014 Antonio Diaz Diaz.
This file is free documentation: you have unlimited permission to copy, This file is free documentation: you have unlimited permission to copy,
distribute and modify it. distribute and modify it.

View file

@ -1,5 +1,5 @@
/* Buff to buff example - Test program for the lzlib library /* Buff to buff example - Test program for the lzlib library
Copyright (C) 2010, 2011, 2012, 2013, 2014 Antonio Diaz Diaz. Copyright (C) 2010-2014 Antonio Diaz Diaz.
This program is free software: you have unlimited permission This program is free software: you have unlimited permission
to copy, distribute and modify it. to copy, distribute and modify it.

View file

@ -1,6 +1,5 @@
/* Arg_parser - POSIX/GNU command line argument parser. (C version) /* Arg_parser - POSIX/GNU command line argument parser. (C version)
Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014 Copyright (C) 2006-2014 Antonio Diaz Diaz.
Antonio Diaz Diaz.
This library is free software: you can redistribute it and/or modify This library is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by

View file

@ -1,6 +1,5 @@
/* Arg_parser - POSIX/GNU command line argument parser. (C version) /* Arg_parser - POSIX/GNU command line argument parser. (C version)
Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014 Copyright (C) 2006-2014 Antonio Diaz Diaz.
Antonio Diaz Diaz.
This library is free software: you can redistribute it and/or modify This library is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* Lzlib - Compression library for lzip files /* Lzlib - Compression library for the lzip format
Copyright (C) 2009, 2010, 2011, 2012, 2013, 2014 Antonio Diaz Diaz. Copyright (C) 2009-2014 Antonio Diaz Diaz.
This library is free software: you can redistribute it and/or modify This library is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by

10
configure vendored
View file

@ -1,12 +1,12 @@
#! /bin/sh #! /bin/sh
# configure script for Lzlib - Compression library for lzip files # configure script for Lzlib - Compression library for the lzip format
# Copyright (C) 2009, 2010, 2011, 2012, 2013, 2014 Antonio Diaz Diaz. # Copyright (C) 2009-2014 Antonio Diaz Diaz.
# #
# This configure script is free software: you have unlimited permission # This configure script is free software: you have unlimited permission
# to copy, distribute and modify it. # to copy, distribute and modify it.
pkgname=lzlib pkgname=lzlib
pkgversion=1.6-rc2 pkgversion=1.6
soversion=1 soversion=1
progname=minilzip progname=minilzip
progname_static=${progname} progname_static=${progname}
@ -190,8 +190,8 @@ echo "CFLAGS = ${CFLAGS}"
echo "LDFLAGS = ${LDFLAGS}" echo "LDFLAGS = ${LDFLAGS}"
rm -f Makefile rm -f Makefile
cat > Makefile << EOF cat > Makefile << EOF
# Makefile for Lzlib - Compression library for lzip files # Makefile for Lzlib - Compression library for the lzip format
# Copyright (C) 2009, 2010, 2011, 2012, 2013, 2014 Antonio Diaz Diaz. # Copyright (C) 2009-2014 Antonio Diaz Diaz.
# This file was generated automatically by configure. Do not edit. # This file was generated automatically by configure. Do not edit.
# #
# This Makefile is free software: you have unlimited permission # This Makefile is free software: you have unlimited permission

View file

@ -1,5 +1,5 @@
/* Lzlib - Compression library for lzip files /* Lzlib - Compression library for the lzip format
Copyright (C) 2009, 2010, 2011, 2012, 2013, 2014 Antonio Diaz Diaz. Copyright (C) 2009-2014 Antonio Diaz Diaz.
This library is free software: you can redistribute it and/or modify This library is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* Lzlib - Compression library for lzip files /* Lzlib - Compression library for the lzip format
Copyright (C) 2009, 2010, 2011, 2012, 2013, 2014 Antonio Diaz Diaz. Copyright (C) 2009-2014 Antonio Diaz Diaz.
This library is free software: you can redistribute it and/or modify This library is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by

View file

@ -11,7 +11,7 @@ File: lzlib.info, Node: Top, Next: Introduction, Up: (dir)
Lzlib Manual Lzlib Manual
************ ************
This manual is for Lzlib (version 1.6-rc2, 19 June 2014). This manual is for Lzlib (version 1.6, 27 August 2014).
* Menu: * Menu:
@ -29,7 +29,7 @@ This manual is for Lzlib (version 1.6-rc2, 19 June 2014).
* Concept index:: Index of concepts * Concept index:: Index of concepts
Copyright (C) 2009, 2010, 2011, 2012, 2013, 2014 Antonio Diaz Diaz. Copyright (C) 2009-2014 Antonio Diaz Diaz.
This manual is free documentation: you have unlimited permission to This manual is free documentation: you have unlimited permission to
copy, distribute and modify it. copy, distribute and modify it.
@ -64,6 +64,11 @@ into account both data integrity and decoder availability:
* Additionally lzip is copylefted, which guarantees that it will * Additionally lzip is copylefted, which guarantees that it will
remain free forever. remain free forever.
A nice feature of the lzip format is that a corrupt byte is easier to
repair the nearer it is from the beginning of the file. Therefore, with
the help of lziprecover, losing an entire archive just because of a
corrupt byte near the beginning is a thing of the past.
The functions and variables forming the interface of the compression The functions and variables forming the interface of the compression
library are declared in the file 'lzlib.h'. Usage examples of the library are declared in the file 'lzlib.h'. Usage examples of the
library are given in the files 'main.c' and 'bbexample.c' from the library are given in the files 'main.c' and 'bbexample.c' from the
@ -143,7 +148,7 @@ File: lzlib.info, Node: Buffering, Next: Parameter limits, Prev: Library vers
Lzlib internal functions need access to a memory chunk at least as large Lzlib internal functions need access to a memory chunk at least as large
as the dictionary size (sliding window). For efficiency reasons, the as the dictionary size (sliding window). For efficiency reasons, the
input buffer for compression is twice as large as the dictionary size. input buffer for compression is twice as large as the dictionary size.
Finally, for security reasons, lzlib uses two more internal buffers. Finally, for safety reasons, lzlib uses two more internal buffers.
These are the four buffers used by lzlib, and their guaranteed These are the four buffers used by lzlib, and their guaranteed
minimum sizes: minimum sizes:
@ -256,7 +261,11 @@ calling 'LZ_compress_errno' before using it.
-- Function: int LZ_compress_sync_flush ( struct LZ_Encoder * const -- Function: int LZ_compress_sync_flush ( struct LZ_Encoder * const
ENCODER ) ENCODER )
Use this function to make available to 'LZ_compress_read' all the Use this function to make available to 'LZ_compress_read' all the
data already written with the 'LZ_compress_write' function. data already written with the 'LZ_compress_write' function. First
call 'LZ_compress_read' until it returns 0. Then call
'LZ_compress_sync_flush'. Finally, call 'LZ_compress_read' again
to read the remaining data.
Repeated use of 'LZ_compress_sync_flush' may degrade compression Repeated use of 'LZ_compress_sync_flush' may degrade compression
ratio, so use it only when needed. ratio, so use it only when needed.
@ -761,18 +770,18 @@ Concept index
 
Tag Table: Tag Table:
Node: Top220 Node: Top220
Node: Introduction1331 Node: Introduction1304
Node: Library version5244 Node: Library version5487
Node: Buffering5889 Node: Buffering6132
Node: Parameter limits7012 Node: Parameter limits7253
Node: Compression functions7971 Node: Compression functions8212
Node: Decompression functions14184 Node: Decompression functions14594
Node: Error codes20345 Node: Error codes20755
Node: Error messages22284 Node: Error messages22694
Node: Data format22863 Node: Data format23273
Node: Examples25512 Node: Examples25922
Node: Problems29595 Node: Problems30005
Node: Concept index30167 Node: Concept index30577
 
End Tag Table End Tag Table

View file

@ -6,8 +6,8 @@
@finalout @finalout
@c %**end of header @c %**end of header
@set UPDATED 19 June 2014 @set UPDATED 27 August 2014
@set VERSION 1.6-rc2 @set VERSION 1.6
@dircategory Data Compression @dircategory Data Compression
@direntry @direntry
@ -50,8 +50,7 @@ This manual is for Lzlib (version @value{VERSION}, @value{UPDATED}).
@end menu @end menu
@sp 1 @sp 1
Copyright @copyright{} 2009, 2010, 2011, 2012, 2013, 2014 Copyright @copyright{} 2009-2014 Antonio Diaz Diaz.
Antonio Diaz Diaz.
This manual is free documentation: you have unlimited permission This manual is free documentation: you have unlimited permission
to copy, distribute and modify it. to copy, distribute and modify it.
@ -90,6 +89,11 @@ Additionally lzip is copylefted, which guarantees that it will remain
free forever. free forever.
@end itemize @end itemize
A nice feature of the lzip format is that a corrupt byte is easier to
repair the nearer it is from the beginning of the file. Therefore, with
the help of lziprecover, losing an entire archive just because of a
corrupt byte near the beginning is a thing of the past.
The functions and variables forming the interface of the compression The functions and variables forming the interface of the compression
library are declared in the file @samp{lzlib.h}. Usage examples of the library are declared in the file @samp{lzlib.h}. Usage examples of the
library are given in the files @samp{main.c} and @samp{bbexample.c} from library are given in the files @samp{main.c} and @samp{bbexample.c} from
@ -170,7 +174,7 @@ if( LZ_version()[0] != LZ_version_string[0] )
Lzlib internal functions need access to a memory chunk at least as large Lzlib internal functions need access to a memory chunk at least as large
as the dictionary size (sliding window). For efficiency reasons, the as the dictionary size (sliding window). For efficiency reasons, the
input buffer for compression is twice as large as the dictionary size. input buffer for compression is twice as large as the dictionary size.
Finally, for security reasons, lzlib uses two more internal buffers. Finally, for safety reasons, lzlib uses two more internal buffers.
These are the four buffers used by lzlib, and their guaranteed minimum These are the four buffers used by lzlib, and their guaranteed minimum
sizes: sizes:
@ -292,7 +296,11 @@ indicates that the current member has been fully read (with the
@deftypefun int LZ_compress_sync_flush ( struct LZ_Encoder * const @var{encoder} ) @deftypefun int LZ_compress_sync_flush ( struct LZ_Encoder * const @var{encoder} )
Use this function to make available to @samp{LZ_compress_read} all the Use this function to make available to @samp{LZ_compress_read} all the
data already written with the @samp{LZ_compress_write} function. data already written with the @samp{LZ_compress_write} function. First
call @samp{LZ_compress_read} until it returns 0. Then call
@samp{LZ_compress_sync_flush}. Finally, call @samp{LZ_compress_read}
again to read the remaining data.
Repeated use of @samp{LZ_compress_sync_flush} may degrade compression Repeated use of @samp{LZ_compress_sync_flush} may degrade compression
ratio, so use it only when needed. ratio, so use it only when needed.
@end deftypefun @end deftypefun

View file

@ -1,10 +1,10 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.37.1. .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.46.1.
.TH MINILZIP "1" "June 2014" "minilzip 1.6-rc2" "User Commands" .TH MINILZIP "1" "August 2014" "minilzip 1.6" "User Commands"
.SH NAME .SH NAME
minilzip \- reduces the size of files minilzip \- reduces the size of files
.SH SYNOPSIS .SH SYNOPSIS
.B minilzip .B minilzip
[\fIoptions\fR] [\fIfiles\fR] [\fI\,options\/\fR] [\fI\,files\/\fR]
.SH DESCRIPTION .SH DESCRIPTION
Minilzip \- Test program for the lzlib library. Minilzip \- Test program for the lzlib library.
.SH OPTIONS .SH OPTIONS
@ -83,7 +83,7 @@ Report bugs to lzip\-bug@nongnu.org
Lzlib home page: http://www.nongnu.org/lzip/lzlib.html Lzlib home page: http://www.nongnu.org/lzip/lzlib.html
.SH COPYRIGHT .SH COPYRIGHT
Copyright \(co 2014 Antonio Diaz Diaz. Copyright \(co 2014 Antonio Diaz Diaz.
Using lzlib 1.6\-rc2 Using lzlib 1.6
License GPLv2+: GNU GPL version 2 or later <http://gnu.org/licenses/gpl.html> License GPLv2+: GNU GPL version 2 or later <http://gnu.org/licenses/gpl.html>
.br .br
This is free software: you are free to change and redistribute it. This is free software: you are free to change and redistribute it.

View file

@ -1,5 +1,5 @@
/* Lzlib - Compression library for lzip files /* Lzlib - Compression library for the lzip format
Copyright (C) 2009, 2010, 2011, 2012, 2013, 2014 Antonio Diaz Diaz. Copyright (C) 2009-2014 Antonio Diaz Diaz.
This library is free software: you can redistribute it and/or modify This library is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* Lzlib - Compression library for lzip files /* Lzlib - Compression library for the lzip format
Copyright (C) 2009, 2010, 2011, 2012, 2013, 2014 Antonio Diaz Diaz. Copyright (C) 2009-2014 Antonio Diaz Diaz.
This library is free software: you can redistribute it and/or modify This library is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
@ -279,10 +279,6 @@ static inline void Mf_finish( struct Matchfinder * const mf )
static inline bool Mf_finished( const struct Matchfinder * const mf ) static inline bool Mf_finished( const struct Matchfinder * const mf )
{ return mf->at_stream_end && mf->pos >= mf->stream_pos; } { return mf->at_stream_end && mf->pos >= mf->stream_pos; }
static inline void Mf_set_flushing( struct Matchfinder * const mf,
const bool flushing )
{ mf->flushing = flushing; }
static inline bool Mf_flushing_or_end( const struct Matchfinder * const mf ) static inline bool Mf_flushing_or_end( const struct Matchfinder * const mf )
{ return mf->at_stream_end || mf->flushing; } { return mf->at_stream_end || mf->flushing; }

View file

@ -1,5 +1,5 @@
/* Lzcheck - Test program for the lzlib library /* Lzcheck - Test program for the lzlib library
Copyright (C) 2009, 2010, 2011, 2012, 2013, 2014 Antonio Diaz Diaz. Copyright (C) 2009-2014 Antonio Diaz Diaz.
This program is free software: you have unlimited permission This program is free software: you have unlimited permission
to copy, distribute and modify it. to copy, distribute and modify it.

4
lzip.h
View file

@ -1,5 +1,5 @@
/* Lzlib - Compression library for lzip files /* Lzlib - Compression library for the lzip format
Copyright (C) 2009, 2010, 2011, 2012, 2013, 2014 Antonio Diaz Diaz. Copyright (C) 2009-2014 Antonio Diaz Diaz.
This library is free software: you can redistribute it and/or modify This library is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by

10
lzlib.c
View file

@ -1,5 +1,5 @@
/* Lzlib - Compression library for lzip files /* Lzlib - Compression library for the lzip format
Copyright (C) 2009, 2010, 2011, 2012, 2013, 2014 Antonio Diaz Diaz. Copyright (C) 2009-2014 Antonio Diaz Diaz.
This library is free software: you can redistribute it and/or modify This library is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
@ -241,11 +241,11 @@ int LZ_compress_sync_flush( struct LZ_Encoder * const e )
if( e->flush_pending <= 0 && !Mf_flushing_or_end( e->matchfinder ) ) if( e->flush_pending <= 0 && !Mf_flushing_or_end( e->matchfinder ) )
{ {
e->flush_pending = 2; /* 2 consecutive markers guarantee decoding */ e->flush_pending = 2; /* 2 consecutive markers guarantee decoding */
Mf_set_flushing( e->matchfinder, true ); e->matchfinder->flushing = true;
if( !LZe_encode_member( e->lz_encoder ) ) if( !LZe_encode_member( e->lz_encoder ) )
{ e->lz_errno = LZ_library_error; e->fatal = true; return -1; } { e->lz_errno = LZ_library_error; e->fatal = true; return -1; }
while( e->flush_pending > 0 && LZe_sync_flush( e->lz_encoder ) ) while( e->flush_pending > 0 && LZe_sync_flush( e->lz_encoder ) )
{ if( --e->flush_pending <= 0 ) Mf_set_flushing( e->matchfinder, false ); } { if( --e->flush_pending <= 0 ) e->matchfinder->flushing = false; }
} }
return 0; return 0;
} }
@ -258,7 +258,7 @@ int LZ_compress_read( struct LZ_Encoder * const e,
if( !LZe_encode_member( e->lz_encoder ) ) if( !LZe_encode_member( e->lz_encoder ) )
{ e->lz_errno = LZ_library_error; e->fatal = true; return -1; } { e->lz_errno = LZ_library_error; e->fatal = true; return -1; }
while( e->flush_pending > 0 && LZe_sync_flush( e->lz_encoder ) ) while( e->flush_pending > 0 && LZe_sync_flush( e->lz_encoder ) )
{ if( --e->flush_pending <= 0 ) Mf_set_flushing( e->matchfinder, false ); } { if( --e->flush_pending <= 0 ) e->matchfinder->flushing = false; }
return Re_read_data( &e->lz_encoder->renc, buffer, size ); return Re_read_data( &e->lz_encoder->renc, buffer, size );
} }

View file

@ -1,5 +1,5 @@
/* Lzlib - Compression library for lzip files /* Lzlib - Compression library for the lzip format
Copyright (C) 2009, 2010, 2011, 2012, 2013, 2014 Antonio Diaz Diaz. Copyright (C) 2009-2014 Antonio Diaz Diaz.
This library is free software: you can redistribute it and/or modify This library is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
@ -29,7 +29,7 @@
extern "C" { extern "C" {
#endif #endif
static const char * const LZ_version_string = "1.6-rc2"; static const char * const LZ_version_string = "1.6";
enum LZ_Errno { LZ_ok = 0, LZ_bad_argument, LZ_mem_error, enum LZ_Errno { LZ_ok = 0, LZ_bad_argument, LZ_mem_error,
LZ_sequence_error, LZ_header_error, LZ_unexpected_eof, LZ_sequence_error, LZ_header_error, LZ_unexpected_eof,

2
main.c
View file

@ -1,5 +1,5 @@
/* Minilzip - Test program for the lzlib library /* Minilzip - Test program for the lzlib library
Copyright (C) 2009, 2010, 2011, 2012, 2013, 2014 Antonio Diaz Diaz. Copyright (C) 2009-2014 Antonio Diaz Diaz.
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by

View file

@ -1,6 +1,6 @@
#! /bin/sh #! /bin/sh
# check script for Lzlib - A compression library for lzip files # check script for Lzlib - A compression library for lzip files
# Copyright (C) 2009, 2010, 2011, 2012, 2013, 2014 Antonio Diaz Diaz. # Copyright (C) 2009-2014 Antonio Diaz Diaz.
# #
# This script is free software: you have unlimited permission # This script is free software: you have unlimited permission
# to copy, distribute and modify it. # to copy, distribute and modify it.

Binary file not shown.