123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288 |
- ============================================================================
- User visible changes for LZO -- a real-time data compression library
- ============================================================================
- Changes in 2.09 (04 Feb 2015)
- armv4, armv5 and sparc.
- Changes in 2.08 (29 Jun 2014)
- Changes in 2.07 (25 Jun 2014)
- variants which could result in a possible buffer overrun when
- processing maliciously crafted compressed input data.
- Fortunately this issue only affects 32-bit systems and also can only happen
- if you use uncommonly huge buffer sizes where you have to decompress more
- than 16 MiB (> 2^24 bytes) untrusted compressed bytes within a single
- function call, so the practical implications are limited.
- POTENTIAL SECURITY ISSUE. CVE-2014-4607.
- LZO now requires a flat 32-bit or 64-bit memory model.
- Changes in 2.06 (12 Aug 2011)
- Changes in 2.05 (23 Apr 2011)
- and current compilers like gcc 4.6 and MSVC 2010.
- Changes in 2.04 (31 Oct 2010)
- Changes in 2.03 (30 Apr 2008)
- Changes in 2.02 (17 Oct 2005)
- compilation problems.
- Changes in 2.01 (27 Jun 2005)
- name "liblzo2" so that parallel installation with LZO v1 is possible.
- Blackfin and H8/300 processors.
- Changes in 2.00 (30 May 2005)
- [Library interface changes]
- it now is 64 bits on most 64-bit architectures. 32-bit machines
- are not affected by this change.
- See doc/LZO.FAQ. This is needed for some upcoming speed improvements,
- and also for compatibility with our commercial LZO Professional product.
- your applications should use #include <lzo/lzoXXX.h>.
- in <lzo/lzoconf.h> if your code depends on these.
- [Speed]
- hints and explicit inline control present in modern C/C++ compilers.
- [Portability]
- are used on some supercomputing architectures.
- and Windows 3.x.
- embedded systems as long as you have <limits.h> and <stddef.h> header
- files. See the B/generic/build_freestanding.sh build script.
- [Misc]
- built and installed. See also asm/i386/00README.TXT.
- assembler functions.
- compiler option in order to work around bugs in some versions of
- Apple's native "smart" preprocessor.
- are based on the lcc compiler kit.
- [Upgrade instructions from LZO v1 to LZO v2]
- #define LZO_CFG_COMPAT if necessary.
- Of course, the compressed data is fully compatible as well.
- ----------------------------------------------------------------------------
- Changes in 1.08 (12 Jul 2002)
- sizeof(size_t) < sizeof(ptrdiff_t) and sizeof(lzo_uint) == sizeof(size_t)
- and Libtool versions.
- Changes in 1.07 (18 Oct 2000)
- shared library build problems, this time AIX was the culprit).
- Changes in 1.06 (29 Nov 1999)
- Libtool 1.3.3. This should hopefully fix the shared-library build
- problems that were reported on some machines.
- Changes in 1.05 (14 Apr 1998)
- a HPUX and IRIX build problem.
- Changes in 1.04 (15 Mar 1998)
- Changes in 1.03 (18 Jan 1998)
- Changes in 1.02 (07 Dec 1997)
- Changes in 1.01 (10 Aug 1997)
- LZO1B and LZO1C decompressors
- Changes in 1.00 (13 Jul 1997)
- Windows 3.1 (LIB+DLL), Windows 95/NT (LIB+DLL), DOS (16+32 bit), OS/2
- Changes in 0.90 (27 Jun 1997): never released
- Changes in 0.29 (04 May 1997)
- Changes in 0.28 (22 Feb 1997)
- Changes in 0.27 (19 Jan 1997)
- invalid compressed data in very rare cases
- Changes in 0.26 (18 Jan 1997): never released
- Changes in 0.25 (28 Dec 1996): never released
- Changes in 0.24 (30 Nov 1996): never released
- Changes in 0.23 (23 Nov 1996)
- version that doesn't use 'huge' pointers.
- Changes in 0.22 (19 Sep 1996)
- Changes in 0.21 (08 Sep 1996)
- Changes in 0.20 (11 Aug 1996)
- on CPUs which allow unaligned memory access (e.g. Intel i386)
- Changes in 0.16 (22 Jul 1996)
- Changes in 0.15 (10 Jul 1996)
- Changes in 0.14 (06 Jul 1996): never released
- Changes in 0.13 (20 Jun 1996)
- Changes in 0.12 (18 Jun 1996): never released
- intended for generating pre-compressed data
- for reasons of code sharing
- no fast compressor yet.
- Changes in 0.11 (29 May 1996)
- Changes in 0.10 (20 May 1996): first public release of the LZO library
- (compression levels 1-9 and 99)
- 14 Mar 1996:
- 04 Mar 1996:
|